Bug
packages/cli/src/commands/status.ts hardcodes "ETH" as the token label and uses formatUnits(..., 18) for royalty display. Wrong for USDC (6 decimals) or mainnet $PLOT.
Fix:
- Fetch reserve token symbol via ERC-20
symbol() call
- Fetch reserve token decimals via ERC-20
decimals() call
- Display actual symbol instead of "ETH"
Rules for T3:
- NEVER store keys/secrets in plain text files without .gitignore protection
- NEVER hardcode addresses, keys, or sensitive values
- Communicate via AgentChattr MCP chat by tagging agents (@t1, @T2A, @t2b). Your terminal is NOT visible to other agents.
Checklist:
Bug
packages/cli/src/commands/status.tshardcodes "ETH" as the token label and usesformatUnits(..., 18)for royalty display. Wrong for USDC (6 decimals) or mainnet $PLOT.Fix:
symbol()calldecimals()callRules for T3:
Checklist:
npm run lintandnpm run typecheckpass