Verification
Use the smallest tier that covers the change. The default suite does not generate an SP1 proof.
Rust and verifier
cargo check --offline \
-p settlement-program \
-p zkapp-script \
-p zeko_sp1_lib \
-p zeko-proof-api
cargo test --offline -p pickles-verifier
cargo test --offline -p settlement-program
cargo test --offline -p bridge-program
cargo test --offline -p withdraw-program
cargo test --offline -p zeko_sp1_lib
cargo test --offline -p zeko-proof-apiThe Pickles suite includes negative mutations of application statements, deferred values, bulletproof challenges, accumulator points, feature flags, previous evaluations, body fields, and action bindings.
Solidity
cd contracts
forge build --sizes
forge test -vvFor the focused native bridge protocol checkpoint:
forge test --match-path test/NativeBridgePocE2E.t.sol -vvOCaml cross-language checks
cd ../zeko
nix develop "git+file://$PWD?submodules=1" --accept-flake-config \
-c dune exec src/app/zeko/tests/ethereum_bridge_vectors.exeThis asserts that OCaml and Rust agree on the synthetic Ethereum deposit holder, Poseidon aux values, and action encodings.
Deployment/static checks
docker compose --env-file deploy/testnet/.env \
-f deploy/testnet/compose.yaml config --quiet
bash -n tools/*.sh
cargo fmt --all -- --check
git diff --checkRustfmt can warn about nightly-only settings such as imports_granularity and indent_style; the warning is expected, formatting differences are not.
Build the docs:
cd docs
pnpm install --frozen-lockfile
pnpm buildHeavy execute-only checkpoint
Run this after verifier, serialization, or receipt changes:
cargo run --release --bin zkapp -- --executeFor the genuine native flow, use the full local E2E. These commands execute SP1 but do not prove.
What requires explicit intent
The following are not routine tests:
--provecargo run --release --bin evmSP1_PROVER=network- gateway approval of a job
- a broadcast Foundry script against Sepolia
They consume substantial resources, funds, or external state. Run them only as part of the reviewed testnet runbook.