nwaku/examples/wakustealthcommitments
Ivan FB 2463527b24
refactor: big refactor to add waku component in libwaku instead of onlu waku node (#2658)
2024-05-03 14:07:15 +02:00
..
README.md feat(waku-stealth-commitments): waku stealth commitment protocol (#2490) 2024-03-06 18:44:33 +05:30
erc_5564_interface.nim Generic re-style with nph 0.5.1 (#2396) 2024-03-16 00:08:47 +01:00
nim.cfg feat(waku-stealth-commitments): waku stealth commitment protocol (#2490) 2024-03-06 18:44:33 +05:30
node_spec.nim refactor: big refactor to add waku component in libwaku instead of onlu waku node (#2658) 2024-05-03 14:07:15 +02:00
stealth_commitment_protocol.nim refactor: big refactor to add waku component in libwaku instead of onlu waku node (#2658) 2024-05-03 14:07:15 +02:00
wakustealthcommitments.nim Generic re-style with nph 0.5.1 (#2396) 2024-03-16 00:08:47 +01:00
wire_spec.nim Generic re-style with nph 0.5.1 (#2396) 2024-03-16 00:08:47 +01:00

README.md

wakustealthcommitments

This application/tool/protocol is used to securely communicate requests and responses for the Stealth Address Scheme

Uses TWN config as default, and content topic: /wakustealthcommitments/1/app/proto

Usage

  1. Clone the erc-5564-bn254 repo and build the static lib
gh repo clone rymnc/erc-5564-bn254
cd erc-5564-bn254
cargo build --release --all-features
cp ./target/release/liberc_5564_bn254.a <path-to-nwaku>

![NOTE] This static library also includes the rln ffi library, so you don't need to build it separately. This is because using both of them separately brings in a lot of duplicate symbols.

  1. Build the wakustealthcommitments app
cd <path-to-nwaku>
source env.sh
nim c --out:build/wakustealthcommitments  --verbosity:0 --hints:off -d:chronicles_log_level=INFO -d:git_version="v0.24.0-rc.0-62-g7da25c" -d:release --passL:-lm --passL:liberc_5564_bn254.a --debugger:native examples/wakustealthcommitments/wakustealthcommitments.nim
./build/wakustealthcommitments \
    --rln-relay-eth-client-address:<insert http rpc url> \
    --rln-relay-cred-path:<path-to-credentials-file> \
    --rln-relay-cred-password:<password-of-credentials-file>

This service listens for requests for stealth commitment/address generation, partakes in the generation of said stealth commitment and then distributes the response to the mesh.