SDKs and reference
CLI.
The
tenzro CLI is a thin client over JSON-RPC plus local utilities (chat with a local model, hardware detection, keys).- STATUS
- Testnet
- CRATE
- tenzro-cli
- STABILITY
- Stable
- TYPE
- Reference
01
Top-level
tenzro chat tenzro faucet tenzro info
tenzro wallet tenzro identity tenzro stake
tenzro model tenzro inference tenzro agent
tenzro task tenzro marketplace tenzro bridge
tenzro escrow tenzro payment tenzro governance
tenzro zk tenzro vrf tenzro tee
tenzro contract tenzro token tenzro nft
tenzro skill tenzro tool tenzro events
tenzro train tenzro hardware tenzro join
tenzro setup02
Setup
tenzro setup
# Guided setup: join the public network (consume, provide, or validate),
# create a local or sovereign network, or join an existing private network.
# Every prompt has a matching flag for non-interactive use.
tenzro setup --path local --network-name lab --yes
# Bootstrap your own network: generates the validator keyset
# (Ed25519 + ML-DSA-65 + BLS12-381), assembles a schema-v3 genesis.toml,
# writes a service unit, and prints the start command plus the exact
# join command for each peer
tenzro setup --path private --genesis ./genesis.toml --bootstrap <multiaddr>
# Join an existing private network03
Join
tenzro join
# Provisions identity + MPC wallet + hardware profile via tenzro_participate
tenzro join --provider
# Also become an inference provider: hardware detection, compute bond,
# registration, default pricing, and a served model — all automatic04
Wallet
tenzro wallet create
tenzro wallet balance --address 0x...
tenzro wallet send <to> <amount>
tenzro wallet list
# Self-custody: the node never holds the secret. A local sealed key holds
# the Ed25519 + ML-DSA-65 keypair; wallet send signs both legs locally.
tenzro wallet create-local
tenzro wallet import-local <ed25519-secret-hex>
tenzro wallet send <to> <amount> --self-custody05
Inference
tenzro chat
tenzro model serve qwen3-0.6b
tenzro inference --model qwen3-0.6b --prompt "hello"Related