2024-03-06 13:14:33 +00:00
|
|
|
when (NimMajor, NimMinor) < (1, 4):
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
else:
|
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
2024-03-15 23:08:47 +00:00
|
|
|
stew/results, chronicles, ./node_spec as Waku, ./stealth_commitment_protocol as SCP
|
2024-03-06 13:14:33 +00:00
|
|
|
|
|
|
|
logScope:
|
|
|
|
topics = "waku stealthcommitments"
|
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
## Logging setup
|
|
|
|
|
|
|
|
# Adhere to NO_COLOR initiative: https://no-color.org/
|
|
|
|
let color =
|
|
|
|
try:
|
|
|
|
not parseBool(os.getEnv("NO_COLOR", "false"))
|
|
|
|
except CatchableError:
|
|
|
|
true
|
|
|
|
|
|
|
|
logging.setupLogLevel(logging.LogLevel.INFO)
|
|
|
|
logging.setupLogFormat(logging.LogFormat.TEXT, color)
|
2024-03-15 23:08:47 +00:00
|
|
|
|
2024-03-06 13:14:33 +00:00
|
|
|
info "Starting Waku Stealth Commitment Protocol"
|
|
|
|
info "Starting Waku Node"
|
|
|
|
let node = Waku.setup()
|
|
|
|
info "Waku Node started, listening for StealthCommitmentMessages"
|
|
|
|
let scp = SCP.new(node).valueOr:
|
|
|
|
error "Could not start Stealth Commitment Protocol", error = $error
|
|
|
|
quit(1)
|
2024-03-15 23:08:47 +00:00
|
|
|
|
2024-03-06 13:14:33 +00:00
|
|
|
try:
|
|
|
|
info "Sending stealth commitment request"
|
|
|
|
(waitFor scp.sendRequest()).isOkOr:
|
|
|
|
error "Could not send stealth commitment request", error = $error
|
|
|
|
except:
|
|
|
|
error "Could not send stealth commitment request", error = getCurrentExceptionMsg()
|
|
|
|
|
|
|
|
runForever()
|