Files
zerokit/rln-cli/README.md
Vinh Trịnh 759d312680 fix(rln): resolve circuit parameter mismatch for customizable compilation (#288)
Trying out ideas to solve problems from this [Discord
conversation](https://discord.com/channels/864066763682218004/1344911294092017716):

- Completely remove the verification key file and use `vk_from_raw` or
derive it from ZK.
- To handle tree height mismatches, improve the documentation to provide
users with clear guidelines, preventing the generation of an incorrect
`graph.bin` file.
- Remove compressed `ark-zkey` usage and conduct benchmarking and
testing.
- Add documentation for the specific Circom compiler version 2.1.0.
- Update documentation on `rln.circom` parameters `N` and `M`.

---------

Co-authored-by: seemenkina <seemenkina@gmail.com>
2025-03-14 13:17:52 +07:00

3.9 KiB

Zerokit RLN-CLI

The Zerokit RLN-CLI provides a command-line interface for interacting with the public API of the Zerokit RLN Module.

It also contain:

  • Relay Example to demonstrate the use of the RLN module for spam prevention.
  • Stateless Example to demonstrate the use of the RLN module for stateless features.

Configuration

The CLI can be configured using a JSON configuration file (see the example).

You can specify the configuration file path using the RLN_CONFIG_PATH environment variable:

export RLN_CONFIG_PATH=example.config.json

Alternatively, you can provide the configuration file path as an argument for each command:

RLN_CONFIG_PATH=example.config.json cargo run -- <SUBCOMMAND> [OPTIONS]

If the configuration file is empty, default settings will be used, but the tree data folder will be temporary and not saved to the preconfigured path.

We recommend using the example config, as all commands (except new and create-with-params) require an initialized RLN instance.

Feature Flags

The CLI supports optional features. To enable the arkzkey feature, run:

cargo run --features arkzkey -- <SUBCOMMAND> [OPTIONS]

For more details, refer to the Zerokit RLN Module documentation.

Relay Example

The following Example demonstrates how RLN enables spam prevention in anonymous environments for multple users.

You can run the example using the following command:

cargo run --example relay

or with the arkzkey feature flag:

cargo run --example relay --features arkzkey

You can also change MESSAGE_LIMIT and TREEE_HEIGHT in the relay.rs file to see how the RLN instance behaves with different parameters.

The customize TREEE_HEIGHT constant differs from the default value of 20 should follow Custom Circuit Compilation instructions.

Stateless Example

The following Example demonstrates how RLN can be used for stateless features by creating the Merkle tree outside of RLN instance.

This example function similarly to the Relay Example but uses a stateless RLN and seperate Merkle tree.

You can run the example using the following command:

cargo run --example stateless --features stateless

or with the arkzkey feature flag:

cargo run --example stateless --features stateless,arkzkey

CLI Commands

Instance Management

To initialize a new RLN instance:

cargo run new --tree-height <HEIGHT>

To initialize an RLN instance with custom parameters:

cargo run new-with-params --resources-path <PATH> --tree-height <HEIGHT>

To update the Merkle tree height:

cargo run set-tree --tree-height <HEIGHT>

Leaf Operations

To set a single leaf:

cargo run set-leaf --index <INDEX> --input <INPUT_PATH>

To set multiple leaves:

cargo run set-multiple-leaves --index <START_INDEX> --input <INPUT_PATH>

To reset multiple leaves:

cargo run reset-multiple-leaves --input <INPUT_PATH>

To set the next available leaf:

cargo run set-next-leaf --input <INPUT_PATH>

To delete a specific leaf:

cargo run delete-leaf --index <INDEX>

Proof Operations

To generate a proof:

cargo run prove --input <INPUT_PATH>

To generate an RLN proof:

cargo run generate-proof --input <INPUT_PATH>

To verify a proof:

cargo run verify --input <PROOF_PATH>

To verify a proof with multiple Merkle roots:

cargo run verify-with-roots --input <INPUT_PATH> --roots <ROOTS_PATH>

Tree Information

To retrieve the current Merkle root:

cargo run get-root

To obtain a Merkle proof for a specific index:

cargo run get-proof --index <INDEX>