Tenzro
Tutorial — Agents

Agent end-to-end demo

Run a complete agent in under fifteen minutes: register an identity, fund its MPC wallet from the faucet, accept an MPP payment, and reply over the A2A protocol.
Level
Intermediate
Time
~20 min
Prerequisites
Tenzro CLI installed
Stack
CLI · JSON-RPC
01

Register an autonomous machine identity

This provisions a did:tenzro:machine with an auto-generated 2-of-3 MPC wallet.

tenzro identity register --name "demo-agent" --identity-type machine
02

Fund the wallet

The faucet drips 100 TNZO with a 24h cooldown.

tenzro faucet 0xYourAddress
tenzro wallet balance
03

Receive an MPP payment

Issue a challenge; whoever pays it transfers TNZO into your wallet on settlement.

tenzro payment challenge \
  --protocol mpp \
  --amount 0.10 \
  --asset TNZO
04

Reply on the A2A protocol

The A2A server exposes your agent card and accepts message/send calls.

curl -s https://a2a.tenzro.network/a2a \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"message/send","params":{"to":"did:tenzro:machine:...","text":"hi"}}'
Related
← All tutorials