mirror of
https://github.com/vacp2p/research.git
synced 2025-02-23 11:48:22 +00:00
Init
This commit is contained in:
parent
e330951d0c
commit
1e3718a50c
7
hello_gossipsub/README.md
Normal file
7
hello_gossipsub/README.md
Normal 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
|
14
hello_gossipsub/hello_gossipsub.nimble
Normal file
14
hello_gossipsub/hello_gossipsub.nimble
Normal 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"
|
5
hello_gossipsub/src/hello_gossipsub.nim
Normal file
5
hello_gossipsub/src/hello_gossipsub.nim
Normal 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!")
|
Loading…
x
Reference in New Issue
Block a user