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 }] } |