LIVE TESTNET

Network Dashboard

Real-time monitoring of AgentChain testnet — Proof of Utility consensus with sub-second block times.

Block Height
--
Validators
--
Proof of Utility
Avg Block Time
--
Target: 400ms
Total Transactions
--
Across all blocks
Total Supply
--
AGENT minted
Uptime
--
Since genesis
Node Connectivity
LIVE

⚡ Validators

Loading...

📦 Recent Blocks

Latest 10

🔄 Transaction Feed

Live
📡

Listening for transactions...

RPC Endpoints
HTTP JSON-RPC
http://46.224.183.94📋
Primary validator — Port 8545
WebSocket
ws://46.224.183.94:8545/ws📋
Subscribe to new blocks & txs
Chain ID
agentchain-testnet-1📋
Unique network identifier
P2P Multiaddr
/ip4/46.224.183.94/tcp/30301📋
Ports 30301-30303 for each node
Node 2 RPC
http://46.224.183.94:8546📋
Secondary validator
Node 3 RPC
http://46.224.183.94:8547📋
Tertiary validator

🚀 Quick Start

01 — QUERY

Get Chain Info

Fetch current block height, validator count, and network state.

curl http://46.224.183.94/chain_info
02 — READ

Fetch a Block

Get full block details including transactions and producer address.

curl http://46.224.183.94/block/1
03 — FAUCET

Get Test Tokens

Receive free AGENT tokens. 10,000 per request with 60s cooldown.

04 — TRANSACT

Send a Transaction

Submit a signed transaction to the network via any RPC endpoint.

curl -X POST \ http://46.224.183.94/submit_transaction \ -H "Content-Type: application/json" \ -d '{"type":"Transfer","to":"...","amount":1000}'
05 — DEPLOY

Deploy a Contract

Upload WASM bytecode and instantiate a smart contract on-chain.

curl -X POST \ http://46.224.183.94/submit_transaction \ -H "Content-Type: application/json" \ -d '{"type":"DeployContract", "bytecode":"0x...","gas_limit":1000000}'
06 — EXPLORE

Browse the Chain

Use the explorer for visual block/transaction browsing and search.