2025-10-15 15:35:49 -07:00
|
|
|
import ../crypto
|
|
|
|
|
|
|
|
|
|
# How to surface different verifability of properties across conversation types
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type ReceivedMessage* = ref object of RootObj
|
|
|
|
|
sender*: PublicKey
|
|
|
|
|
timestamp*: int64
|
2025-12-15 13:55:19 -08:00
|
|
|
content*: seq[byte]
|
2025-10-15 15:35:49 -07:00
|
|
|
|
|
|
|
|
|