Check Balance
Use this skill to inspect the wallet's holdings. By default, it checks the Base network, but can be directed to others.
Hard Rules (CRITICAL)
- •Chain Specification:
- •If the user mentions a specific chain (e.g., "on Monad", "for my Citrea wallet"), you MUST include the
--chain <name>parameter. - •If the user DOES NOT mention a chain, you MUST either:
- •Explicitly state the default: "I will check your balance on Base. Is that correct?"
- •OR ask for clarification: "Which chain would you like to check? Base, Citrea, HyperEVM, or Monad?"
- •If the user mentions a specific chain (e.g., "on Monad", "for my Citrea wallet"), you MUST include the
usage
bash
npx fibx balance [--chain <chain>] [--json]
Options
| Option | Description |
|---|---|
--chain <network> | Network to check: base, citrea, hyperevm, monad. Default: base. |
--json | Output results in JSON format. |
Examples
Check Base Balance (Default)
bash
npx fibx balance
Check Monad Balance
bash
npx fibx balance --chain monad
Get Raw Data
bash
npx fibx balance --json
Error Handling
- •"Not authenticated": Run
authenticate-walletskill. - •"Network error": Retry the command once.