Agent skill

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>".

binancegithub.com/binanceGitHub ↗
claude-codeships scripts
Install
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.

Facts
Files in the skill folder: 3
SKILL.md size: 2 KB
Bundled scripts: yes
Version: 2.0
Declared author: binance-web3-team
Path: skills/binance-web3/query-address-info/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 947
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Supported Chains
  4. How to Call APIs
  5. Commands
  6. Rules
  7. Full CLI Reference
Ships with 2 files
  • references/cli.md
  • scripts/cli.mjs
Commands it runs
node <skill-dir>/scripts/cli.mjs positions '{"address":"0x...","chainId":"56","offset":0}'
More from binance-skills-hub
All skills →
About this skill
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.

Keep going