Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Query wallet addresses and on-chain balances on OpenAnt. Use when the agent or user wants to check wallet address, view balance, see how much SOL or ETH they...
Query wallet addresses and on-chain balances on OpenAnt. Use when the agent or user wants to check wallet address, view balance, see how much SOL or ETH they...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Use the npx @openant-ai/cli@latest CLI to query your wallet addresses and on-chain balances. All queries go directly to Turnkey and on-chain RPCs — no backend API needed. Always append --json to every command for structured, parseable output.
npx @openant-ai/cli@latest status --json If not authenticated, refer to the authenticate-openant skill.
npx @openant-ai/cli@latest wallet addresses --json Returns all wallet addresses (Solana + EVM) managed by Turnkey: { "success": true, "data": { "addresses": [ { "chain": "Solana", "address": "7xK...abc", "addressFormat": "ADDRESS_FORMAT_SOLANA" }, { "chain": "EVM (Base)", "address": "0xAb...12", "addressFormat": "ADDRESS_FORMAT_ETHEREUM" } ] } }
npx @openant-ai/cli@latest wallet balance --json Returns SOL balance, SPL token balances (USDC auto-detected), EVM native balance, and Base USDC balance: { "success": true, "data": { "solana": { "address": "7xK...abc", "sol": 1.500000000, "tokens": [ { "mint": "4zMM...DU", "symbol": "USDC", "uiAmount": 500.0, "decimals": 6 } ] }, "evm": { "address": "0xAb...12", "eth": 0.050000, "weiBalance": "50000000000000000", "usdc": 100.50 } } }
npx @openant-ai/cli@latest wallet balance --solana-rpc https://api.mainnet-beta.solana.com --json npx @openant-ai/cli@latest wallet balance --evm-rpc https://mainnet.base.org --json
CommandPurposenpx @openant-ai/cli@latest wallet addresses --jsonList all Turnkey wallet addresses (Solana + EVM)npx @openant-ai/cli@latest wallet balance --jsonOn-chain balances for all walletsnpx @openant-ai/cli@latest wallet balance --solana-rpc <url> --jsonSolana balance with custom RPCnpx @openant-ai/cli@latest wallet balance --evm-rpc <url> --jsonEVM balance with custom RPC
# Quick balance check npx @openant-ai/cli@latest wallet balance --json # Get addresses to share for receiving payments npx @openant-ai/cli@latest wallet addresses --json # Check if you have enough USDC before creating a task npx @openant-ai/cli@latest wallet balance --json # -> Inspect data.solana.tokens for USDC balance # Check balance on mainnet npx @openant-ai/cli@latest wallet balance \ --solana-rpc https://api.mainnet-beta.solana.com \ --evm-rpc https://mainnet.base.org \ --json
All wallet commands are read-only queries — execute immediately without user confirmation.
Must be authenticated (npx @openant-ai/cli@latest status --json to check) Turnkey credentials are stored locally after login — no backend needed
"No Turnkey credentials found" — Run npx @openant-ai/cli@latest login first, see authenticate-openant skill "Balance query failed" — RPC may be unreachable; try --solana-rpc or --evm-rpc "No wallet accounts found" — Wallets are created at signup; try re-logging in
Data access, storage, extraction, analysis, reporting, and insight generation.
Largest current source with strong distribution and engagement signals.