Go implementation of Waku v2 protocol
Go to file
richΛrd 8d7c2f7bfa
feat: filter peers stored in cache by cluster-id in peer-exchange (#1139)
2024-06-27 10:02:01 -04:00
.github feat: storeV3 client (#1028) 2024-05-03 12:07:03 -04:00
build
ci chore(ci): drop build discord noficiation 2024-02-14 16:33:44 +01:00
cmd/waku chore: allow setting custom logger name and change debug level to storeV3 client (#1118) 2024-06-05 11:56:26 -04:00
coverage
docker
docs fix(store): simplify cursor 2024-05-16 18:55:12 -04:00
examples chore: allow setting custom logger name and change debug level to storeV3 client (#1118) 2024-06-05 11:56:26 -04:00
hooks
library chore: upgrade to go1.21 (#1091) 2024-06-04 18:46:28 -04:00
libs
logging feat: modify peer-manager to consider relay target peers (#1135) 2024-06-26 06:18:44 +05:30
pkg
scripts/linux feat: v0.9.0 (#902) 2023-11-15 12:31:18 -04:00
tests feat: changes for optimizing filter ping and improve filter resubscription (#1102) 2024-05-22 11:45:53 +05:30
waku feat: filter peers stored in cache by cluster-id in peer-exchange (#1139) 2024-06-27 10:02:01 -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 fix: use https instead of ssh for submodules 2023-12-08 14:40:30 -04:00
.golangci.full.yaml
CHANGELOG.md
Dockerfile
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 chore: switch wakuv2 fleet to waku 2024-03-20 11:38:48 +01:00
VERSION feat: v0.9.0 (#902) 2023-11-15 12:31:18 -04:00
flake.lock chore: upgrade to go1.21 (#1091) 2024-06-04 18:46:28 -04:00
flake.nix chore: upgrade to go1.21 (#1091) 2024-06-04 18:46:28 -04:00
go.mod chore: upgrade to go1.21 (#1091) 2024-06-04 18:46:28 -04:00
go.sum chore: upgrade to go1.21 (#1091) 2024-06-04 18:46:28 -04:00

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.