一键导入
tronscan-data-lookup
Query TRON blockchain data via the TronScan API — accounts, transactions, tokens, blocks, contracts, transfers, and chain statistics.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Query TRON blockchain data via the TronScan API — accounts, transactions, tokens, blocks, contracts, transfers, and chain statistics.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Execute token swaps, manage liquidity, and query market data on SunSwap DEX via the sun-cli.
Create meme tokens on SunPump (`sun sunpump launch`), trade them — both pre-launch (bonding curve via `sun sunpump buy/sell`) and post-launch (SunSwap via `sun swap`) — and query token info, rankings, holders, portfolios, and trade history.
Pay for x402-enabled Agent endpoints using ERC20 tokens (USDT/USDC) on EVM or TRC20 tokens (USDT/USDD) on TRON.
Use when the user asks to generate an X/Twitter daily digest or says phrases such as "生成X日报", "生成 x 日报", "X日报", "推特日报", "Twitter digest", or wants an agent to analyze their own X/Twitter mentions, home timeline, reply opportunities, and daily social-media summaries. This skill is API-only.
Use when the user wants to install or authorize xurl for X/Twitter, generate "生成X日报", "X日报", "推特日报", or "Twitter digest" from the local xurl CLI, or optionally register/troubleshoot the hosted X MCP bridge.
BANK OF AI account query and recharge skill. Use for requests like 'recharge 1 usdt', '给 BANK OF AI 充值 1 USDT', or to query BANK OF AI balance/orders. Recharge uses the remote MCP endpoint https://recharge.bankofai.io/mcp with the single `recharge` tool.
| name | TronScan Data Lookup |
| description | Query TRON blockchain data via the TronScan API — accounts, transactions, tokens, blocks, contracts, transfers, and chain statistics. |
| version | 1.0.0 |
| dependencies | ["axios"] |
| tags | ["blockchain","tron","tronscan","api","data","account","transaction","token","block","contract","transfer","analytics"] |
This skill enables AI agents to query the TRON blockchain through the TronScan API. It provides eight Node.js scripts that cover all major data lookup operations: universal search, account details, transactions, token info, blocks, smart contracts, transfer history, and chain-level statistics.
All scripts output structured JSON to stdout and log progress to stderr, following the bankofai skill conventions.
npm install in the skill root directory before first useIf no API key is configured, scripts automatically use the BofAI proxy (ts.bankofai.io) — no setup needed.
To use your own TronScan API key instead (higher rate limits), set the environment variable:
export TRONSCAN_API_KEY="your-api-key-here"
Get a free key at https://tronscan.org/#/myaccount/apiKeys
limit per request is 200 (some endpoints allow up to 500)start + limit must be <= 10,000 for paginated endpointsSearch across addresses, tokens, contracts, transactions, and blocks.
node scripts/search.js <term> [--type <type>] [--limit <n>]
Parameters:
| Param | Description | Values |
|---|---|---|
term | Search query (positional, required) | Any string |
--type | Filter result type | token, address, contract, transaction, block |
--limit | Max results | 1–50, default 20 |
When to use: When you have a partial name, address, hash, or need to identify what something is on TRON.
Look up account information, balances, token holdings, and resource usage.
node scripts/account.js <address> # Full account details
node scripts/account.js <address> --tokens [--limit <n>] # Token holdings
node scripts/account.js <address> --wallet # Portfolio with USD values
node scripts/account.js <address> --resources # Bandwidth & energy
node scripts/account.js <address> --analysis --type <0-4> # Daily analytics
Modes:
| Flag | Description |
|---|---|
| (none) | Full account detail (balance, creation date, permissions, witness status) |
--tokens | All token balances. Use --show 1 for TRC20 only, 2 for TRC721, 3 for all, 4 for TRC1155 |
--wallet | Portfolio view with USD-denominated values |
--resources | Bandwidth/energy allocation (Stake 2.0) |
--analysis | Daily analytics. --type: 0=balance, 1=transfers, 2=energy, 3=bandwidth, 4=transactions |
When to use: When a user asks about a TRON wallet's balance, token holdings, staking resources, or account history.
Retrieve individual transactions by hash or list transactions with filters.
node scripts/transaction.js <hash> # By hash
node scripts/transaction.js --list [--from <addr>] [--to <addr>] # Filtered list
node scripts/transaction.js --stats # Network stats
List options:
| Param | Description |
|---|---|
--from | Filter by sender address |
--to | Filter by receiver address |
--block | Filter by block number |
--start_timestamp | Start time (ms) |
--end_timestamp | End time (ms) |
--sort | Sort field (default: -timestamp) |
--limit | Results per page (default 20, max 200) |
--start | Pagination offset |
When to use: When a user wants to look up a specific transaction hash, or query recent transactions for an address.
Get token details, pricing, holder lists, supply data, and rankings.
node scripts/token.js --list [--filter <type>] [--sort <field>] # Token rankings
node scripts/token.js --trc20 <contract_address> # TRC20 detail
node scripts/token.js --trc10 <token_id> # TRC10 detail
node scripts/token.js --price [symbol] # Current price
node scripts/token.js --holders <contract_address> [--limit <n>] # Top holders
node scripts/token.js --supply <contract_address> # Total supply
node scripts/token.js --distribution <token_id> # Holdings distribution
List filters: trc10, trc20, trc721, trc1155, all, top
Sort fields: priceInTrx, gain, volume24hInTrx, holderCount, marketcap
When to use: When a user asks about a specific token (price, holders, supply), or wants to browse top tokens on TRON.
Query block details, recent blocks, or block statistics.
node scripts/block.js # Latest block
node scripts/block.js <number> # By block number
node scripts/block.js --list --limit <n> # Recent blocks
node scripts/block.js --producer <address> # By block producer
node scripts/block.js --stats # Network block stats
When to use: When a user wants to see the latest block, look up a specific block, or view block production statistics.
Look up contract info, energy usage, call statistics, and caller analytics.
node scripts/contract.js <address> # Contract detail
node scripts/contract.js --list [--search <term>] # Search/list contracts
node scripts/contract.js <address> --energy # Energy consumption
node scripts/contract.js <address> --calls # Call statistics
node scripts/contract.js <address> --callers # Caller list
node scripts/contract.js <address> --analysis --type <0-5> # Daily analytics
Analysis types: 0=callers, 1=calls, 2=energy, 3=bandwidth, 4=trx_transfers, 5=token_transfers
When to use: When a user asks about a smart contract's code verification status, usage, energy costs, or who is calling it.
Query TRX, TRC10, and TRC20 transfer history for addresses and contracts.
node scripts/transfer.js --trx <address> # TRX transfers
node scripts/transfer.js --trc20 <address> [--token <contract>] # TRC20 transfers
node scripts/transfer.js --trc10 <address> [--token <token_id>] # TRC10 transfers
node scripts/transfer.js --trc20-contract <contract> [--addr <addr>] # By contract
node scripts/transfer.js --internal <address> # Internal txns
Common options:
| Param | Description |
|---|---|
--direction | 0=all, 1=incoming, 2=outgoing |
--start_timestamp | Start time (ms) |
--end_timestamp | End time (ms) |
--limit | Results per page (default 20, max 200) |
When to use: When a user wants to see transfer history for a wallet — incoming/outgoing TRX, USDT, or other tokens.
Get high-level TRON network data, super representatives, governance, and market data.
node scripts/overview.js # Full chain dashboard
node scripts/overview.js --tps # Current transactions per second
node scripts/overview.js --witnesses # Super Representative list
node scripts/overview.js --params # Chain parameters
node scripts/overview.js --proposals # Governance proposals
node scripts/overview.js --daily-accounts [days] # New account growth
node scripts/overview.js --funds # TRX supply & burn data
node scripts/overview.js --trx-volume # TRX price/volume history
node scripts/overview.js --nodes # Network node map
When to use: When a user asks about TRON network health, TPS, super representatives, governance, TRX supply, or market data.
# Get full account info
node scripts/account.js TDqSquXBgUCLYvYC4XZgrprLK589dkhSCf
# Get token holdings with USD values
node scripts/account.js TDqSquXBgUCLYvYC4XZgrprLK589dkhSCf --wallet
node scripts/transaction.js 7f4a6d28e3c5f1b2a9d8e7c6b5a4f3e2d1c0b9a8f7e6d5c4b3a2f1e0d9c8b7a6
node scripts/token.js --price trx
node scripts/token.js --list --filter trc20 --sort marketcap --limit 10
node scripts/transfer.js --trc20 TDqSquXBgUCLYvYC4XZgrprLK589dkhSCf --token TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t --limit 10
node scripts/overview.js
All scripts handle errors consistently:
| Error | Cause | Solution |
|---|---|---|
Missing required argument | Required positional arg not provided | Check usage in script header |
Request failed with status 403 | API key invalid or rate limited | Check TRONSCAN_API_KEY, reduce request frequency |
Request failed with status 404 | Endpoint not found or invalid params | Verify address/hash format |
timeout of 15000ms exceeded | API server slow or unreachable | Retry after a few seconds |
ENOTFOUND | No network connectivity | Check internet connection |
Scripts exit with code 1 on error and output { "error": "message" } to stdout for machine parsing.
TRONSCAN_API_KEY environment variable and is never hardcodedts.bankofai.io) with no key headerThe resources/common_tokens.json file contains well-known mainnet token addresses. Key tokens:
| Symbol | Contract Address | Decimals |
|---|---|---|
| TRX | (native) | 6 |
| USDT | TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t | 6 |
| USDC | TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8 | 6 |
| USDD | TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn | 18 |
| WTRX | TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR | 6 |
| BTT | TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4 | 18 |
| JST | TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9 | 18 |
| SUN | TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S | 18 |
Agents can use these addresses directly instead of searching for them.
Version 1.0.0 — Created by M2M Agent Registry for Bank of AI