|
12 | 12 | bearssl/rand,
|
13 | 13 | eth/p2p/discoveryv5/enr,
|
14 | 14 | libp2p/crypto/crypto,
|
| 15 | + libp2p/crypto/curve25519, |
15 | 16 | libp2p/protocols/ping,
|
16 | 17 | libp2p/protocols/pubsub/gossipsub,
|
17 | 18 | libp2p/protocols/pubsub/rpc/messages,
|
|
126 | 127 | contentTopicHandlers: Table[ContentTopic, TopicHandler]
|
127 | 128 | rateLimitSettings*: ProtocolRateLimitSettings
|
128 | 129 | mix*: MixProtocol
|
| 130 | + mixbootNodes*: Table[PeerId, MixPubInfo] |
129 | 131 |
|
130 | 132 | proc new*(
|
131 | 133 | T: type WakuNode,
|
@@ -212,24 +214,20 @@ proc mountSharding*(
|
212 | 214 | return ok()
|
213 | 215 |
|
214 | 216 | # Mix Protocol
|
215 |
| -proc mountMix*(node: WakuNode): Result[void, string] = |
| 217 | +proc mountMix*(node: WakuNode, mixPrivKey: string): Future[Result[void, string]] {.async.} = |
216 | 218 | 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) |
225 | 221 |
|
226 | 222 | let localaddrStr = node.announcedAddresses[0].toString().valueOr:
|
227 | 223 | return err("Failed to convert multiaddress to string.")
|
228 | 224 |
|
229 | 225 | let localMixNodeInfo = initMixNodeInfo(
|
230 |
| - localaddrStr, mixPubKey, mixPrivKey, node.switch.peerInfo.publicKey.skkey, |
| 226 | + localaddrStr, mixPubKey, mixKey, node.switch.peerInfo.publicKey.skkey, |
231 | 227 | node.switch.peerInfo.privateKey.skkey,
|
232 | 228 | )
|
| 229 | + let mixNodes = initTable[PeerId, MixPubInfo]() |
| 230 | + #mixNodes[""]= |
233 | 231 |
|
234 | 232 | let protoRes = MixProtocol.initMix(localMixNodeInfo, node.switch, mixNodes)
|
235 | 233 | if protoRes.isErr:
|
|
0 commit comments