# Send Check Wallet to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "check-wallet",
    "name": "Check Wallet",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/ant-1984/check-wallet",
    "canonicalUrl": "https://clawhub.ai/ant-1984/check-wallet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/check-wallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=check-wallet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "check-wallet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T14:30:05.754Z",
      "expiresAt": "2026-05-06T14:30:05.754Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=check-wallet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=check-wallet",
        "contentDisposition": "attachment; filename=\"check-wallet-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "check-wallet"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/check-wallet"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/check-wallet",
    "downloadUrl": "https://openagent3.xyz/downloads/check-wallet",
    "agentUrl": "https://openagent3.xyz/skills/check-wallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/check-wallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/check-wallet/agent.md"
  }
}
```
## Documentation

### Checking Wallet Addresses & Balances

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.

### Confirm wallet is initialized and authed

npx @openant-ai/cli@latest status --json

If not authenticated, refer to the authenticate-openant skill.

### List Wallet Addresses

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" }
    ]
  }
}

### Query On-Chain Balances

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
    }
  }
}

### Custom RPC Endpoints

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

### Available CLI Commands

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

### Examples

# 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

### Autonomy

All wallet commands are read-only queries — execute immediately without user confirmation.

### Prerequisites

Must be authenticated (npx @openant-ai/cli@latest status --json to check)
Turnkey credentials are stored locally after login — no backend needed

### Error Handling

"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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ant-1984
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T14:30:05.754Z
- Expires at: 2026-05-06T14:30:05.754Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/check-wallet)
- [Send to Agent page](https://openagent3.xyz/skills/check-wallet/agent)
- [JSON manifest](https://openagent3.xyz/skills/check-wallet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/check-wallet/agent.md)
- [Download page](https://openagent3.xyz/downloads/check-wallet)