Back to Ccxt

Idex Fetch Balance

wiki/examples/js/idex-fetch-balance.md

4.5.52388 B
Original Source
javascript
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 ())
}) ()