Skip to content

Commit 45f9f19

Browse files
committed
specify mix key to be used and mount mix
1 parent 3a8e0a0 commit 45f9f19

File tree

3 files changed

+29
-10
lines changed

3 files changed

+29
-10
lines changed

waku/factory/external_config.nim

+10
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,16 @@ with the drawback of consuming some more bandwidth.""",
663663
name: "rendezvous"
664664
.}: bool
665665

666+
#Mix config
667+
mixkey* {.desc: "ED25519 private key as 64 char hex string.", name: "mixkey".}:
668+
Option[string]
669+
#TODO: Temp config for simulations.Ideally need to get this info from bootstrap ENRs
670+
#[ mixBootstrapNodes* {.
671+
desc:
672+
"Text-encoded data for mix bootstrap node. Encoded in the format Multiaddress:libp2pPubKey:MixPubKey. Argument may be repeated.",
673+
name: "mix-bootstrap-node"
674+
.}: seq[string] ]#
675+
666676
## websocket config
667677
websocketSupport* {.
668678
desc: "Enable websocket: true|false",

waku/factory/node_factory.nim

+11
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,17 @@ proc setupProtocols(
422422
return
423423
err("failed to set node waku peer-exchange peer: " & peerExchangeNode.error)
424424

425+
#mount mix
426+
let mixPrivKey:string =
427+
if conf.mixkey.isSome():
428+
conf.mixkey.get()
429+
else:
430+
error "missing mix key"
431+
return err("missing mix key")
432+
(
433+
await node.mountMix(mixPrivKey)
434+
).isOkOr:
435+
return err("failed to mount waku mix protocol: " & $error)
425436
return ok()
426437

427438
## Start node

waku/node/waku_node.nim

+8-10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import
1212
bearssl/rand,
1313
eth/p2p/discoveryv5/enr,
1414
libp2p/crypto/crypto,
15+
libp2p/crypto/curve25519,
1516
libp2p/protocols/ping,
1617
libp2p/protocols/pubsub/gossipsub,
1718
libp2p/protocols/pubsub/rpc/messages,
@@ -126,6 +127,7 @@ type
126127
contentTopicHandlers: Table[ContentTopic, TopicHandler]
127128
rateLimitSettings*: ProtocolRateLimitSettings
128129
mix*: MixProtocol
130+
mixbootNodes*: Table[PeerId, MixPubInfo]
129131

130132
proc new*(
131133
T: type WakuNode,
@@ -212,24 +214,20 @@ proc mountSharding*(
212214
return ok()
213215

214216
# Mix Protocol
215-
proc mountMix*(node: WakuNode): Result[void, string] =
217+
proc mountMix*(node: WakuNode, mixPrivKey: string): Future[Result[void, string]] {.async.} =
216218
info "mounting mix protocol" #TODO log the config used
217-
218-
var mixNodes = initTable[PeerId, MixPubInfo]()
219-
# TODO: pass bootstrap node info here as mixNodes
220-
221-
let keyPairResult = generateKeyPair()
222-
if keyPairResult.isErr:
223-
return err("Generate key pair error: " & $keyPairResult.error)
224-
let (mixPrivKey, mixPubKey) = keyPairResult.get()
219+
let mixKey = nimcrypto.fromHex(mixPrivKey).intoCurve25519Key()
220+
let mixPubKey = public(mixKey)
225221

226222
let localaddrStr = node.announcedAddresses[0].toString().valueOr:
227223
return err("Failed to convert multiaddress to string.")
228224

229225
let localMixNodeInfo = initMixNodeInfo(
230-
localaddrStr, mixPubKey, mixPrivKey, node.switch.peerInfo.publicKey.skkey,
226+
localaddrStr, mixPubKey, mixKey, node.switch.peerInfo.publicKey.skkey,
231227
node.switch.peerInfo.privateKey.skkey,
232228
)
229+
let mixNodes = initTable[PeerId, MixPubInfo]()
230+
#mixNodes[""]=
233231

234232
let protoRes = MixProtocol.initMix(localMixNodeInfo, node.switch, mixNodes)
235233
if protoRes.isErr:

0 commit comments

Comments
 (0)