Tenzro
Start building

Start building on Tenzro.

Five steps from zero to a signed, on-chain transaction. The CLI is the fastest path; SDKs cover Rust, TypeScript, and Python with the same semantics.
Step 01

Install the CLI

One curl command. macOS, Linux, Windows. Or grab a binary from the downloads page.

curl -fsSL https://install.tenzro.network | sh
Step 02

Claim TNZO

Hit the faucet for 100 testnet TNZO. 24-hour cooldown per address.

# Get an address with `tenzro wallet list`, then:
tenzro faucet 0xYourAddress
Step 03

Run your first inference

Default catalog includes Qwen 3, Gemma 3, Mistral, Phi 3, DeepSeek V3, Granite. Routed by price, latency, and reputation.

tenzro inference request qwen3-0.6b "Summarize Tenzro Network in one sentence."
Step 04

Deploy a contract

Pick a VM: EVM, SVM, or DAML. The same node speaks all three. Block-STM parallel execution, EIP-1559 fee market.

tenzro contract deploy \
  --bytecode 0x6080604052... \
  --vm evm
Step 05

Register an identity

TDIP DID for a human, delegated agent, or autonomous machine. MPC wallet auto-provisioned. Delegation scope enforced at signing time.

tenzro identity register \
  --name "trading-bot-1" \
  --identity-type machine \
  --controller did:tenzro:human:<your-uuid>
Endpoints