mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-01-12 23:54:29 +00:00
9 lines
236 B
Nim
9 lines
236 B
Nim
import std/hashes
|
|
import pkg/nimcrypto
|
|
|
|
type PurchaseId* = distinct array[32, byte]
|
|
|
|
proc hash*(x: PurchaseId): Hash {.borrow.}
|
|
proc `==`*(x, y: PurchaseId): bool {.borrow.}
|
|
proc toHex*(x: PurchaseId): string = array[32, byte](x).toHex
|