OpenClaw skill for registering and operating AI Agents on the Axon blockchain — an AI Agent Native L1 (Cosmos SDK + EVM, Chain ID 9001).
- Register an EVM address as an on-chain Agent (100 AXON stake)
- Check agent status (isAgent, ONLINE, reputation score)
- Deploy the heartbeat daemon to maintain ONLINE status
- Watchdog cron to auto-restart the daemon if it crashes
clawhub install axon-agent- Python 3.8+ (
pip install web3) - Go 1.21+ (for building the daemon)
- EVM wallet with at least 120 AXON (100 stake + 20 burned + gas)
# Check balance and registration status
python3 scripts/check-status.py --private-key-file /path/to/private_key.txt
# Register (dry run first)
python3 scripts/register.py \
--private-key-file /path/to/private_key.txt \
--capabilities "nlp,reasoning,coding" \
--model "claude-sonnet-4.6" \
--dry-run
# Real registration
python3 scripts/register.py \
--private-key-file /path/to/private_key.txt \
--capabilities "nlp,reasoning,coding" \
--model "claude-sonnet-4.6"- The official Python SDK has an ABI mismatch bug — this skill bypasses it with a correct direct call
- First heartbeat is available ~720 blocks (~1 hour) after registration
- See
references/known-issues.mdfor full troubleshooting guide
- Axon official repo: https://github.com/axon-chain/axon
- This skill on ClawHub: https://clawhub.ai/skills/axon-agent
- Skill source: https://github.com/6tizer/axon-agent