Go implementation of Waku v2 protocol
Go to file
shash256 14155d87f6 Merge branch 'master' into e2e-reliability 2024-08-12 12:05:57 +04:00
.github fix: use corrected connected peer count and add check to avoid crash (#1182) 2024-08-06 17:51:11 +05:30
build
ci chore(nix): refactor, fix library packages 2024-07-30 15:55:08 +02:00
cmd/waku refactor: ping a subset of connected peers (#1148) 2024-07-11 12:02:52 -04:00
coverage
docker
docs fix: replace references to old statusim.net domain 2024-07-31 13:31:16 +02:00
examples Merge branch 'master' into e2e-reliability 2024-08-12 12:05:57 +04:00
hooks
library fix: replace references to old statusim.net domain 2024-07-31 13:31:16 +02:00
libs
logging refactor: move missing messages logic from status-go to go-waku (#1174) 2024-08-01 12:00:05 -04:00
pkg
scripts/linux
tests chore: move filter manager from status-go to go-waku (#1177) 2024-08-06 13:10:56 +05:30
waku chore: limit the maximum number of message hashes to request per query (#1190) 2024-08-10 11:13:59 -04:00
.codeclimate.yml
.dockerignore fix: dockerfile (#1105) 2024-05-21 14:28:37 -04:00
.gitignore fix: logout discover dead lock (#1090) 2024-04-16 21:02:52 +08:00
.gitmodules
.golangci.full.yaml
CHANGELOG.md
Dockerfile chore: bump Go to 1.21 in Dockerfile (#1152) 2024-07-03 10:30:19 -04:00
LICENSE-APACHEv2
LICENSE-MIT
Makefile fix: do not write tcp port 0 and remove 100 chars length limit for multiaddresses (#1129) 2024-06-20 12:50:15 +05:30
README.md
VERSION
default.nix chore: move filter manager from status-go to go-waku (#1177) 2024-08-06 13:10:56 +05:30
flake.lock chore: upgrade to go1.21 (#1091) 2024-06-04 18:46:28 -04:00
flake.nix chore: move filter manager from status-go to go-waku (#1177) 2024-08-06 13:10:56 +05:30
go.mod chore: move filter manager from status-go to go-waku (#1177) 2024-08-06 13:10:56 +05:30
go.sum chore: move filter manager from status-go to go-waku (#1177) 2024-08-06 13:10:56 +05:30

README.md

go-waku

A Go implementation of the Waku v2 protocol.


Install

Building from source

git clone https://github.com/waku-org/go-waku
cd go-waku
make

# See the available command line options with
./build/waku --help

Nix

You can build Waku v2 node using Nix Flakes:

nix build github:waku-org/go-waku

Or build the library using:

nix build github:waku-org/go-waku#library

To start a shell with build dependencies use:

nix develop

Docker

docker run -i -t -p 60000:60000 -p 9000:9000/udp \
  wakuorg/go-waku:latest \ 
    --dns-discovery \
    --dns-discovery-url enrtree://AIRVQ5DDA4FFWLRBCHJWUWOO6X6S4ZTZ5B667LQ6AJU6PEYDLRD5O@sandbox.waku.nodes.status.im \
    --discv5-discovery

or use the image:tag of your choice.

or build and run the image with:

docker build -t wakuorg/go-waku:latest .

docker run wakuorg/go-waku:latest --help

Building on windows

Windows requires the following tools to be installed

Library

go get github.com/waku-org/go-waku

C Bindings

make static-library
make dynamic-library

Mobile libraries

Requires gomobile

make mobile-android
make mobile-ios

Tutorials and documentation

Examples

Examples of usage of go-waku as a library can be found in the examples/ folder:

  • basic2 - demonstrates how to send and receive messages
  • chat2 - simple chat client using waku relay / lightpush + filter / store protocol to send/receive messages and retrieve message history
  • filter2 - demonstrates how to use filter protocol
  • c-bindings - simple program to demonstrate how to consume the go-waku library via C FFI
  • waku-csharp - C# console application that uses the go-waku library via FFI
  • android-kotlin - android app that uses a .jar generated by gomobile using kotlin

Contribution

Thank you for considering to help out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes!

If you'd like to contribute to go-waku, please fork, fix, commit and send a pull request. If you wish to submit more complex changes though, please check up with the core devs first to ensure those changes are in line with the general philosophy of the project and/or get some early feedback which can make both your efforts much lighter as well as our review and merge procedures quick and simple.

To build and test this repository, you need:

To enable the git hooks:

git config core.hooksPath hooks

Bugs, Questions & Features

If you encounter any bug or would like to propose new features, feel free to open an issue.

For more general discussion, help and latest news, join #go-waku on Vac Discord or Telegram.

License

Licensed and distributed under either of

or

at your option. These files may not be copied, modified, or distributed except according to those terms.