Tenzro
Tutorial — Getting started

Install the OpenClaw skill

The OpenClaw Tenzro skill gives any OpenClaw-compatible agent runtime direct access to wallet, inference, identity, and verification calls — without writing custom RPC glue.
Level
Beginner
Time
~10 min
Prerequisites
Python 3.11+, an OpenClaw runtime
Stack
Python · OpenClaw
01

Install the skill package

The skill ships as a standard Python package and auto-discovers under any OpenClaw host.

pip install openclaw-tenzro
02

Configure the endpoint

Point the skill at the public testnet by exporting the RPC URL. Skip this on your own node.

export TNZO_ENDPOINT=https://rpc.tenzro.network
export TNZO_NETWORK=testnet
03

Call from your agent

The skill exposes typed methods that map 1:1 to the JSON-RPC surface.

from openclaw_tenzro import TenzroSkill

t = TenzroSkill()
balance = t.wallet_balance("0x7a4bcb13a6b2b384c284b5caa6e5ef3126527f93")
print(f"balance = {balance} TNZO base units")
04

Test against the live testnet

Run a quick end-to-end check that the skill resolves through to chain state.

python -m openclaw_tenzro.selftest
Related
← All tutorials