Tenzro
Getting started

Getting started.

Install the CLI, pull testnet TNZO from the faucet, and call the network from a script.
STATUS
Testnet
CRATE
tenzro-cli
STABILITY
Stable
TYPE
Guide
01

Install the CLI

The tenzro CLI dispatches to the live JSON-RPC endpoint.

cargo install --git https://github.com/tenzro/tenzro-network tenzro-cli

tenzro --version
02

Request testnet TNZO

The faucet drops 100 TNZO per request with a 24 hour cooldown.

curl -X POST https://api.tenzro.network/faucet   -H 'content-type: application/json'   -d '{"address":"0xYourAddress"}'
03

Call the network

Both EVM-compatible RPC and the native tenzro_* namespace are exposed on the same endpoint.

curl -X POST https://rpc.tenzro.network   -H 'content-type: application/json'   -d '{"jsonrpc":"2.0","id":1,"method":"eth_chainId","params":[]}'

curl -X POST https://rpc.tenzro.network   -H 'content-type: application/json'   -d '{"jsonrpc":"2.0","id":2,"method":"tenzro_listModels","params":[]}'
04

Run a node

Any machine can join. Validators secure consensus; ModelProviders serve inference; TeeProviders host enclaves; LightClients verify.

tenzro-node   --role validator   --listen-addr /ip4/0.0.0.0/tcp/9000   --rpc-addr 127.0.0.1:8545
Related
← All docs