ChainWard — AI Agent Wallet Monitoring
Monitor autonomous AI agent wallets on Base chain. Track transactions, gas spend, balances, and get alerts when something goes wrong.
Setup
If chainward status fails with an auth error, run login first:
CODEBLOCK0
The API key is entered interactively. Users get one at chainward.ai → Settings → Generate Key.
Commands
Fleet overview
CODEBLOCK1
Shows total agents, 24h transaction count, gas spend, and portfolio value.
List agents
CODEBLOCK2
Shows all monitored agents with name, address, chain, current balance, and last transaction time.
Register a wallet
CODEBLOCK3
Starts monitoring a Base wallet address. The --name flag is optional. If the address is a contract, the CLI will prompt for confirmation.
Remove a wallet
CODEBLOCK4
Stops monitoring the wallet. Prompts for confirmation.
View transactions
CODEBLOCK5
Lists recent transactions across all agents or filtered to one. Shows time, agent, direction, token, amount, gas cost, and tx hash.
Alert summary
CODEBLOCK6
Shows all configured alert rules with agent, type, threshold, delivery channels, and status (active/paused).
Create an alert
CODEBLOCK7
Interactive wizard — selects agent, alert type (largetransfer, balancedrop, gasspike, failedtx, inactivity, newcontract, idlebalance), threshold, and delivery channel (Discord, Telegram, or webhook).
Watch live feed
CODEBLOCK8
Streams new transactions in real time (polls every 5s). Press Ctrl+C to stop. Use --agent to filter to a single wallet.
Tips
- - All monetary values are in USD
- Transaction hashes link to Basescan when your terminal supports hyperlinks
- The CLI stores config at INLINECODE3
- Base chain only (for now)
ChainWard — AI代理钱包监控
监控Base链上的自主AI代理钱包。追踪交易、Gas消耗、余额,并在出现异常时发送警报。
设置
如果 chainward status 因认证错误失败,请先运行登录命令:
bash
chainward login
API密钥以交互方式输入。用户可在 chainward.ai → 设置 → 生成密钥 处获取。
命令
概览
bash
chainward status
显示代理总数、24小时交易数、Gas消耗和投资组合价值。
列出代理
bash
chainward agents list
显示所有受监控代理的名称、地址、链、当前余额和最后交易时间。
注册钱包
bash
chainward agents add <地址> --name 代理名称
开始监控一个Base钱包地址。--name 参数为可选项。如果地址是合约地址,CLI将提示确认。
移除钱包
bash
chainward agents remove <地址>
停止监控该钱包。会提示确认。
查看交易
bash
chainward txs --limit 20
chainward txs --agent 0x1234... --limit 50
列出所有代理或单个代理的近期交易。显示时间、代理、方向、代币、数量、Gas费用和交易哈希。
警报摘要
bash
chainward alerts list
显示所有已配置的警报规则,包括代理、类型、阈值、投递渠道和状态(活跃/暂停)。
创建警报
bash
chainward alerts create
交互式向导——选择代理、警报类型(大额转账、余额下降、Gas飙升、交易失败、不活跃、新合约、闲置余额)、阈值和投递渠道(Discord、Telegram或Webhook)。
实时监控
bash
chainward watch
chainward watch --agent 0x1234...
实时流式显示新交易(每5秒轮询一次)。按Ctrl+C停止。使用 --agent 过滤单个钱包。
提示
- - 所有货币价值均以美元显示
- 当终端支持超链接时,交易哈希可链接到Basescan
- CLI将配置存储在 ~/.chainward/config.json
- 目前仅支持Base链