{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/check-wallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=check-wallet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/check-wallet",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Checking Wallet Addresses & Balances",
        "body": "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.\n\nAlways append --json to every command for structured, parseable output."
      },
      {
        "title": "Confirm wallet is initialized and authed",
        "body": "npx @openant-ai/cli@latest status --json\n\nIf not authenticated, refer to the authenticate-openant skill."
      },
      {
        "title": "List Wallet Addresses",
        "body": "npx @openant-ai/cli@latest wallet addresses --json\n\nReturns all wallet addresses (Solana + EVM) managed by Turnkey:\n\n{\n  \"success\": true,\n  \"data\": {\n    \"addresses\": [\n      { \"chain\": \"Solana\", \"address\": \"7xK...abc\", \"addressFormat\": \"ADDRESS_FORMAT_SOLANA\" },\n      { \"chain\": \"EVM (Base)\", \"address\": \"0xAb...12\", \"addressFormat\": \"ADDRESS_FORMAT_ETHEREUM\" }\n    ]\n  }\n}"
      },
      {
        "title": "Query On-Chain Balances",
        "body": "npx @openant-ai/cli@latest wallet balance --json\n\nReturns SOL balance, SPL token balances (USDC auto-detected), EVM native balance, and Base USDC balance:\n\n{\n  \"success\": true,\n  \"data\": {\n    \"solana\": {\n      \"address\": \"7xK...abc\",\n      \"sol\": 1.500000000,\n      \"tokens\": [\n        { \"mint\": \"4zMM...DU\", \"symbol\": \"USDC\", \"uiAmount\": 500.0, \"decimals\": 6 }\n      ]\n    },\n    \"evm\": {\n      \"address\": \"0xAb...12\",\n      \"eth\": 0.050000,\n      \"weiBalance\": \"50000000000000000\",\n      \"usdc\": 100.50\n    }\n  }\n}"
      },
      {
        "title": "Custom RPC Endpoints",
        "body": "npx @openant-ai/cli@latest wallet balance --solana-rpc https://api.mainnet-beta.solana.com --json\nnpx @openant-ai/cli@latest wallet balance --evm-rpc https://mainnet.base.org --json"
      },
      {
        "title": "Available CLI Commands",
        "body": "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"
      },
      {
        "title": "Examples",
        "body": "# Quick balance check\nnpx @openant-ai/cli@latest wallet balance --json\n\n# Get addresses to share for receiving payments\nnpx @openant-ai/cli@latest wallet addresses --json\n\n# Check if you have enough USDC before creating a task\nnpx @openant-ai/cli@latest wallet balance --json\n# -> Inspect data.solana.tokens for USDC balance\n\n# Check balance on mainnet\nnpx @openant-ai/cli@latest wallet balance \\\n  --solana-rpc https://api.mainnet-beta.solana.com \\\n  --evm-rpc https://mainnet.base.org \\\n  --json"
      },
      {
        "title": "Autonomy",
        "body": "All wallet commands are read-only queries — execute immediately without user confirmation."
      },
      {
        "title": "Prerequisites",
        "body": "Must be authenticated (npx @openant-ai/cli@latest status --json to check)\nTurnkey credentials are stored locally after login — no backend needed"
      },
      {
        "title": "Error Handling",
        "body": "\"No Turnkey credentials found\" — Run npx @openant-ai/cli@latest login first, see authenticate-openant skill\n\"Balance query failed\" — RPC may be unreachable; try --solana-rpc or --evm-rpc\n\"No wallet accounts found\" — Wallets are created at signup; try re-logging in"
      }
    ],
    "body": "Checking Wallet Addresses & Balances\n\nUse 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.\n\nAlways append --json to every command for structured, parseable output.\n\nConfirm wallet is initialized and authed\nnpx @openant-ai/cli@latest status --json\n\n\nIf not authenticated, refer to the authenticate-openant skill.\n\nList Wallet Addresses\nnpx @openant-ai/cli@latest wallet addresses --json\n\n\nReturns all wallet addresses (Solana + EVM) managed by Turnkey:\n\n{\n  \"success\": true,\n  \"data\": {\n    \"addresses\": [\n      { \"chain\": \"Solana\", \"address\": \"7xK...abc\", \"addressFormat\": \"ADDRESS_FORMAT_SOLANA\" },\n      { \"chain\": \"EVM (Base)\", \"address\": \"0xAb...12\", \"addressFormat\": \"ADDRESS_FORMAT_ETHEREUM\" }\n    ]\n  }\n}\n\nQuery On-Chain Balances\nnpx @openant-ai/cli@latest wallet balance --json\n\n\nReturns SOL balance, SPL token balances (USDC auto-detected), EVM native balance, and Base USDC balance:\n\n{\n  \"success\": true,\n  \"data\": {\n    \"solana\": {\n      \"address\": \"7xK...abc\",\n      \"sol\": 1.500000000,\n      \"tokens\": [\n        { \"mint\": \"4zMM...DU\", \"symbol\": \"USDC\", \"uiAmount\": 500.0, \"decimals\": 6 }\n      ]\n    },\n    \"evm\": {\n      \"address\": \"0xAb...12\",\n      \"eth\": 0.050000,\n      \"weiBalance\": \"50000000000000000\",\n      \"usdc\": 100.50\n    }\n  }\n}\n\nCustom RPC Endpoints\nnpx @openant-ai/cli@latest wallet balance --solana-rpc https://api.mainnet-beta.solana.com --json\nnpx @openant-ai/cli@latest wallet balance --evm-rpc https://mainnet.base.org --json\n\nAvailable CLI Commands\nCommand\tPurpose\nnpx @openant-ai/cli@latest wallet addresses --json\tList all Turnkey wallet addresses (Solana + EVM)\nnpx @openant-ai/cli@latest wallet balance --json\tOn-chain balances for all wallets\nnpx @openant-ai/cli@latest wallet balance --solana-rpc <url> --json\tSolana balance with custom RPC\nnpx @openant-ai/cli@latest wallet balance --evm-rpc <url> --json\tEVM balance with custom RPC\nExamples\n# Quick balance check\nnpx @openant-ai/cli@latest wallet balance --json\n\n# Get addresses to share for receiving payments\nnpx @openant-ai/cli@latest wallet addresses --json\n\n# Check if you have enough USDC before creating a task\nnpx @openant-ai/cli@latest wallet balance --json\n# -> Inspect data.solana.tokens for USDC balance\n\n# Check balance on mainnet\nnpx @openant-ai/cli@latest wallet balance \\\n  --solana-rpc https://api.mainnet-beta.solana.com \\\n  --evm-rpc https://mainnet.base.org \\\n  --json\n\nAutonomy\n\nAll wallet commands are read-only queries — execute immediately without user confirmation.\n\nPrerequisites\nMust be authenticated (npx @openant-ai/cli@latest status --json to check)\nTurnkey credentials are stored locally after login — no backend needed\nError Handling\n\"No Turnkey credentials found\" — Run npx @openant-ai/cli@latest login first, see authenticate-openant skill\n\"Balance query failed\" — RPC may be unreachable; try --solana-rpc or --evm-rpc\n\"No wallet accounts found\" — Wallets are created at signup; try re-logging in"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ant-1984/check-wallet",
    "publisherUrl": "https://clawhub.ai/ant-1984/check-wallet",
    "owner": "ant-1984",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}