Check wallet balances and holdings. Use for "what's in my wallet", portfolio breakdown, token balances, allocation percentages, and USD values.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add jiayaoqijia/cryptoskill --skill moonpay-official-moonpay-check-wallet --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Moonpay Official Moonpay Check Wallet?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jiayaoqijia-moonpay-official-moonpay-check-wallet)More formats (shields.io, HTML) on the badges page.
---
name: moonpay-check-wallet
description: Check wallet balances and holdings. Use for "what's in my wallet", portfolio breakdown, token balances, allocation percentages, and USD values.
tags: [portfolio]
---
# Check wallet
## Goal
List all token balances in a wallet with USD values, allocation breakdown, and total portfolio value.
## Commands
```bash
# List balances for a Solana wallet
mp token balance list --wallet <address> --chain solana
# List balances for an EVM wallet
mp token balance list --wallet 0x... --chain ethereum
mp token balance list --wallet 0x... --chain base
# Find wallet address
mp wallet list
```
## Supported chains
`solana`, `ethereum`, `base`, `polygon`, `arbitrum`, `optimism`, `bnb`, `avalanche`, `tron`, `bitcoin`, `ton`
Bitcoin uses a separate command: `mp bitcoin balance retrieve --wallet <btc-address>`
## Workflow
1. Run `mp wallet list` to find the user's wallet address.
2. Run `mp token balance list --wallet <address> --chain solana`.
3. Sort holdings by USD value descending.
4. Calculate allocation percentages (each holding's USD / total USD).
5. Present: top holdings, dust balances, total value.
## Example flow
1. User: "What's in my wallet?" or "Generate a portfolio report."
2. Run: `mp token balance list --wallet <address> --chain solana`
3. Present:
- **Total value:** $168.05
- **SOL** — 0.61 ($51.87) — 30.9%
- **WBTC** — 0.00127 ($85.48) — 50.9%
- **USDC** — 29.81 ($29.81) — 17.7%
- **Dust:** none
## Output formats
Use `mp --json token balance list ...` for programmatic processing.
## Related skills
- **moonpay-auth** — Set up wallets if none exist.
- **moonpay-discover-tokens** — Research specific tokens in the portfolio.
- **moonpay-prediction-market** — Check prediction market positions and PnL.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!