30 lines
622 B
Markdown
Raw Normal View History

2020-04-14 13:31:55 +08:00
# Hello GossipSub
Playing around with GossipSub in Nim to check feasibility of moving over Waku to libp2p.
Let's start small:
- Node that broadcast message
- Node that receives it
2020-04-14 15:07:20 +08:00
## Running
`nim c -r src/hello_gossipsub.nim`
2020-04-20 13:47:15 +08:00
2020-04-21 13:29:30 +08:00
Alt, Waku (imported):
```
make start_network quicksim
# ./build/start_network --topology:FullMesh --amount:6 --test-node-peers:2
./build/start_network
./build/quicksim
```
2020-04-20 13:47:15 +08:00
## What I want to do
Use Waku stuff from Nimbus here,
Get quicksim working
Then try to do similar with libp2p gossipsub
2020-04-21 13:29:56 +08:00
waku folder is Waku imported from Nimbus, not using right now (need to fix Nimbus links etc).