Run your own node
One binary. Five targets. No daemon orchestrator.
The engine is a single static binary under one megabyte. Drop it on any host with a TCP socket and 256 MB of RAM and it joins mainnet in a couple of seconds. Add --validator to propose blocks once you have bonded stake.
Latest release · v1.0.13
published Tue, 19 May 2026 23:01:41 GMT
Detected target
Linux x86_64
Download v1.0.13 · 222 KB
agentchain-v1.0.13-linux-x86_64.tar.gzSync-only node (read-only peer)
Join the network in 10 seconds.
# extract the tarball and run: ./agentchain node # the daemon writes its state to ~/.agentchain and starts # syncing the chain from the public seed.
With no flags, the binary materialises the embedded mainnet genesis, connects to the bootstrap seed, and starts syncing. RPC is on 127.0.0.1:30304 for local clients.
Validator
Propose blocks and earn rewards.
# 1. generate or import a key ./agentchain keygen # 2. fund the address (faucet or buy / receive) ./agentchain balance # 3. bond the 100 CRD validator floor ./agentchain stake --amount 100000000 # 4. run as a validator ./agentchain node --validator
You are eligible for VRF sortition the moment stake clears 100 CRD. Going offline costs you potential rewards. The protocol never slashes for downtime.
Run your own public RPC
Optional: provide a public endpoint.
# expose the daemon RPC on all interfaces ./agentchain node --rpc-host 0.0.0.0 # put a reverse proxy in front of it for TLS + rate limiting. # reference Caddy and nftables configs live in: # github.com/beltromatti/agentchain/tree/main/deploy
Anyone can run a public RPC. The Noesis-operated api.agentchain.noesisai.it is the first; more are welcome. There is no central registry, no whitelist, no permission.