No description
Find a file
2025-12-29 23:04:24 +01:00
.github chore: pin logos-messaging-interop-tests to SMOKE_TEST_STABLE (#3667) 2025-12-16 17:49:03 +01:00
.sv4git/templates feat: add release-notes target (#1734) 2023-05-18 14:45:45 +02:00
apps chore: do not mount lightpush without relay (fixes #2808) (#3540) 2025-12-11 10:51:47 +01:00
ci ci: move builds to a container 2025-10-23 11:23:55 +02:00
docker/binaries fix: remove pcre dependency as it is not used anymore and causing random CI docker build failures (#3566) 2025-10-09 14:38:34 +02:00
docs Rest store api constraints default page size to 20 and max to 100 (#3602) 2025-12-03 11:55:34 +01:00
examples feat: compilation for iOS WIP (#3668) 2025-12-22 15:40:09 +02:00
library feat: compilation for iOS WIP (#3668) 2025-12-22 15:40:09 +02:00
metrics chore: add missing metrics (#3565) 2025-09-26 03:30:55 +05:30
migrations chore: adding extra migration to sqlite and improving error message (#3240) 2025-01-16 16:10:28 +01:00
nix nix: add wakucanary Flake package (#3599) 2025-11-20 13:40:08 +01:00
scripts chore: pin rln dependencies to specific version (#3649) 2025-12-19 10:55:53 +02:00
simulations use exit==dest approach for mix (#3642) 2025-11-22 08:11:05 +05:30
tests fix: hash inputs for external nullifier, remove length prefix for sha256 (#3660) 2025-12-17 18:51:10 -08:00
tools chore: clarify api folders (#3637) 2025-11-15 23:31:09 +01:00
vendor Start using nim-ffi to implement libwaku (#3656) 2025-12-19 17:00:43 +01:00
waku fix: hash inputs for external nullifier, remove length prefix for sha256 (#3660) 2025-12-17 18:51:10 -08:00
.dockerignore fix(dockerfile): update dockerignore and base image (#2262) 2023-12-01 11:35:50 +01:00
.editorconfig chore: add editorconfig file 2022-11-21 09:31:03 +01:00
.gitignore feat: compilation for iOS WIP (#3668) 2025-12-22 15:40:09 +02:00
.gitmodules Start using nim-ffi to implement libwaku (#3656) 2025-12-19 17:00:43 +01:00
.sv4git.yml chore(ci): extend and rename nightly workflow to support RC builds (#1784) 2023-06-08 17:13:40 +02:00
AGENTS.md Add text file for coding LLMs with high-level nwaku info and style guide advice (#3624) 2025-12-09 10:45:06 +01:00
CHANGELOG.md Release : patch release v0.37.1-beta (#3661) 2025-12-10 17:40:42 +05:30
config.nims feat: remain windows support (#3162) 2025-03-05 21:21:59 +05:30
Dockerfile use nightly docker rust image to allow release creation (#3628) 2025-10-18 19:08:57 +05:30
Dockerfile.lightpushWithMix.compile feat: update rendezvous to broadcast and discover WakuPeerRecords (#3617) 2025-11-21 23:15:12 +05:30
env.sh Set up repo to make use of nimbus-build-system 2020-05-01 11:29:16 +02:00
flake.lock nix: add wakucanary Flake package (#3599) 2025-11-20 13:40:08 +01:00
flake.nix nix: add wakucanary Flake package (#3599) 2025-11-20 13:40:08 +01:00
LICENSE-APACHEv2 Fix name in licence (#517) 2021-04-28 20:00:45 +10:00
LICENSE-MIT Fix name in licence (#517) 2021-04-28 20:00:45 +10:00
Makefile feat: compilation for iOS WIP (#3668) 2025-12-22 15:40:09 +02:00
README.md small refactor README to start using Logos Messaging Nim term 2025-12-29 23:04:24 +01:00
waku.nim feat: Waku API create node (#3580) 2025-10-01 16:31:34 +10:00
waku.nimble feat: compilation for iOS WIP (#3668) 2025-12-22 15:40:09 +02:00

Logos Messaging Nim

Introduction

The logos-messaging-nim, a.k.a. lmn or nwaku, repository implements a set of libp2p protocols aimed to bring private communications.

  • Nim implementation of these specs.
  • C library that exposes the implemented protocols.
  • CLI application that allows you to run an lmn node.
  • Examples.
  • Various tests of above.

For more details see the source code

How to Build & Run ( Linux, MacOS & WSL )

These instructions are generic. For more detailed instructions, see the source code above.

Prerequisites

The standard developer tools, including a C compiler, GNU Make, Bash, and Git. More information on these installations can be found here.

In some distributions (Fedora linux for example), you may need to install which utility separately. Nimbus build system is relying on it.

You'll also need an installation of Rust and its toolchain (specifically rustc and cargo). The easiest way to install these, is using rustup:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Wakunode

# The first `make` invocation will update all Git submodules.
# You'll run `make update` after each `git pull` in the future to keep those submodules updated.
make wakunode2

# Build with custom compilation flags. Do not use NIM_PARAMS unless you know what you are doing.
# Replace with your own flags
make wakunode2 NIMFLAGS="-d:chronicles_colors:none -d:disableMarchNative"

# Run with DNS bootstrapping
./build/wakunode2 --dns-discovery --dns-discovery-url=DNS_BOOTSTRAP_NODE_URL

# See available command line options
./build/wakunode2 --help

To join the network, you need to know the address of at least one bootstrap node. Please refer to the Waku README for more information.

For more on how to run wakunode2, refer to:

Issues

WSL

If you encounter difficulties building the project on WSL, consider placing the project within WSL's filesystem, avoiding the /mnt/ directory.

How to Build & Run ( Windows )

Windows Build Instructions

1. Install Required Tools

  • Git Bash Terminal: Download and install from https://git-scm.com/download/win
  • MSYS2:
    a. Download installer from https://www.msys2.org
    b. Install at "C:" (default location). Remove/rename the msys folder in case of previous installation. c. Use the mingw64 terminal from msys64 directory for package installation.

2. Install Dependencies

Open MSYS2 mingw64 terminal and run the following one-by-one :

pacman -Syu --noconfirm  
pacman -S --noconfirm --needed mingw-w64-x86_64-toolchain  
pacman -S --noconfirm --needed base-devel make cmake upx  
pacman -S --noconfirm --needed mingw-w64-x86_64-rust  
pacman -S --noconfirm --needed mingw-w64-x86_64-postgresql  
pacman -S --noconfirm --needed mingw-w64-x86_64-gcc  
pacman -S --noconfirm --needed mingw-w64-x86_64-gcc-libs  
pacman -S --noconfirm --needed mingw-w64-x86_64-libwinpthread-git  
pacman -S --noconfirm --needed mingw-w64-x86_64-zlib  
pacman -S --noconfirm --needed mingw-w64-x86_64-openssl  
pacman -S --noconfirm --needed mingw-w64-x86_64-python

3. Build Wakunode

  • Open Git Bash as administrator
  • clone nwaku and cd nwaku
  • Execute: ./scripts/build_windows.sh

4. Troubleshooting

If wakunode2.exe isn't generated:

  • Missing Dependencies: Verify with:
    which make cmake gcc g++ rustc cargo python3 upx
    If missing, revisit Step 2 or ensure MSYS2 is at C:\
  • Installation Conflicts: Remove existing MinGW/MSYS2/Git Bash installations and perform fresh install

Developing

Nim Runtime

This repository is bundled with a Nim runtime that includes the necessary dependencies for the project.

Before you can utilize the runtime you'll need to build the project, as detailed in a previous section. This will generate a vendor directory containing various dependencies, including the nimbus-build-system which has the bundled nim runtime.

After successfully building the project, you may bring the bundled runtime into scope by running:

source env.sh

If everything went well, you should see your prompt suffixed with [Nimbus env]$. Now you can run nim commands as usual.

Test Suite

# Run all the Waku tests
make test

# Run a specific test file
make test <test_file_path>
# e.g. : make test tests/wakunode2/test_all.nim

# Run a specific test name from a specific test file
make test <test_file_path> <test_name>
# e.g. : make test tests/wakunode2/test_all.nim "node setup is successful with default configuration"

Building single test files

During development it is helpful to build and run a single test file. To support this make has a specific target:

targets:

  • build/<relative path to your test file.nim>
  • test/<relative path to your test file.nim>

Binary will be created as <path to your test file.nim>.bin under the build directory .

# Build and run your test file separately
make test/tests/common/test_enr_builder.nim

Testing against js-waku

Refer to js-waku repo for instructions.

Formatting

Nim files are expected to be formatted using the nph version present in vendor/nph.

You can easily format file with the make nph/<relative path to nim> file command. For example:

make nph/waku/waku_core.nim

A convenient git hook is provided to automatically format file at commit time. Run the following command to install it:

make install-nph

Examples

Examples can be found in the examples folder. This includes a fully featured chat example.

Tools

Different tools and their corresponding how-to guides can be found in the tools folder.

Bugs, Questions & Features

For an inquiry, or if you would like to propose new features, feel free to open a general issue.

For bug reports, please tag your issue with the bug label.

If you believe the reported issue requires critical attention, please use the critical label to assist with triaging.

To get help, or participate in the conversation, join the Waku Discord server.

Docs