mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 16:28:06 +00:00
14 lines
326 B
JavaScript
14 lines
326 B
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 ())
|
|
}) ()
|