This commit is contained in:
Oskar Thoren 2020-04-14 13:31:55 +08:00
parent e330951d0c
commit 1e3718a50c
No known key found for this signature in database
GPG Key ID: B2ECCFD3BC2EF77E
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# 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

View File

@ -0,0 +1,14 @@
# Package
version = "0.1.0"
author = "Oskar Thoren"
description = "A new awesome nimble package"
license = "MIT"
srcDir = "src"
bin = @["hello_gossipsub"]
# Dependencies
requires "nim >= 1.2.0"

View File

@ -0,0 +1,5 @@
# This is just an example to get you started. A typical binary package
# uses this file as the main entry point of the application.
when isMainModule:
echo("Hello, World!")