원클릭으로
Withdraw crypto from Eterna to an external wallet
npx skills add https://github.com/EternaHybridExchange/eterna-ai --skill withdraw이 명령을 Claude Code에 복사하여 붙여넣어 스킬을 설치하세요
Withdraw crypto from Eterna to an external wallet
npx skills add https://github.com/EternaHybridExchange/eterna-ai --skill withdraw이 명령을 Claude Code에 복사하여 붙여넣어 스킬을 설치하세요
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 }] } |