Skip to content

Commit

Permalink
Merge pull request #7838 from frosty00/idex-live
Browse files Browse the repository at this point in the history
remove idex v1 and add support for idex.io mainnet
  • Loading branch information
kroitor committed Oct 20, 2020
2 parents 50a775a + b1a4e2a commit be087aa
Show file tree
Hide file tree
Showing 3 changed files with 1,033 additions and 2,115 deletions.
13 changes: 13 additions & 0 deletions examples/js/idex-fetch-balance.js
@@ -0,0 +1,13 @@
const ccxt = require ('../../ccxt');

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 ())
}) ()

0 comments on commit be087aa

Please sign in to comment.