CipherCipherStart building
Guides

Developer Guide

Integrate with Cipher via the CLI or cipher-core crate.

CLI integration

cipher wallet deposit --amount 0.5
cipher wallet transfer --to <stealth-addr> --amount 0.1
cipher wallet withdraw --to 0x... --amount 0.1

Rust crate

use cipher_core::{client::Client, types::Amount};

let client = Client::connect("http://localhost:8899").await?;
let root = client.merkle_root().await?;

Local 5-validator net

./scripts/localnet.sh up --validators 5
./scripts/localnet.sh e2e
./scripts/localnet.sh down