cdcx-wallet-ops

A set of authenticated operations for managing cryptocurrency wallet funds, including deposits, withdrawals, supported networks, and transaction history.

In plain words
What is it for?
Use it to find deposit addresses, check supported networks and funding history, review balances, or request withdrawals to approved addresses.
Why use it?
It gives an agent defined wallet actions while separating ordinary lookups from sensitive and dangerous operations. Withdrawals require the right API permission and extra safeguards.

Skill for Claude CodeCodex

Part of the cdcx-cli plugin — 13 skills, 1 MCP server shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/crypto-com/cdcx-cli/cdcx-wallet-ops
Any agent
npx skills add crypto-com/cdcx-cli --skill cdcx-wallet-ops
Clone the repo
git clone --depth 1 https://github.com/crypto-com/cdcx-cli

Made for: Claude Code, Codex.

Or install cdcx-cli, the plugin that ships this one along with the rest of its 13 skills, 1 MCP server.

Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 833 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00027 $0.00833
Opus 5 $0.00014 $0.00417
Sonnet 5 $0.00005 $0.00167
Haiku 4.5 $0.00003 $0.00083

Measured 3d ago against content hash e191523d495b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cdcx-wallet-ops scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/cdcx-cli/skills/cdcx-wallet-ops/SKILL.md · 105 lines

How it starts

The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Wallet Operations

When to Use

  • Get a deposit address for a currency/network
  • Initiate a withdrawal to a whitelisted address
  • Query deposit or withdrawal history
  • Look up supported networks for a currency

Requires authentication. Your API key must have withdrawal permissions enabled for wallet withdraw to work.

Tools Used

Tool Purpose Tier
cdcx_funding_deposit_address Generate/fetch deposit address sensitive_read
cdcx_funding_networks List supported networks per currency read
cdcx_funding_deposit_history Past deposits sensitive_read
cdcx_funding_withdrawal_history Past withdrawals sensitive_read
cdcx_funding_withdraw Create a withdrawal request dangerous
cdcx_account_summary Available balance for a currency sensitive_read

MCP service group name is funding (maps to CLI wallet group).

Workflow

Deposit (receive funds)

# 1. Find supported networks
cdcx wallet networks -o json

# 2. Get the deposit address
cdcx wallet deposit-address BTC -o json

# 3. Share the address + network with the sender
# 4. Poll for arrival
cdcx wallet deposit-history -o json

Always display both the address and the network to the user — sending on the wrong network loses the funds.

Withdraw (send funds — dangerous)

# 1. Confirm available balance
cdcx account summary -o json

# 2. Confirm destination is whitelisted (done in Exchange GUI)

# 3. Confirm supported network
cdcx wallet networks -o json

# 4. Preview the request
cdcx wallet withdraw BTC 0.1 <ADDRESS> \
    --network-id BITCOIN \
    --client-wid my-withdraw-001 \
    --dry-run -o json

# 5. Execute
cdcx wallet withdraw BTC 0.1 <ADDRESS> \
    --network-id BITCOIN \
    --client-wid my-withdraw-001 \
    -o json

# 6. Track settlement
cdcx wallet withdrawal-history -o json

Read the full file on GitHub · 105 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 105 lines · 27 tokens per session scan A e191523d495b

Subscribe to this mod's changes

cdcx-wallet-ops is a skill published in the GitHub repository crypto-com/cdcx-cli (25 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 27 tokens to every session and 833 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.