withdraw
Withdraw crypto from Eterna to an external wallet
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Withdraw crypto from Eterna to an external wallet
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Close positions and cancel orders on Eterna
Guide user through depositing crypto and transferring funds to the trading wallet
Live market scanning, technical analysis, and trade idea generation using Eterna CLI
Place trades on Eterna with proper sizing, leverage, and risk management
Always-active router for Eterna trading — detects user state and invokes the right skill
| name | withdraw |
| description | Withdraw crypto from Eterna to an external wallet |
| metadata.openclaw.requires.bins | [{"name":"eterna","install":"npm install -g @eterna-hybrid-exchange/cli","postInstall":"eterna login"}] |
Guide the user through withdrawing funds from Eterna.
const amount = await eterna.getWithdrawableAmount("USDT");
return amount;
If the user has open positions, available balance will be less than total equity. Explain this if it surprises them.
const info = await eterna.getCoinInfo("USDT");
return info.rows[0].chains.filter((c) => c.chainWithdraw === "1").map((c) => ({
chain: c.chain, chainType: c.chainType,
}));
Recommend Arbitrum for low fees unless the user specifies a chain.
Always confirm address and amount with the user before submitting. Double-check the chain matches their destination wallet.
const result = await eterna.submitWithdrawal("USDT", "50", "0xabc123...", "ARBI");
return result;
const status = await eterna.getWithdrawalStatus();
return status;
| Method | Returns |
|---|---|
eterna.getWithdrawableAmount(coin) | { coin, withdrawableAmount, availableBalance } |
eterna.getCoinInfo(coin) | { rows: [{ coin, chains: [{ chain, chainType, chainDeposit, chainWithdraw }] }] } |
eterna.submitWithdrawal(coin, amount, address, chain) | { withdrawalRequestId, status, coin, amount, address, chain } |
eterna.getWithdrawalStatus(id?) | { requests: [{ id, status, coin, amount, address, chain, createdAt }] } |