Check balances and prices
Query wallet balances, spot prices, and token metadata without submitting transactions.
Ask your agent
You (to your agent): "What's my USDC balance?"
You (to your agent): "What's the current price of ETH?"
You (to your agent): "Show me trending tokens"
Read-only queries like these do not require confirmation before your agent runs them.
Commands
-
Confirm your wallet address:
mm wallet address -
Query balances, prices, or token lists using the commands in the following sections.
Wallet balance
mm wallet balance
mm wallet balance --chain-ids 8453
mm wallet balance --token USDC
If --token with a symbol returns no balance or an error, pass the ERC-20 contract address for that
chain. Run mm token list search <symbol> --chain-ids <chain-id> to look up the address.
Spot prices
mm price spot --asset-ids <ASSET_IDS> --vs USD
mm price currencies
mm price networks
--asset-ids takes comma-separated CAIP-19 asset IDs. To price a chain's native asset, pass the
bare CAIP-2 chain ID and the CLI resolves it for you, so eip155:1 becomes eip155:1/slip44:60:
mm price spot --asset-ids eip155:1,eip155:8453 --vs USD
Use mm token assets to resolve asset identifiers for tokens you care about.
Historical prices
mm price history --chain-id eip155:1 --time-period 7d
mm price history --chain-id eip155:1 --asset-type erc20:0x<ADDRESS> --time-period 30d
--asset-type is optional and defaults to the chain's native asset.
Token discovery
mm token list popular --chain-id ethereum
mm token list search uniswap --chain-ids ethereum
mm token list trending --chain-id base
mm token networks
Supported chains
mm chains list
Transaction history
List recent transactions for your wallets:
mm tx history
mm tx history --chain-ids 1,8453 --limit 20
mm tx history --type out
Related commands
See Commands reference for mm wallet balance, mm price, mm token,
and mm tx history.