mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-05 23:53:09 +00:00
13 lines
236 B
Nim
13 lines
236 B
Nim
|
|
import crypto
|
||
|
|
|
||
|
|
type
|
||
|
|
VerifabilityProp* = enum
|
||
|
|
Verified, Unverified
|
||
|
|
|
||
|
|
type Property*[T] = object
|
||
|
|
value*: T
|
||
|
|
verifiability*: VerifabilityProp
|
||
|
|
|
||
|
|
type MessageInfo* = object
|
||
|
|
sender*: Property[PublicKey]
|
||
|
|
timestamp*: Property[uint64]
|