query-address-info
Snapshot of a single wallet's token holdings on a specific chain — list of every token currently held with name, symbol, current price, 24h price change, and holding quantity. Use when the user provides an explicit wallet address (or says "my wallet") and wants the current portfolio: "what does 0x... hold", "wallet balance breakdown", "list positions for this address", "what tokens are in this wallet", "show me the holdings of <address>".
npx skills add binance/binance-skills-hub --skill query-address-info --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Query Address Info Skill ## Overview This skill queries any on-chain wallet address for token holdings, supporting: List of all tokens held by a wallet address Current price of each token 24-hour price change percentage Holding quantity ## When to Use This Skill | User intent | Command | |-------------|---------| | List a wallet's token holdings with price and 24h change | `positions` | ## Supported Chains | Chain | chainId | |-------|---------| | BSC | `56` | | Solana | `CT_501` | | Base | `8453` | | Ethereum | `1` | ## How to Call APIs ```bash node <skill-dir>/scripts/cli.mjs positions '{"address":"0x...","chainId":"56","offset":0}' ``` ## Commands | Command | Purpose | Required args | Example | |---------|---------|---------------|---------| | `positions` | List wallet token holdings (price + 24h change + quantity) | `address`, `chainId`, `offset` | `node <skill-dir>/scripts/cli.mjs positions '{"address":"0x...","chainId":"56","offset":0}'` | ## Rules - **`offset` is required on every call — including the first page.** Pass `0` to fetch the first page; increment for subsequent pages. Omitting it causes an upstream validation error. - **Pagination**: repeat with increasing `off
- Overview
- When to Use This Skill
- Supported Chains
- How to Call APIs
- Commands
- Rules
- Full CLI Reference
node <skill-dir>/scripts/cli.mjs positions '{"address":"0x...","chainId":"56","offset":0}'What does the query-address-info skill do?
Snapshot of a single wallet's token holdings on a specific chain — list of every token currently held with name, symbol, current price, 24h price change, and holding quantity. Use when the user provides an explicit wallet address (or says "my wallet") and wants the current portfolio: "what does 0x... hold", "wallet balance breakdown", "list positions for this address", "what tokens are in this wallet", "show me the holdings of <address>".
How do I install it?
Run `npx skills add binance/binance-skills-hub --skill query-address-info --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From binance/binance-skills-hub, a repository with 947 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
