Skip to content

idex fetch balance

github-actions[bot] edited this page Jun 24, 2026 · 3 revisions
// @NO_AUTO_TRANSPILE
import ccxt from '../../js/ccxt.js';
const idex = ccxt.idex({
    'apiKey': 'YOUR_IDEX_API_KEY',
    'secret': 'YOUR_IDEX_SECRET',
    'walletAddress': '0xYOUR_ETHEREUM_WALLET_ADDRESS',
    'privateKey': '0xYOUR_ETHEREUM_PRIVATE_KEY',
    'verbose': 0,
});
(async () => {
    console.log(await idex.fetchBalance());
})();

Clone this wiki locally