Start Building on Tenzro
Get up and running with Tenzro Network in minutes
Quick Start
1
Install the Tenzro CLI
Install the CLI tool to interact with the network and manage your node
# Install from cargo
cargo install tenzro-cli
# Or download pre-built binary from releases page
# Extract and add to your PATH
# Verify installation
tenzro-cli --version2
Start a Node
Connect to the Tenzro testnet or run a local development node
# Connect to testnet
tenzro-cli node start --role light-client
# Or run local development node
tenzro-cli node start --role validator --devFor production validator nodes, see the full documentation.
3
Create a Wallet
Set up a wallet to manage your TNZO tokens and interact with the network
# Create a new MPC wallet (2-of-3 threshold)
tenzro-cli wallet create --name my-wallet
# Get your wallet address
tenzro-cli wallet address
# Get testnet tokens from the faucet
curl -X POST https://faucet.tenzro.network/api/request \
-H "Content-Type: application/json" \
-d '{"address": "YOUR_ADDRESS"}'
# Check balance
tenzro-cli wallet balance --asset TNZO4
Deploy Your First Contract
Deploy a smart contract using EVM, SVM, or DAML
EVM (Solidity)
# Deploy with Foundry
forge create src/MyContract.sol:MyContract \
--rpc-url https://rpc.tenzro.network \
--private-key YOUR_PRIVATE_KEY
# Or use Hardhat
npx hardhat run scripts/deploy.js --network tenzroSVM (Solana Program)
# Build Solana program with Anchor framework
anchor build
# Deploy to Tenzro Network
anchor deploy --provider.cluster https://rpc.tenzro.networkDAML (Canton)
# Submit DAML command via CLI
tenzro-cli daml submit \
--template MyModule:MyTemplate \
--payload '{"field": "value"}'