Skip to content

Commit 00c915e

Browse files
committed
add config for lpmix example
1 parent 4894584 commit 00c915e

File tree

2 files changed

+39
-19
lines changed

2 files changed

+39
-19
lines changed

examples/lightpush_publisher_mix.nim

+17-19
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,26 @@ import
2424
waku_enr,
2525
discovery/waku_discv5,
2626
factory/builder,
27-
waku_lightpush/client,
28-
]
27+
waku_lightpush/client
28+
],
29+
./lightpush_publisher_mix_config
30+
2931

3032
proc now*(): Timestamp =
3133
getNanosecondTime(getTime().toUnixFloat())
3234

33-
# careful if running pub and sub in the same machine
34-
const wakuPort = 60000
35-
36-
const clusterId = 2
35+
const clusterId = 66
3736
const shardId = @[0'u16]
3837

3938
const
40-
LightpushPeer =
41-
"/ip4/127.0.0.1/tcp/60001/p2p/16Uiu2HAmPiEs2ozjjJF2iN2Pe2FYeMC9w4caRHKYdLdAfjgbWM6o"
42-
LightpushPubsubTopic = PubsubTopic("/waku/2/rs/2/0")
39+
LightpushPubsubTopic = PubsubTopic("/waku/2/rs/66/0")
4340
LightpushContentTopic = ContentTopic("/examples/1/light-pubsub-mix-example/proto")
4441

45-
proc setupAndPublish(rng: ref HmacDrbgContext) {.async.} =
42+
proc setupAndPublish(rng: ref HmacDrbgContext, conf: LPMixConf) {.async.} =
4643
# use notice to filter all waku messaging
4744
setupLog(logging.LogLevel.DEBUG, logging.LogFormat.TEXT)
4845

49-
notice "starting publisher", wakuPort = wakuPort
46+
notice "starting publisher", wakuPort = conf.port
5047

5148
let
5249
nodeKey = crypto.PrivateKey.random(Secp256k1, rng[]).get()
@@ -73,7 +70,7 @@ proc setupAndPublish(rng: ref HmacDrbgContext) {.async.} =
7370
var builder = WakuNodeBuilder.init()
7471
builder.withNodeKey(nodeKey)
7572
builder.withRecord(record)
76-
builder.withNetworkConfigurationDetails(ip, Port(wakuPort)).tryGet()
73+
builder.withNetworkConfigurationDetails(ip, Port(conf.port)).tryGet()
7774

7875
let node = builder.build().tryGet()
7976

@@ -87,16 +84,16 @@ proc setupAndPublish(rng: ref HmacDrbgContext) {.async.} =
8784
return
8885

8986
let pxPeerInfo = RemotePeerInfo.init(
90-
"16Uiu2HAmPiEs2ozjjJF2iN2Pe2FYeMC9w4caRHKYdLdAfjgbWM6o",
91-
@[MultiAddress.init("/ip4/127.0.0.1/tcp/60001").get()],
87+
conf.destPeerId,
88+
@[MultiAddress.init(conf.destPeerAddr).get()],
9289
)
9390
node.peerManager.addServicePeer(pxPeerInfo, WakuPeerExchangeCodec)
94-
let pxPeerInfo2 = RemotePeerInfo.init(
91+
#[ let pxPeerInfo2 = RemotePeerInfo.init(
9592
"16Uiu2HAmRhxmCHBYdXt1RibXrjAUNJbduAhzaTHwFCZT4qWnqZAu",
9693
@[MultiAddress.init("/ip4/127.0.0.1/tcp/60005").get()],
9794
)
9895
node.peerManager.addServicePeer(pxPeerInfo2, WakuPeerExchangeCodec)
99-
96+
]#
10097
(
10198
await node.mountMix(
10299
intoCurve25519Key(
@@ -110,12 +107,12 @@ proc setupAndPublish(rng: ref HmacDrbgContext) {.async.} =
110107
return
111108
#discard node.setMixBootStrapNodes()
112109

113-
let destPeerId = PeerId.init("16Uiu2HAmPiEs2ozjjJF2iN2Pe2FYeMC9w4caRHKYdLdAfjgbWM6o").valueOr:
110+
let destPeerId = PeerId.init(conf.destPeerId).valueOr:
114111
error "Failed to initialize PeerId", err = error
115112
return
116113

117114
let conn = MixEntryConnection.newConn(
118-
"/ip4/127.0.0.1/tcp/60001",
115+
conf.destPeerAddr,
119116
destPeerId,
120117
ProtocolType.fromString(WakuLightPushCodec),
121118
node.mix,
@@ -162,6 +159,7 @@ proc setupAndPublish(rng: ref HmacDrbgContext) {.async.} =
162159
await sleepAsync(1000)
163160

164161
when isMainModule:
162+
let conf = LPMixConf.load()
165163
let rng = crypto.newRng()
166-
asyncSpawn setupAndPublish(rng)
164+
asyncSpawn setupAndPublish(rng, conf)
167165
runForever()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import
2+
confutils/defs
3+
4+
5+
type
6+
LPMixConf* = object
7+
8+
destPeerAddr* {.
9+
desc: "Destination peer address.",
10+
name: "dp-addr",
11+
}: string
12+
13+
destPeerId* {.
14+
desc: "Destination peer ID.",
15+
name: "dp-id",
16+
}: string
17+
18+
port* {.
19+
desc: "Port to listen on.",
20+
defaultValue: 50000,
21+
name: "port",
22+
}: int

0 commit comments

Comments
 (0)