원클릭으로
cdcx-wallet-ops
Crypto wallet operations — deposits, withdrawals, network management. Withdrawal is tier-dangerous and requires extra gating.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Crypto wallet operations — deposits, withdrawals, network management. Withdrawal is tier-dangerous and requires extra gating.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Progressive agent autonomy — from read-only to fully autonomous. Pick the lowest level that gets the job done.
Advanced contingency orders — OCO, OTO, OTOCO. Triggered orders with linked cancellation logic.
Credential and profile management — configure API keys via the setup wizard, environment variables, or config file. Resolution order and troubleshooting.
Verify credentials and inspect account balance — the first action an agent takes before trading.
Order placement and management — place, amend, cancel, close-position. Safety-first with dry-run and preflight checks.
Trade instruments that require isolated margin (e.g. RWA/equity perpetuals like SPYUSD-PERP). Covers the create-order flag, funding transfers, leverage adjustment, and the TUI M toggle.
| name | cdcx-wallet-ops |
| description | Crypto wallet operations — deposits, withdrawals, network management. Withdrawal is tier-dangerous and requires extra gating. |
Requires authentication. Your API key must have withdrawal permissions enabled for wallet withdraw to work.
| 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).
# 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.
# 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
Positional args: <currency> <amount> <address>.
Tier dangerous: MCP server refuses the call unless started with --allow-dangerous. In the CLI, cdcx prompts for confirmation unless --yes is passed.
cdcx wallet withdraw XRP 100 rXRPaddress... \
--address-tag 12345 \
--network-id RIPPLE \
-o json
Omitting --address-tag on a memo coin routes funds to the exchange's omnibus address without tagging them to the recipient — they will be lost.
cdcx wallet deposit-history --currency USDT -o json
cdcx wallet withdrawal-history --currency USDT -o json
Use --start-time / --end-time (ms since epoch) to narrow the window.
--client-wid is your correlation ID — store it so you can cross-reference with withdrawal-historywallet withdraw command requires all three positional args (currency, amount, address) plus --network-id; CLI will error otherwise--dry-run to see the exchange's fee estimate