{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bank-skills",
    "name": "Bank Skills",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/singularityhacker/bank-skills",
    "canonicalUrl": "https://clawhub.ai/singularityhacker/bank-skills",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bank-skills",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bank-skills",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "bankskills/core/bank/handler.py",
      "bankskills/core/bank/credentials.py",
      "bankskills/core/bank/client.py",
      "bankskills/core/bank/__init__.py",
      "bankskills/core/bank/transfer.py",
      "bankskills/core/bank/balances.py"
    ],
    "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/bank-skills"
    },
    "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/bank-skills",
    "agentPageUrl": "https://openagent3.xyz/skills/bank-skills/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bank-skills/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bank-skills/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": "Purpose",
        "body": "Gives AI agents traditional banking capabilities (via Wise API) and on-chain token operations (via Uniswap on Base). Agents can check balances, send money, retrieve account details, create Ethereum wallets, swap tokens, and send tokens—all through a single skill."
      },
      {
        "title": "Prerequisites",
        "body": "For Banking (Wise API):\n\nWISE_API_TOKEN environment variable (required)\nOptional: WISE_PROFILE_ID (defaults to first available profile)\n\nFor Token Operations (Base Network):\n\nOptional: CLAWBANK_WALLET_PASSWORD (wallet keystore password, defaults to \"clawbank-default\")\nOptional: BASE_RPC_URL (Base RPC endpoint, defaults to https://mainnet.base.org)"
      },
      {
        "title": "Banking Operations (Wise API)",
        "body": "1. Check Balance\n\nPurpose: Query Wise multi-currency balances for the configured profile.\n\nInputs:\n\naction: \"balance\" (required)\ncurrency: Currency code filter, e.g. \"USD\" (optional — returns all if omitted)\n\nOutputs:\n\nJSON array of balance objects, each with currency, amount, and reservedAmount\n\nUsage:\n\necho '{\"action\": \"balance\"}' | ./run.sh\necho '{\"action\": \"balance\", \"currency\": \"USD\"}' | ./run.sh\n\nExample output:\n\n{\n  \"success\": true,\n  \"balances\": [\n    {\"currency\": \"USD\", \"amount\": 1250.00, \"reservedAmount\": 0.00},\n    {\"currency\": \"EUR\", \"amount\": 500.75, \"reservedAmount\": 10.00}\n  ]\n}\n\n2. Get Receive Details\n\nPurpose: Retrieve account number, routing number, IBAN, and related info so others can send you payments.\n\nInputs:\n\naction: \"receive-details\" (required)\ncurrency: Currency code, e.g. \"USD\" (optional — returns all if omitted)\n\nOutputs:\n\nJSON object with account holder name, account number, routing number (or IBAN/SWIFT for non-USD), and bank name\n\nUsage:\n\necho '{\"action\": \"receive-details\"}' | ./run.sh\necho '{\"action\": \"receive-details\", \"currency\": \"USD\"}' | ./run.sh\n\nExample output:\n\n{\n  \"success\": true,\n  \"details\": [\n    {\n      \"currency\": \"USD\",\n      \"accountHolder\": \"Your Business Name\",\n      \"accountNumber\": \"1234567890\",\n      \"routingNumber\": \"026073150\",\n      \"bankName\": \"Community Federal Savings Bank\"\n    }\n  ]\n}\n\n3. Send Money\n\nPurpose: Initiate a transfer from your Wise balance to a recipient.\n\nInputs:\n\naction: \"send\" (required)\nsourceCurrency: Source currency code, e.g. \"USD\" (required)\ntargetCurrency: Target currency code, e.g. \"EUR\" (required)\namount: Amount to send as a number (required)\nrecipientName: Full name of the recipient (required)\nrecipientAccount: Recipient account number or IBAN (required)\n\nAdditional fields for USD ACH transfers:\n\nrecipientRoutingNumber: 9-digit ABA routing number (required)\nrecipientCountry: Two-letter country code, e.g. \"US\" (required)\nrecipientAddress: Street address (required)\nrecipientCity: City (required)\nrecipientState: State code, e.g. \"NY\" (required)\nrecipientPostCode: ZIP/postal code (required)\nrecipientAccountType: \"CHECKING\" or \"SAVINGS\" (optional, defaults to \"CHECKING\")\n\nOutputs:\n\nJSON object with transfer ID, status, and confirmation details\n\nUSD ACH Transfer Example:\n\necho '{\n  \"action\": \"send\",\n  \"sourceCurrency\": \"USD\",\n  \"targetCurrency\": \"USD\",\n  \"amount\": 100.00,\n  \"recipientName\": \"John Smith\",\n  \"recipientAccount\": \"123456789\",\n  \"recipientRoutingNumber\": \"111000025\",\n  \"recipientCountry\": \"US\",\n  \"recipientAddress\": \"123 Main St\",\n  \"recipientCity\": \"New York\",\n  \"recipientState\": \"NY\",\n  \"recipientPostCode\": \"10001\",\n  \"recipientAccountType\": \"CHECKING\"\n}' | ./run.sh\n\nEUR IBAN Transfer Example (simpler):\n\necho '{\n  \"action\": \"send\",\n  \"sourceCurrency\": \"USD\",\n  \"targetCurrency\": \"EUR\",\n  \"amount\": 100.00,\n  \"recipientName\": \"Jane Doe\",\n  \"recipientAccount\": \"DE89370400440532013000\"\n}' | ./run.sh\n\nExample output:\n\n{\n  \"success\": true,\n  \"transfer\": {\n    \"id\": 12345678,\n    \"status\": \"processing\",\n    \"sourceAmount\": 100.00,\n    \"sourceCurrency\": \"USD\",\n    \"targetAmount\": 93.50,\n    \"targetCurrency\": \"EUR\"\n  }\n}"
      },
      {
        "title": "Token Operations (Base Network)",
        "body": "4. Create Wallet\n\nPurpose: Generate a new Ethereum wallet for token operations on Base.\n\nInputs:\n\naction: \"create-wallet\" (required)\n\nOutputs:\n\nWallet address (keystore saved to ~/.clawbank/wallet.json)\n\nUsage:\n\necho '{\"action\": \"create-wallet\"}' | ./run.sh\n\n5. Get Wallet\n\nPurpose: Get current wallet address and ETH balance on Base.\n\nInputs:\n\naction: \"get-wallet\" (required)\n\nOutputs:\n\nWallet address and ETH balance\n\nUsage:\n\necho '{\"action\": \"get-wallet\"}' | ./run.sh\n\n6. Set Target Token\n\nPurpose: Set the target token address for swaps.\n\nInputs:\n\naction: \"set-target-token\" (required)\ntokenAddress: ERC-20 contract address on Base (required)\n\nUsage:\n\necho '{\"action\": \"set-target-token\", \"tokenAddress\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\"}' | ./run.sh\n\n7. Get Sweep Config\n\nPurpose: View current target token and swap history.\n\nInputs:\n\naction: \"get-sweep-config\" (required)\n\nUsage:\n\necho '{\"action\": \"get-sweep-config\"}' | ./run.sh\n\n8. Get Token Balance\n\nPurpose: Check ERC-20 token balance for the wallet.\n\nInputs:\n\naction: \"get-token-balance\" (required)\ntokenAddress: ERC-20 contract address (required)\n\nUsage:\n\necho '{\"action\": \"get-token-balance\", \"tokenAddress\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\"}' | ./run.sh\n\n9. Buy Token\n\nPurpose: Swap ETH for any token on Base via Uniswap (universal V3+V4 support).\n\nInputs:\n\naction: \"buy-token\" (required)\namountEth: Amount of ETH to swap (required)\n\nOutputs:\n\nTransaction hash, amount in, amount out, status\n\nUsage:\n\necho '{\"action\": \"buy-token\", \"amountEth\": 0.001}' | ./run.sh\n\nSupported tokens: Any ERC-20 with WETH liquidity on Base (USDC, DAI, WBTC, ClawBank, etc.)\n\n10. Send Token\n\nPurpose: Send ERC-20 tokens or native ETH from the wallet.\n\nInputs:\n\naction: \"send-token\" (required)\ntokenAddress: ERC-20 contract address, or \"ETH\" for native ETH (required)\ntoAddress: Recipient wallet address (required)\namount: Amount to send in token units (required)\n\nUsage:\n\necho '{\"action\": \"send-token\", \"tokenAddress\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\", \"toAddress\": \"0x...\", \"amount\": 5.0}' | ./run.sh\n\n11. Export Private Key\n\nPurpose: Export wallet's private key for recovery or import.\n\nInputs:\n\naction: \"export-private-key\" (required)\n\nOutputs:\n\nPrivate key (hex string) and wallet address\n\nUsage:\n\necho '{\"action\": \"export-private-key\"}' | ./run.sh"
      },
      {
        "title": "Failure Modes",
        "body": "Banking Operations:\n\nMissing WISE_API_TOKEN: Returns {\"success\": false, \"error\": \"WISE_API_TOKEN environment variable is not set\"}. Set the token and retry.\nInvalid API token: Returns {\"success\": false, \"error\": \"Authentication failed — check your WISE_API_TOKEN\"}.\nInsufficient funds: Returns {\"success\": false, \"error\": \"Insufficient funds in USD balance\"}. Check balance before retrying.\nInvalid recipient details: Returns {\"success\": false, \"error\": \"Invalid recipient account details\"}.\n\nToken Operations:\n\nNo wallet: Returns {\"success\": false, \"error\": \"Wallet does not exist. Call create-wallet first\"}.\nInsufficient ETH: Returns {\"success\": false, \"error\": \"Insufficient balance. Have X ETH, need Y + 0.001 for gas\"}.\nNo target token set: Returns {\"success\": false, \"error\": \"No target token set. Call set-target-token first\"}.\nNo liquidity pool: Returns {\"success\": false, \"error\": \"No liquidity pool found for [token]\"}.\nUnknown action: Returns {\"success\": false, \"error\": \"Unknown action: <action>\"}. See Operations section for valid actions."
      },
      {
        "title": "When to Use",
        "body": "Banking: Check balances, send international transfers, share account details for receiving payments\n\nToken Operations: Create wallets, swap tokens on Base (any token with Uniswap liquidity), send tokens, track balances"
      },
      {
        "title": "When Not to Use",
        "body": "Do not use Wise for crypto on/off-ramps (Wise restricts crypto)\nDo not use with accounts holding significant funds (R&D only)\nToken operations require Base network access and ETH for gas"
      },
      {
        "title": "Technical Details",
        "body": "Token Swap Implementation:\n\nHybrid V3+V4 routing (tries V3 first, falls back to V4 for tokens with hooks)\nSupports any token with WETH liquidity on Base\nAutomatic fee tier detection (0.05%, 0.3%, 1%)\nGas costs: ~250k (V3) or ~450k (V4)\n\nSecurity:\n\nWallet keystore encrypted with password\nPrivate keys never logged or exposed\nAll transactions signed locally\nNo external API calls for token operations (direct blockchain interaction)"
      }
    ],
    "body": "Bank Skill\nPurpose\n\nGives AI agents traditional banking capabilities (via Wise API) and on-chain token operations (via Uniswap on Base). Agents can check balances, send money, retrieve account details, create Ethereum wallets, swap tokens, and send tokens—all through a single skill.\n\nPrerequisites\n\nFor Banking (Wise API):\n\nWISE_API_TOKEN environment variable (required)\nOptional: WISE_PROFILE_ID (defaults to first available profile)\n\nFor Token Operations (Base Network):\n\nOptional: CLAWBANK_WALLET_PASSWORD (wallet keystore password, defaults to \"clawbank-default\")\nOptional: BASE_RPC_URL (Base RPC endpoint, defaults to https://mainnet.base.org)\nOperations\nBanking Operations (Wise API)\n1. Check Balance\n\nPurpose: Query Wise multi-currency balances for the configured profile.\n\nInputs:\n\naction: \"balance\" (required)\ncurrency: Currency code filter, e.g. \"USD\" (optional — returns all if omitted)\n\nOutputs:\n\nJSON array of balance objects, each with currency, amount, and reservedAmount\n\nUsage:\n\necho '{\"action\": \"balance\"}' | ./run.sh\necho '{\"action\": \"balance\", \"currency\": \"USD\"}' | ./run.sh\n\n\nExample output:\n\n{\n  \"success\": true,\n  \"balances\": [\n    {\"currency\": \"USD\", \"amount\": 1250.00, \"reservedAmount\": 0.00},\n    {\"currency\": \"EUR\", \"amount\": 500.75, \"reservedAmount\": 10.00}\n  ]\n}\n\n2. Get Receive Details\n\nPurpose: Retrieve account number, routing number, IBAN, and related info so others can send you payments.\n\nInputs:\n\naction: \"receive-details\" (required)\ncurrency: Currency code, e.g. \"USD\" (optional — returns all if omitted)\n\nOutputs:\n\nJSON object with account holder name, account number, routing number (or IBAN/SWIFT for non-USD), and bank name\n\nUsage:\n\necho '{\"action\": \"receive-details\"}' | ./run.sh\necho '{\"action\": \"receive-details\", \"currency\": \"USD\"}' | ./run.sh\n\n\nExample output:\n\n{\n  \"success\": true,\n  \"details\": [\n    {\n      \"currency\": \"USD\",\n      \"accountHolder\": \"Your Business Name\",\n      \"accountNumber\": \"1234567890\",\n      \"routingNumber\": \"026073150\",\n      \"bankName\": \"Community Federal Savings Bank\"\n    }\n  ]\n}\n\n3. Send Money\n\nPurpose: Initiate a transfer from your Wise balance to a recipient.\n\nInputs:\n\naction: \"send\" (required)\nsourceCurrency: Source currency code, e.g. \"USD\" (required)\ntargetCurrency: Target currency code, e.g. \"EUR\" (required)\namount: Amount to send as a number (required)\nrecipientName: Full name of the recipient (required)\nrecipientAccount: Recipient account number or IBAN (required)\n\nAdditional fields for USD ACH transfers:\n\nrecipientRoutingNumber: 9-digit ABA routing number (required)\nrecipientCountry: Two-letter country code, e.g. \"US\" (required)\nrecipientAddress: Street address (required)\nrecipientCity: City (required)\nrecipientState: State code, e.g. \"NY\" (required)\nrecipientPostCode: ZIP/postal code (required)\nrecipientAccountType: \"CHECKING\" or \"SAVINGS\" (optional, defaults to \"CHECKING\")\n\nOutputs:\n\nJSON object with transfer ID, status, and confirmation details\n\nUSD ACH Transfer Example:\n\necho '{\n  \"action\": \"send\",\n  \"sourceCurrency\": \"USD\",\n  \"targetCurrency\": \"USD\",\n  \"amount\": 100.00,\n  \"recipientName\": \"John Smith\",\n  \"recipientAccount\": \"123456789\",\n  \"recipientRoutingNumber\": \"111000025\",\n  \"recipientCountry\": \"US\",\n  \"recipientAddress\": \"123 Main St\",\n  \"recipientCity\": \"New York\",\n  \"recipientState\": \"NY\",\n  \"recipientPostCode\": \"10001\",\n  \"recipientAccountType\": \"CHECKING\"\n}' | ./run.sh\n\n\nEUR IBAN Transfer Example (simpler):\n\necho '{\n  \"action\": \"send\",\n  \"sourceCurrency\": \"USD\",\n  \"targetCurrency\": \"EUR\",\n  \"amount\": 100.00,\n  \"recipientName\": \"Jane Doe\",\n  \"recipientAccount\": \"DE89370400440532013000\"\n}' | ./run.sh\n\n\nExample output:\n\n{\n  \"success\": true,\n  \"transfer\": {\n    \"id\": 12345678,\n    \"status\": \"processing\",\n    \"sourceAmount\": 100.00,\n    \"sourceCurrency\": \"USD\",\n    \"targetAmount\": 93.50,\n    \"targetCurrency\": \"EUR\"\n  }\n}\n\nToken Operations (Base Network)\n4. Create Wallet\n\nPurpose: Generate a new Ethereum wallet for token operations on Base.\n\nInputs:\n\naction: \"create-wallet\" (required)\n\nOutputs:\n\nWallet address (keystore saved to ~/.clawbank/wallet.json)\n\nUsage:\n\necho '{\"action\": \"create-wallet\"}' | ./run.sh\n\n5. Get Wallet\n\nPurpose: Get current wallet address and ETH balance on Base.\n\nInputs:\n\naction: \"get-wallet\" (required)\n\nOutputs:\n\nWallet address and ETH balance\n\nUsage:\n\necho '{\"action\": \"get-wallet\"}' | ./run.sh\n\n6. Set Target Token\n\nPurpose: Set the target token address for swaps.\n\nInputs:\n\naction: \"set-target-token\" (required)\ntokenAddress: ERC-20 contract address on Base (required)\n\nUsage:\n\necho '{\"action\": \"set-target-token\", \"tokenAddress\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\"}' | ./run.sh\n\n7. Get Sweep Config\n\nPurpose: View current target token and swap history.\n\nInputs:\n\naction: \"get-sweep-config\" (required)\n\nUsage:\n\necho '{\"action\": \"get-sweep-config\"}' | ./run.sh\n\n8. Get Token Balance\n\nPurpose: Check ERC-20 token balance for the wallet.\n\nInputs:\n\naction: \"get-token-balance\" (required)\ntokenAddress: ERC-20 contract address (required)\n\nUsage:\n\necho '{\"action\": \"get-token-balance\", \"tokenAddress\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\"}' | ./run.sh\n\n9. Buy Token\n\nPurpose: Swap ETH for any token on Base via Uniswap (universal V3+V4 support).\n\nInputs:\n\naction: \"buy-token\" (required)\namountEth: Amount of ETH to swap (required)\n\nOutputs:\n\nTransaction hash, amount in, amount out, status\n\nUsage:\n\necho '{\"action\": \"buy-token\", \"amountEth\": 0.001}' | ./run.sh\n\n\nSupported tokens: Any ERC-20 with WETH liquidity on Base (USDC, DAI, WBTC, ClawBank, etc.)\n\n10. Send Token\n\nPurpose: Send ERC-20 tokens or native ETH from the wallet.\n\nInputs:\n\naction: \"send-token\" (required)\ntokenAddress: ERC-20 contract address, or \"ETH\" for native ETH (required)\ntoAddress: Recipient wallet address (required)\namount: Amount to send in token units (required)\n\nUsage:\n\necho '{\"action\": \"send-token\", \"tokenAddress\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\", \"toAddress\": \"0x...\", \"amount\": 5.0}' | ./run.sh\n\n11. Export Private Key\n\nPurpose: Export wallet's private key for recovery or import.\n\nInputs:\n\naction: \"export-private-key\" (required)\n\nOutputs:\n\nPrivate key (hex string) and wallet address\n\nUsage:\n\necho '{\"action\": \"export-private-key\"}' | ./run.sh\n\nFailure Modes\n\nBanking Operations:\n\nMissing WISE_API_TOKEN: Returns {\"success\": false, \"error\": \"WISE_API_TOKEN environment variable is not set\"}. Set the token and retry.\nInvalid API token: Returns {\"success\": false, \"error\": \"Authentication failed — check your WISE_API_TOKEN\"}.\nInsufficient funds: Returns {\"success\": false, \"error\": \"Insufficient funds in USD balance\"}. Check balance before retrying.\nInvalid recipient details: Returns {\"success\": false, \"error\": \"Invalid recipient account details\"}.\n\nToken Operations:\n\nNo wallet: Returns {\"success\": false, \"error\": \"Wallet does not exist. Call create-wallet first\"}.\nInsufficient ETH: Returns {\"success\": false, \"error\": \"Insufficient balance. Have X ETH, need Y + 0.001 for gas\"}.\nNo target token set: Returns {\"success\": false, \"error\": \"No target token set. Call set-target-token first\"}.\nNo liquidity pool: Returns {\"success\": false, \"error\": \"No liquidity pool found for [token]\"}.\nUnknown action: Returns {\"success\": false, \"error\": \"Unknown action: <action>\"}. See Operations section for valid actions.\nWhen to Use\n\nBanking: Check balances, send international transfers, share account details for receiving payments\n\nToken Operations: Create wallets, swap tokens on Base (any token with Uniswap liquidity), send tokens, track balances\n\nWhen Not to Use\nDo not use Wise for crypto on/off-ramps (Wise restricts crypto)\nDo not use with accounts holding significant funds (R&D only)\nToken operations require Base network access and ETH for gas\nTechnical Details\n\nToken Swap Implementation:\n\nHybrid V3+V4 routing (tries V3 first, falls back to V4 for tokens with hooks)\nSupports any token with WETH liquidity on Base\nAutomatic fee tier detection (0.05%, 0.3%, 1%)\nGas costs: ~250k (V3) or ~450k (V4)\n\nSecurity:\n\nWallet keystore encrypted with password\nPrivate keys never logged or exposed\nAll transactions signed locally\nNo external API calls for token operations (direct blockchain interaction)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/singularityhacker/bank-skills",
    "publisherUrl": "https://clawhub.ai/singularityhacker/bank-skills",
    "owner": "singularityhacker",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bank-skills",
    "downloadUrl": "https://openagent3.xyz/downloads/bank-skills",
    "agentUrl": "https://openagent3.xyz/skills/bank-skills/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bank-skills/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bank-skills/agent.md"
  }
}