withdraw
Withdraw crypto from Eterna to an external wallet
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Withdraw crypto from Eterna to an external wallet
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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 }] } |