bithumb-withdraw
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseBithumb Withdrawal CLI
Bithumb 提现CLI
Crypto and KRW (원화) withdrawals on Bithumb (빗썸): execution, cancellation, history, fee/availability checks, and allowed-address management.
CRITICAL: Crypto withdrawals () are IRREVERSIBLE. A wrong address or network = permanent loss of funds. Always double-check address, network, and amount before executing.withdraw coin
用于在Bithumb(빗썸)平台进行加密货币和韩元(KRW)提现操作:执行提现、取消提现、查看提现历史、查询手续费/提现权限以及管理允许提现地址。
重要提示:加密货币提现()是不可逆的。地址或网络错误将导致资金永久损失。执行提现前务必仔细核对地址、网络和金额。withdraw coin
Tool Routing
工具路由
Writes are CLI-first: prefer the documented CLI over MCP tools (the CLI carries the per-profile read-only gate, account isolation, and terminal reproducibility that writes need). Fall back to MCP only if the CLI is unavailable/fails or the user asks for it; reads may use either path.
bithumb ...写入操作优先使用CLI:优先使用文档中记录的 CLI命令,而非MCP工具(CLI具备每个配置文件的只读限制、账户隔离和终端可复现性,这些是写入操作所需的特性)。仅当CLI不可用/失败或用户要求时,才退而使用MCP工具;读取操作可任选其中一种方式。
bithumb ...Prerequisites
前置条件
- Install:
npm install -g @bithumb-official/bithumb-cli - Credentials: and
export BITHUMB_ACCESS_KEY=.... Withdrawal addresses must be pre-registered on Bithumb (forexport BITHUMB_SECRET_KEY=...).withdraw coin
- 安装:
npm install -g @bithumb-official/bithumb-cli - 凭证配置:和
export BITHUMB_ACCESS_KEY=...。提现地址必须事先在Bithumb平台注册(针对export BITHUMB_SECRET_KEY=...操作)。withdraw coin
Skill Routing
技能路由
Market data → ; assets / wallet status / available withdrawal amount → ; orders → ; deposits → ; audit/diagnostics → ; withdrawals → this skill.
bithumb-marketbithumb-accountbithumb-tradebithumb-depositbithumb-systemA user question about how much can be withdrawn ("출금 가능 금액") routes to. Thebithumb-accountcommand lives here and is run as a withdrawal pre-flight step (fees, limits, supportedbithumb withdraw chance) — see the checklist below. The two are not in conflict: account answers the question, this skill runs the pre-flight command.net_type
市场数据 → ;资产/钱包状态/可用提现金额 → ;订单操作 → ;存款操作 → ;审计/诊断 → ;提现操作 → 本技能。
bithumb-marketbithumb-accountbithumb-tradebithumb-depositbithumb-system用户关于“可提现金额(출금 가능 금액)”的问题应路由至。bithumb-account命令属于本技能,作为提现前的预检步骤(查询手续费、限额、支持的bithumb withdraw chance)——请查看下方检查清单。两者并不冲突:net_type回答金额问题,本技能执行预检命令。bithumb-account
Command Index
命令索引
| # | Command | Type | Description |
|---|---|---|---|
| 1 | | READ | Withdrawal availability: balance, fees, limits |
| 2 | | READ | List allowed withdrawal addresses |
| 3 | | READ | Get specific withdrawal details |
| 4 | | READ | Coin withdrawal history |
| 5 | | READ | KRW withdrawal history |
| 6 | | WRITE | Withdraw crypto (IRREVERSIBLE) |
| 7 | | WRITE | Withdraw KRW (2FA required) |
| 8 | | WRITE | Cancel pending crypto withdrawal |
Full parameter tables, input formats, and the workflow example are in references/withdraw-commands.md.
| 序号 | 命令 | 类型 | 描述 |
|---|---|---|---|
| 1 | | 读取 | 提现权限:余额、手续费、限额 |
| 2 | | 读取 | 列出允许的提现地址 |
| 3 | | 读取 | 获取特定提现的详细信息 |
| 4 | | 读取 | 加密货币提现历史 |
| 5 | | 读取 | 韩元提现历史 |
| 6 | | 写入 | 加密货币提现(不可逆) |
| 7 | | 写入 | 韩元提现(需双因素认证) |
| 8 | | 写入 | 取消待处理的加密货币提现 |
完整的参数表、输入格式和工作流示例请查看references/withdraw-commands.md。
Routing rules
路由规则
| User intent | Command |
|---|---|
Check if withdrawal is possible & fees / discover | |
| View allowed withdrawal addresses | |
| Look up one withdrawal by identifier (id/txid) | |
| Search/filter withdrawal history (no identifier or several) | |
| View KRW withdrawal history | |
| Withdraw crypto | |
| Withdraw KRW | |
| Cancel pending withdrawal | |
Identifier decision rule (txid-first): deposits/withdrawals use txid as the primary identifier — query / first; if empty, retry the same value as (or ask the user) before concluding "not found". Details and the JSON-array / special-char-txid handling are in references/withdraw-commands.md.
--txid--txids--withdrawal-id(s)--txidsRead commands (, , , , ) run immediately. All write commands require the pre-flight checklist and explicit user confirmation.
chanceaddressesgetlistlist-krw| 用户意图 | 命令 |
|---|---|
检查是否可提现及手续费/查看支持的 | |
| 查看允许的提现地址 | |
| 通过标识符(id/txid)查询单笔提现 | |
| 搜索/过滤提现历史(无标识符或多笔) | |
| 查看韩元提现历史 | |
| 提取加密货币 | |
| 提取韩元 | |
| 取消待处理的提现 | |
标识符判定规则(优先使用txid):存款/提现操作以txid作为主要标识符——优先使用/查询;如果查询结果为空,重试将该值作为进行查询(或询问用户),之后再判定“未找到”。详细说明及 JSON数组/特殊字符txid的处理方式请查看references/withdraw-commands.md。
--txid--txids--withdrawal-id(s)--txids读取命令(、、、、)可立即执行。所有写入命令均需完成预检检查清单并获得用户明确确认。
chanceaddressesgetlistlist-krw🛑 Mandatory Pre-flight Checklist — withdraw coin
/ withdraw krw
/ withdraw cancel
withdraw coinwithdraw krwwithdraw cancel🛑 强制预检检查清单 — withdraw coin
/ withdraw krw
/ withdraw cancel
withdraw coinwithdraw krwwithdraw cancelBefore any write in this skill, run the steps below in order. Do not skip steps even if the user says "just send it". Stop and ask for explicit user confirmation between step 5 and step 7.
Step 0 (read-only gate) applies to every write here — including . The heavier balance/address lookups (steps 1–5) are only for / ; for , run Step 0, confirm the withdrawal ID, then execute.
withdraw cancelwithdraw coinwithdraw krwwithdraw cancel| # | Command | Purpose |
|---|---|---|
| 0 | | Read-only gate (run first, all writes incl. cancel). Read the effective profile's |
| 1 | | Confirm sufficient balance |
| 2 | | Confirm withdrawal is enabled (blockchain not under maintenance) |
| 3 | | Confirm fee, min amount, daily limit, supported |
| 4 | | Confirm destination is in the allowed list (Bithumb requirement) |
| 5 | | Cross-check withdrawal fee from market side |
| 5b | 🛂 Classify withdrawal type and collect required params | Open references/withdrawal-type-params.md. Confirm whether this is Internal, CODE ID Connect, CODE 개인, CODE 법인, or WHITELIST; collect every required param for that type. |
| 6 | 🤚 Stop. Ask user to confirm: withdrawal type, currency, net_type, amount, address (full string), secondary_address (memo/tag) if applicable, exchange_name if external, and (CODE 개인/법인) receiver_type + all receiver fields | |
| 7 | | Execute |
| 8 | | Verify status |
Skipping any step (especially 4 / 5 / 6) is the most common cause of failed/lost withdrawals in past QA. The same checklist is mirrored in bithumb-account Cross-Skill Workflows.
After a write, verify: → ; → ; → .
withdraw coinwithdraw list --currency <c> --limit 1withdraw krwwithdraw list-krwwithdraw cancelwithdraw get --currency <c> --withdrawal-id <id>在执行本技能中的任何写入操作之前,请按顺序完成以下步骤。即使用户说“直接操作”,也不要跳过步骤。在步骤5和步骤7之间,请暂停并请求用户明确确认。
步骤0(只读限制)适用于本技能中的所有写入操作——包括。步骤1–5的余额/地址查询仅针对 / ;对于,只需执行步骤0,确认提现ID后即可执行取消操作。
withdraw cancelwithdraw coinwithdraw krwwithdraw cancel| 序号 | 命令 | 目的 |
|---|---|---|
| 0 | | 只读限制(所有写入操作均需首先执行,包括取消)。读取当前生效配置文件的 |
| 1 | | 确认余额充足 |
| 2 | | 确认提现功能已启用(区块链未处于维护状态) |
| 3 | | 确认手续费、最低提现金额、每日限额、支持的 |
| 4 | | 确认目标地址在允许列表中(Bithumb平台要求) |
| 5 | | 从市场端交叉核对提现手续费 |
| 5b | 🛂 分类提现类型并收集所需参数 | 打开references/withdrawal-type-params.md。确认提现类型为内部转账、CODE ID Connect、CODE个人、CODE企业还是白名单;收集该类型所需的所有参数。 |
| 6 | 🤚 暂停操作,请求用户确认:提现类型、币种、net_type、金额、完整地址字符串、适用情况下的secondary_address(备注/标签)、外部交易所名称、以及(CODE个人/企业)收款方类型 + 所有收款方字段 | |
| 7 | | 执行提现 |
| 8 | | 验证提现状态 |
跳过任何步骤(尤其是步骤4/5/6)是过去QA中提现失败/资金损失的最常见原因。同一检查清单也在bithumb-account跨技能工作流中有所体现。
写入操作完成后,请验证: → ; → ; → 。
withdraw coinwithdraw list --currency <c> --limit 1withdraw krwwithdraw list-krwwithdraw cancelwithdraw get --currency <c> --withdrawal-id <id>🛂 Withdrawal Type Params
🛂 提现类型参数
Before , classify the withdrawal type and check
references/withdrawal-type-params.md.
withdraw coinSummary:
- Internal: no , no receiver fields.
--exchange-name - External: is required.
--exchange-name - CODE 개인/법인: and all receiver fields are required.
--receiver-type - is required when the asset/network needs a memo/tag.
--secondary-address
执行之前,请分类提现类型并查看references/withdrawal-type-params.md。
withdraw coin总结:
- 内部转账:无需和收款方字段。
--exchange-name - 外部转账:必须指定。
--exchange-name - CODE个人/企业:必须指定和所有收款方字段。
--receiver-type - 当资产/网络需要备注/标签时,必须指定。
--secondary-address
Global Notes
全局注意事项
- When you query withdrawals (/
withdraw list/list-krw) and present the result to the user, always include each entry'sget— they need it to look up or cancel the withdrawal later.withdrawal_id - All commands require valid API credentials. Bithumb has no demo mode — every withdrawal is real and involves real funds.
- on any command returns the raw Bithumb API response.
--json - Always run the 🛑 Mandatory Pre-flight Checklist above for every withdrawal — it is the single safety flow (no shorter sequence).
- 当查询提现记录(/
withdraw list/list-krw)并向用户展示结果时,请务必包含每条记录的get——用户后续需要用它来查询或取消提现。withdrawal_id - 所有命令均需有效的API凭证。Bithumb无演示模式——每笔提现都是真实操作,涉及真实资金。
- 在任何命令后添加参数可返回原始Bithumb API响应。
--json - 每次提现都必须执行上述🛑强制预检检查清单——这是唯一的安全流程(无简化步骤)。