mirror of https://github.com/waku-org/nwaku.git
14 lines
310 B
Nim
14 lines
310 B
Nim
import json_serialization, std/options
|
|
import ../waku_core
|
|
|
|
# Implementing the RFC:
|
|
# https://github.com/vacp2p/rfc/tree/master/content/docs/rfcs/73
|
|
|
|
type
|
|
EligibilityProof* = object
|
|
proofOfPayment*: Option[seq[byte]]
|
|
|
|
EligibilityStatus* = object
|
|
statusCode*: uint32
|
|
statusDesc*: Option[string]
|