mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-18 10:52:26 +00:00
605cf1c38c
* feat(rln-relay): group manager api * fix(rln-relay): static gm, method async works now * fix(rln-relay): cb naming, ensure merkle root changed * chore(rln-relay): static group manager fully tested * chore(rln-relay): split ffi into its own module, split conversion_utils * chore(rln-relay): refactor onchain group * fix(rln-relay): throw error if privatekey is malformed * chore(rln-relay): convert methods to procs, remove warnings, formatting * chore(rln-relay): remove comment * style(rln-relay): fmt test * feat(rln-relay): complete onchain group manager. pending tests * fix(rln-relay): onchain implementation works now * fix(rln-relay): reg index * fix(rln): imports * fix(rln-relay): revert method to proc conv * fix(rln-relay): s/ffi/rln * fix(rln-relay): remove rln/ from gitignore * fix(rln-relay): s/ffi/rln
18 lines
330 B
Nim
18 lines
330 B
Nim
import
|
|
./waku_rln_relay/rln,
|
|
./waku_rln_relay/constants,
|
|
./waku_rln_relay/protocol_types,
|
|
./waku_rln_relay/protocol_metrics,
|
|
./waku_rln_relay/conversion_utils,
|
|
./waku_rln_relay/utils,
|
|
./waku_rln_relay/contract
|
|
|
|
export
|
|
rln,
|
|
constants,
|
|
protocol_types,
|
|
protocol_metrics,
|
|
conversion_utils,
|
|
utils,
|
|
contract
|