UNPKG

ccxt-look

Version:

A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges

1,290 lines (1,256 loc) 55.8 kB
'use strict'; // --------------------------------------------------------------------------- const Exchange = require ('./base/Exchange'); const { PAD_WITH_ZERO } = require ('./base/functions/number'); const { InvalidOrder, InsufficientFunds, ExchangeError, ExchangeNotAvailable, DDoSProtection, BadRequest, NotSupported, InvalidAddress, AuthenticationError } = require ('./base/errors'); const Precise = require ('./base/Precise'); // --------------------------------------------------------------------------- module.exports = class idex extends Exchange { describe () { return this.deepExtend (super.describe (), { 'id': 'idex', 'name': 'IDEX', 'countries': [ 'US' ], // public data endpoints 5 requests a second => 1000ms / 5 = 200ms between requests roughly (without Authentication) // all endpoints 10 requests a second => (1000ms / rateLimit) / 10 => 1 / 2 (with Authentication) 'rateLimit': 200, 'version': 'v3', 'pro': true, 'certified': true, 'requiresWeb3': true, 'has': { 'CORS': undefined, 'spot': true, 'margin': false, 'swap': false, 'future': false, 'option': false, 'addMargin': false, 'cancelOrder': true, 'createOrder': true, 'createReduceOnlyOrder': false, 'createStopLimitOrder': true, 'createStopMarketOrder': true, 'createStopOrder': true, 'fetchBalance': true, 'fetchBorrowRate': false, 'fetchBorrowRateHistories': false, 'fetchBorrowRateHistory': false, 'fetchBorrowRates': false, 'fetchBorrowRatesPerSymbol': false, 'fetchClosedOrders': true, 'fetchCurrencies': true, 'fetchDeposits': true, 'fetchFundingHistory': false, 'fetchFundingRate': false, 'fetchFundingRateHistory': false, 'fetchFundingRates': false, 'fetchIndexOHLCV': false, 'fetchLeverage': false, 'fetchLeverageTiers': false, 'fetchMarkets': true, 'fetchMarkOHLCV': false, 'fetchMyTrades': true, 'fetchOHLCV': true, 'fetchOpenOrders': true, 'fetchOrder': true, 'fetchOrderBook': true, 'fetchOrders': undefined, 'fetchPosition': false, 'fetchPositions': false, 'fetchPositionsRisk': false, 'fetchPremiumIndexOHLCV': false, 'fetchTicker': true, 'fetchTickers': true, 'fetchTrades': true, 'fetchTradingFee': false, 'fetchTradingFees': true, 'fetchTransactions': undefined, 'fetchWithdrawals': true, 'reduceMargin': false, 'setLeverage': false, 'setMarginMode': false, 'setPositionMode': false, 'transfer': false, 'withdraw': true, }, 'timeframes': { '1m': '1m', '5m': '5m', '15m': '15m', '30m': '30m', '1h': '1h', '6h': '6h', '1d': '1d', }, 'urls': { 'test': { 'MATIC': 'https://api-sandbox-matic.idex.io', }, 'logo': 'https://user-images.githubusercontent.com/51840849/94481303-2f222100-01e0-11eb-97dd-bc14c5943a86.jpg', 'api': { 'MATIC': 'https://api-matic.idex.io', }, 'www': 'https://idex.io', 'doc': [ 'https://docs.idex.io/', ], }, 'api': { 'public': { 'get': { 'ping': 1, 'time': 1, 'exchange': 1, 'assets': 1, 'markets': 1, 'tickers': 1, 'candles': 1, 'trades': 1, 'orderbook': 1, }, }, 'private': { 'get': { 'user': 1, 'wallets': 1, 'balances': 1, 'orders': 1, 'fills': 1, 'deposits': 1, 'withdrawals': 1, 'wsToken': 1, }, 'post': { 'wallets': 1, 'orders': 1, 'orders/test': 1, 'withdrawals': 1, }, 'delete': { 'orders': 1, }, }, }, 'options': { 'defaultTimeInForce': 'gtc', 'defaultSelfTradePrevention': 'cn', 'network': 'MATIC', }, 'exceptions': { 'INVALID_ORDER_QUANTITY': InvalidOrder, 'INSUFFICIENT_FUNDS': InsufficientFunds, 'SERVICE_UNAVAILABLE': ExchangeNotAvailable, 'EXCEEDED_RATE_LIMIT': DDoSProtection, 'INVALID_PARAMETER': BadRequest, 'WALLET_NOT_ASSOCIATED': InvalidAddress, 'INVALID_WALLET_SIGNATURE': AuthenticationError, }, 'requiredCredentials': { 'walletAddress': true, 'privateKey': true, 'apiKey': true, 'secret': true, }, 'paddingMode': PAD_WITH_ZERO, 'commonCurrencies': {}, }); } async fetchMarkets (params = {}) { const response = await this.publicGetMarkets (params); // // [ // { // market: 'DIL-ETH', // status: 'active', // baseAsset: 'DIL', // baseAssetPrecision: 8, // quoteAsset: 'ETH', // quoteAssetPrecision: 8 // }, ... // ] // const response2 = await this.publicGetExchange (); // // { // "timeZone": "UTC", // "serverTime": 1590408000000, // "ethereumDepositContractAddress": "0x...", // "ethUsdPrice": "206.46", // "gasPrice": 7, // "volume24hUsd": "10416227.98", // "makerFeeRate": "0.001", // "takerFeeRate": "0.002", // "makerTradeMinimum": "0.15000000", // "takerTradeMinimum": "0.05000000", // "withdrawalMinimum": "0.04000000" // } // const maker = this.safeNumber (response2, 'makerFeeRate'); const taker = this.safeNumber (response2, 'takerFeeRate'); const makerMin = this.safeString (response2, 'makerTradeMinimum'); const takerMin = this.safeString (response2, 'takerTradeMinimum'); const minCostETH = this.parseNumber (Precise.stringMin (makerMin, takerMin)); const result = []; for (let i = 0; i < response.length; i++) { const entry = response[i]; const marketId = this.safeString (entry, 'market'); const baseId = this.safeString (entry, 'baseAsset'); const quoteId = this.safeString (entry, 'quoteAsset'); const base = this.safeCurrencyCode (baseId); const quote = this.safeCurrencyCode (quoteId); const basePrecisionString = this.safeString (entry, 'baseAssetPrecision'); const quotePrecisionString = this.safeString (entry, 'quoteAssetPrecision'); const basePrecision = this.parsePrecision (basePrecisionString); const quotePrecision = this.parsePrecision (quotePrecisionString); const status = this.safeString (entry, 'status'); let minCost = undefined; if (quote === 'ETH') { minCost = minCostETH; } result.push ({ 'id': marketId, 'symbol': base + '/' + quote, 'base': base, 'quote': quote, 'settle': undefined, 'baseId': baseId, 'quoteId': quoteId, 'settleId': undefined, 'type': 'spot', 'spot': true, 'margin': false, 'swap': false, 'future': false, 'option': false, 'active': (status === 'active'), 'contract': false, 'linear': undefined, 'inverse': undefined, 'taker': taker, 'maker': maker, 'contractSize': undefined, 'expiry': undefined, 'expiryDatetime': undefined, 'strike': undefined, 'optionType': undefined, 'precision': { 'amount': parseInt (basePrecisionString), 'price': parseInt (quotePrecisionString), }, 'limits': { 'leverage': { 'min': undefined, 'max': undefined, }, 'amount': { 'min': this.parseNumber (basePrecision), 'max': undefined, }, 'price': { 'min': this.parseNumber (quotePrecision), 'max': undefined, }, 'cost': { 'min': minCost, 'max': undefined, }, }, 'info': entry, }); } return result; } async fetchTicker (symbol, params = {}) { await this.loadMarkets (); const market = this.market (symbol); const request = { 'market': market['id'], }; // [ // { // market: 'DIL-ETH', // time: 1598367493008, // open: '0.09695361', // high: '0.10245881', // low: '0.09572507', // close: '0.09917079', // closeQuantity: '0.71320950', // baseVolume: '309.17380612', // quoteVolume: '30.57633981', // percentChange: '2.28', // numTrades: 205, // ask: '0.09910476', // bid: '0.09688340', // sequence: 3902 // } // ] const response = await this.publicGetTickers (this.extend (request, params)); const ticker = this.safeValue (response, 0); return this.parseTicker (ticker, market); } async fetchTickers (symbols = undefined, params = {}) { await this.loadMarkets (); // [ // { // market: 'DIL-ETH', // time: 1598367493008, // open: '0.09695361', // high: '0.10245881', // low: '0.09572507', // close: '0.09917079', // closeQuantity: '0.71320950', // baseVolume: '309.17380612', // quoteVolume: '30.57633981', // percentChange: '2.28', // numTrades: 205, // ask: '0.09910476', // bid: '0.09688340', // sequence: 3902 // }, ... // ] const response = await this.publicGetTickers (params); return this.parseTickers (response, symbols); } parseTicker (ticker, market = undefined) { // { // market: 'DIL-ETH', // time: 1598367493008, // open: '0.09695361', // high: '0.10245881', // low: '0.09572507', // close: '0.09917079', // closeQuantity: '0.71320950', // baseVolume: '309.17380612', // quoteVolume: '30.57633981', // percentChange: '2.28', // numTrades: 205, // ask: '0.09910476', // bid: '0.09688340', // sequence: 3902 // } const marketId = this.safeString (ticker, 'market'); market = this.safeMarket (marketId, market, '-'); const symbol = market['symbol']; const timestamp = this.safeInteger (ticker, 'time'); const close = this.safeString (ticker, 'close'); return this.safeTicker ({ 'symbol': symbol, 'timestamp': timestamp, 'datetime': this.iso8601 (timestamp), 'high': this.safeString (ticker, 'high'), 'low': this.safeString (ticker, 'low'), 'bid': this.safeString (ticker, 'bid'), 'bidVolume': undefined, 'ask': this.safeString (ticker, 'ask'), 'askVolume': undefined, 'vwap': undefined, 'open': this.safeString (ticker, 'open'), 'close': close, 'last': close, 'previousClose': undefined, 'change': undefined, 'percentage': this.safeString (ticker, 'percentChange'), 'average': undefined, 'baseVolume': this.safeString (ticker, 'baseVolume'), 'quoteVolume': this.safeString (ticker, 'quoteVolume'), 'info': ticker, }, market, false); } async fetchOHLCV (symbol, timeframe = '1m', since = undefined, limit = undefined, params = {}) { await this.loadMarkets (); const market = this.market (symbol); const request = { 'market': market['id'], 'interval': timeframe, }; if (since !== undefined) { request['start'] = since; } if (limit !== undefined) { request['limit'] = limit; } const response = await this.publicGetCandles (this.extend (request, params)); if (Array.isArray (response)) { // [ // { // start: 1598345580000, // open: '0.09771286', // high: '0.09771286', // low: '0.09771286', // close: '0.09771286', // volume: '1.45340410', // sequence: 3853 // }, ... // ] return this.parseOHLCVs (response, market, timeframe, since, limit); } else { // {"nextTime":1595536440000} return []; } } parseOHLCV (ohlcv, market = undefined) { // { // start: 1598345580000, // open: '0.09771286', // high: '0.09771286', // low: '0.09771286', // close: '0.09771286', // volume: '1.45340410', // sequence: 3853 // } const timestamp = this.safeInteger (ohlcv, 'start'); const open = this.safeNumber (ohlcv, 'open'); const high = this.safeNumber (ohlcv, 'high'); const low = this.safeNumber (ohlcv, 'low'); const close = this.safeNumber (ohlcv, 'close'); const volume = this.safeNumber (ohlcv, 'volume'); return [ timestamp, open, high, low, close, volume ]; } async fetchTrades (symbol, since = undefined, limit = undefined, params = {}) { await this.loadMarkets (); const market = this.market (symbol); const request = { 'market': market['id'], }; if (since !== undefined) { request['start'] = since; } if (limit !== undefined) { request['limit'] = limit; } // [ // { // fillId: 'b5467d00-b13e-3fa9-8216-dd66735550fc', // price: '0.09771286', // quantity: '1.45340410', // quoteQuantity: '0.14201627', // time: 1598345638994, // makerSide: 'buy', // sequence: 3853 // }, ... // ] const response = await this.publicGetTrades (this.extend (request, params)); return this.parseTrades (response, market, since, limit); } parseTrade (trade, market = undefined) { // // public trades // { // "fillId":"a4883704-850b-3c4b-8588-020b5e4c62f1", // "price":"0.20377008", // "quantity":"47.58448728", // "quoteQuantity":"9.69629509", // "time":1642091300873, // "makerSide":"buy", // "type":"hybrid", // one of either: "orderBook", "hybrid", or "pool" // "sequence":31876 // } // // private trades // { // "fillId":"83429066-9334-3582-b710-78858b2f0d6b", // "price":"0.20717368", // "quantity":"15.00000000", // "quoteQuantity":"3.10760523", // "orderBookQuantity":"0.00000003", // "orderBookQuoteQuantity":"0.00000001", // "poolQuantity":"14.99999997", // "poolQuoteQuantity":"3.10760522", // "time":1642083351215, // "makerSide":"sell", // "sequence":31795, // "market":"IDEX-USDC", // "orderId":"4fe993f0-747b-11ec-bd08-79d4a0b6e47c", // "side":"buy", // "fee":"0.03749989", // "feeAsset":"IDEX", // "gas":"0.40507261", // "liquidity":"taker", // "type":"hybrid", // "txId":"0x69f6d82a762d12e3201efd0b3e9cc1969351e3c6ea3cf07c47c66bf24a459815", // "txStatus":"mined" // } // const id = this.safeString (trade, 'fillId'); const priceString = this.safeString (trade, 'price'); const amountString = this.safeString (trade, 'quantity'); const costString = this.safeString (trade, 'quoteQuantity'); const timestamp = this.safeInteger (trade, 'time'); const marketId = this.safeString (trade, 'market'); const symbol = this.safeSymbol (marketId, market, '-'); // this code handles the duality of public vs private trades const makerSide = this.safeString (trade, 'makerSide'); const oppositeSide = (makerSide === 'buy') ? 'sell' : 'buy'; const side = this.safeString (trade, 'side', oppositeSide); const takerOrMaker = this.safeString (trade, 'liquidity', 'taker'); const feeCostString = this.safeString (trade, 'fee'); let fee = undefined; if (feeCostString !== undefined) { const feeCurrencyId = this.safeString (trade, 'feeAsset'); fee = { 'cost': feeCostString, 'currency': this.safeCurrencyCode (feeCurrencyId), }; } const orderId = this.safeString (trade, 'orderId'); return this.safeTrade ({ 'info': trade, 'timestamp': timestamp, 'datetime': this.iso8601 (timestamp), 'symbol': symbol, 'id': id, 'order': orderId, 'type': 'limit', 'side': side, 'takerOrMaker': takerOrMaker, 'price': priceString, 'amount': amountString, 'cost': costString, 'fee': fee, }, market); } async fetchTradingFees (params = {}) { this.checkRequiredCredentials (); await this.loadMarkets (); const nonce = this.uuidv1 (); const request = { 'nonce': nonce, }; let response = undefined; response = await this.privateGetUser (this.extend (request, params)); // // { // depositEnabled: true, // orderEnabled: true, // cancelEnabled: true, // withdrawEnabled: true, // totalPortfolioValueUsd: '0.00', // makerFeeRate: '0.0000', // takerFeeRate: '0.0025', // takerIdexFeeRate: '0.0005', // takerLiquidityProviderFeeRate: '0.0020' // } // const maker = this.safeNumber (response, 'makerFeeRate'); const taker = this.safeNumber (response, 'takerFeeRate'); const result = {}; for (let i = 0; i < this.symbols.length; i++) { const symbol = this.symbols[i]; result[symbol] = { 'info': response, 'symbol': symbol, 'maker': maker, 'taker': taker, 'percentage': true, 'tierBased': false, }; } return result; } async fetchOrderBook (symbol, limit = undefined, params = {}) { await this.loadMarkets (); const market = this.market (symbol); const request = { 'market': market['id'], 'level': 2, }; if (limit !== undefined) { request['limit'] = limit; } // { // sequence: 36416753, // bids: [ // [ '0.09672815', '8.22284267', 1 ], // [ '0.09672814', '1.83685554', 1 ], // [ '0.09672143', '4.10962617', 1 ], // [ '0.09658884', '4.03863759', 1 ], // [ '0.09653781', '3.35730684', 1 ], // [ '0.09624660', '2.54163586', 1 ], // [ '0.09617490', '1.93065030', 1 ] // ], // asks: [ // [ '0.09910476', '3.22840154', 1 ], // [ '0.09940587', '3.39796593', 1 ], // [ '0.09948189', '4.25088898', 1 ], // [ '0.09958362', '2.42195784', 1 ], // [ '0.09974393', '4.25234367', 1 ], // [ '0.09995250', '3.40192141', 1 ] // ] // } const response = await this.publicGetOrderbook (this.extend (request, params)); const nonce = this.safeInteger (response, 'sequence'); return { 'symbol': symbol, 'timestamp': undefined, 'datetime': undefined, 'nonce': nonce, 'bids': this.parseSide (response, 'bids'), 'asks': this.parseSide (response, 'asks'), }; } parseSide (book, side) { const bookSide = this.safeValue (book, side, []); const result = []; for (let i = 0; i < bookSide.length; i++) { const order = bookSide[i]; const price = this.safeNumber (order, 0); const amount = this.safeNumber (order, 1); const orderCount = this.safeInteger (order, 2); result.push ([ price, amount, orderCount ]); } const descending = side === 'bids'; return this.sortBy (result, 0, descending); } async fetchCurrencies (params = {}) { // [ // { // name: 'Ether', // symbol: 'ETH', // contractAddress: '0x0000000000000000000000000000000000000000', // assetDecimals: 18, // exchangeDecimals: 8 // }, .. // ] const response = await this.publicGetAssets (params); const result = {}; for (let i = 0; i < response.length; i++) { const entry = response[i]; const name = this.safeString (entry, 'name'); const currencyId = this.safeString (entry, 'symbol'); const precisionString = this.safeString (entry, 'exchangeDecimals'); const code = this.safeCurrencyCode (currencyId); const precision = this.parsePrecision (precisionString); const lot = this.parseNumber (precision); result[code] = { 'id': currencyId, 'code': code, 'info': entry, 'type': undefined, 'name': name, 'active': undefined, 'deposit': undefined, 'withdraw': undefined, 'fee': undefined, 'precision': parseInt (precisionString), 'limits': { 'amount': { 'min': lot, 'max': undefined }, 'withdraw': { 'min': lot, 'max': undefined }, }, }; } return result; } parseBalance (response) { const result = { 'info': response, 'timestamp': undefined, 'datetime': undefined, }; for (let i = 0; i < response.length; i++) { const entry = response[i]; const currencyId = this.safeString (entry, 'asset'); const code = this.safeCurrencyCode (currencyId); const account = this.account (); account['total'] = this.safeString (entry, 'quantity'); account['free'] = this.safeString (entry, 'availableForTrade'); account['used'] = this.safeString (entry, 'locked'); result[code] = account; } return this.safeBalance (result); } async fetchBalance (params = {}) { this.checkRequiredCredentials (); await this.loadMarkets (); const nonce1 = this.uuidv1 (); const request = { 'nonce': nonce1, 'wallet': this.walletAddress, }; // [ // { // asset: 'DIL', // quantity: '0.00000000', // availableForTrade: '0.00000000', // locked: '0.00000000', // usdValue: null // }, ... // ] const extendedRequest = this.extend (request, params); if (extendedRequest['wallet'] === undefined) { throw new BadRequest (this.id + ' fetchBalance() wallet is undefined, set this.walletAddress or "address" in params'); } let response = undefined; try { response = await this.privateGetBalances (extendedRequest); } catch (e) { if (e instanceof InvalidAddress) { const walletAddress = extendedRequest['wallet']; await this.associateWallet (walletAddress); response = await this.privateGetBalances (extendedRequest); } else { throw e; } } return this.parseBalance (response); } async fetchMyTrades (symbol = undefined, since = undefined, limit = undefined, params = {}) { this.checkRequiredCredentials (); await this.loadMarkets (); let market = undefined; const request = { 'nonce': this.uuidv1 (), 'wallet': this.walletAddress, }; if (symbol !== undefined) { market = this.market (symbol); request['market'] = market['id']; } if (since !== undefined) { request['start'] = since; } if (limit !== undefined) { request['limit'] = limit; } // [ // { // fillId: '48582d10-b9bb-3c4b-94d3-e67537cf2472', // price: '0.09905990', // quantity: '0.40000000', // quoteQuantity: '0.03962396', // time: 1598873478762, // makerSide: 'sell', // sequence: 5053, // market: 'DIL-ETH', // orderId: '7cdc8e90-eb7d-11ea-9e60-4118569f6e63', // side: 'buy', // fee: '0.00080000', // feeAsset: 'DIL', // gas: '0.00857497', // liquidity: 'taker', // txId: '0xeaa02b112c0b8b61bc02fa1776a2b39d6c614e287c1af90df0a2e591da573e65', // txStatus: 'mined' // } // ] const extendedRequest = this.extend (request, params); if (extendedRequest['wallet'] === undefined) { throw new BadRequest (this.id + ' fetchMyTrades() walletAddress is undefined, set this.walletAddress or "address" in params'); } let response = undefined; try { response = await this.privateGetFills (extendedRequest); } catch (e) { if (e instanceof InvalidAddress) { const walletAddress = extendedRequest['wallet']; await this.associateWallet (walletAddress); response = await this.privateGetFills (extendedRequest); } else { throw e; } } return this.parseTrades (response, market, since, limit); } async fetchOrder (id, symbol = undefined, params = {}) { const request = { 'orderId': id, }; return await this.fetchOrdersHelper (symbol, undefined, undefined, this.extend (request, params)); } async fetchOpenOrders (symbol = undefined, since = undefined, limit = undefined, params = {}) { const request = { 'closed': false, }; return await this.fetchOrdersHelper (symbol, since, limit, this.extend (request, params)); } async fetchClosedOrders (symbol = undefined, since = undefined, limit = undefined, params = {}) { const request = { 'closed': true, }; return await this.fetchOrdersHelper (symbol, since, limit, this.extend (request, params)); } async fetchOrdersHelper (symbol = undefined, since = undefined, limit = undefined, params = {}) { await this.loadMarkets (); const request = { 'nonce': this.uuidv1 (), 'wallet': this.walletAddress, }; let market = undefined; if (symbol !== undefined) { market = this.market (symbol); request['market'] = market['id']; } if (since !== undefined) { request['start'] = since; } if (limit !== undefined) { request['limit'] = limit; } const response = await this.privateGetOrders (this.extend (request, params)); // fetchClosedOrders / fetchOpenOrders // [ // { // "market": "DIL-ETH", // "orderId": "7cdc8e90-eb7d-11ea-9e60-4118569f6e63", // "wallet": "0x0AB991497116f7F5532a4c2f4f7B1784488628e1", // "time": 1598873478650, // "status": "filled", // "type": "limit", // "side": "buy", // "originalQuantity": "0.40000000", // "executedQuantity": "0.40000000", // "cumulativeQuoteQuantity": "0.03962396", // "avgExecutionPrice": "0.09905990", // "price": "1.00000000", // "fills": [ // { // "fillId": "48582d10-b9bb-3c4b-94d3-e67537cf2472", // "price": "0.09905990", // "quantity": "0.40000000", // "quoteQuantity": "0.03962396", // "time": 1598873478650, // "makerSide": "sell", // "sequence": 5053, // "fee": "0.00080000", // "feeAsset": "DIL", // "gas": "0.00857497", // "liquidity": "taker", // "txId": "0xeaa02b112c0b8b61bc02fa1776a2b39d6c614e287c1af90df0a2e591da573e65", // "txStatus": "mined" // } // ] // } // ] // fetchOrder // { market: 'DIL-ETH', // orderId: '7cdc8e90-eb7d-11ea-9e60-4118569f6e63', // wallet: '0x0AB991497116f7F5532a4c2f4f7B1784488628e1', // time: 1598873478650, // status: 'filled', // type: 'limit', // side: 'buy', // originalQuantity: '0.40000000', // executedQuantity: '0.40000000', // cumulativeQuoteQuantity: '0.03962396', // avgExecutionPrice: '0.09905990', // price: '1.00000000', // fills: // [ { fillId: '48582d10-b9bb-3c4b-94d3-e67537cf2472', // price: '0.09905990', // quantity: '0.40000000', // quoteQuantity: '0.03962396', // time: 1598873478650, // makerSide: 'sell', // sequence: 5053, // fee: '0.00080000', // feeAsset: 'DIL', // gas: '0.00857497', // liquidity: 'taker', // txId: '0xeaa02b112c0b8b61bc02fa1776a2b39d6c614e287c1af90df0a2e591da573e65', // txStatus: 'mined' } ] } if (Array.isArray (response)) { return this.parseOrders (response, market, since, limit); } else { return this.parseOrder (response, market); } } parseOrderStatus (status) { // https://docs.idex.io/#order-states-amp-lifecycle const statuses = { 'active': 'open', 'partiallyFilled': 'open', 'rejected': 'canceled', 'filled': 'closed', }; return this.safeString (statuses, status, status); } parseOrder (order, market = undefined) { // // { // "market": "DIL-ETH", // "orderId": "7cdc8e90-eb7d-11ea-9e60-4118569f6e63", // "wallet": "0x0AB991497116f7F5532a4c2f4f7B1784488628e1", // "time": 1598873478650, // "status": "filled", // "type": "limit", // "side": "buy", // "originalQuantity": "0.40000000", // "executedQuantity": "0.40000000", // "cumulativeQuoteQuantity": "0.03962396", // "avgExecutionPrice": "0.09905990", // "price": "1.00000000", // "fills": [ // { // "fillId": "48582d10-b9bb-3c4b-94d3-e67537cf2472", // "price": "0.09905990", // "quantity": "0.40000000", // "quoteQuantity": "0.03962396", // "time": 1598873478650, // "makerSide": "sell", // "sequence": 5053, // "fee": "0.00080000", // "feeAsset": "DIL", // "gas": "0.00857497", // "liquidity": "taker", // "txId": "0xeaa02b112c0b8b61bc02fa1776a2b39d6c614e287c1af90df0a2e591da573e65", // "txStatus": "mined" // } // ] // } // const timestamp = this.safeInteger (order, 'time'); const fills = this.safeValue (order, 'fills', []); const id = this.safeString (order, 'orderId'); const clientOrderId = this.safeString (order, 'clientOrderId'); const marketId = this.safeString (order, 'market'); const side = this.safeString (order, 'side'); const symbol = this.safeSymbol (marketId, market, '-'); const type = this.safeString (order, 'type'); const amount = this.safeString (order, 'originalQuantity'); const filled = this.safeString (order, 'executedQuantity'); const average = this.safeString (order, 'avgExecutionPrice'); const price = this.safeString (order, 'price'); const rawStatus = this.safeString (order, 'status'); const timeInForce = this.safeStringUpper (order, 'timeInForce'); const status = this.parseOrderStatus (rawStatus); return this.safeOrder ({ 'info': order, 'id': id, 'clientOrderId': clientOrderId, 'timestamp': timestamp, 'datetime': this.iso8601 (timestamp), 'lastTradeTimestamp': undefined, 'symbol': symbol, 'type': type, 'timeInForce': timeInForce, 'postOnly': undefined, 'side': side, 'price': price, 'stopPrice': undefined, 'amount': amount, 'cost': undefined, 'average': average, 'filled': filled, 'remaining': undefined, 'status': status, 'fee': undefined, 'trades': fills, }, market); } async associateWallet (walletAddress, params = {}) { const nonce = this.uuidv1 (); const noPrefix = this.remove0xPrefix (walletAddress); const byteArray = [ this.base16ToBinary (nonce), this.base16ToBinary (noPrefix), ]; const binary = this.binaryConcatArray (byteArray); const hash = this.hash (binary, 'keccak', 'hex'); const signature = this.signMessageString (hash, this.privateKey); // { // address: '0x0AB991497116f7F5532a4c2f4f7B1784488628e1', // totalPortfolioValueUsd: '0.00', // time: 1598468353626 // } const request = { 'parameters': { 'nonce': nonce, 'wallet': walletAddress, }, 'signature': signature, }; const result = await this.privatePostWallets (request); return result; } async createOrder (symbol, type, side, amount, price = undefined, params = {}) { // https://docs.idex.io/#create-order this.checkRequiredCredentials (); await this.loadMarkets (); const market = this.market (symbol); const nonce = this.uuidv1 (); let typeEnum = undefined; const stopLossTypeEnums = { 'stopLoss': 3, 'stopLossLimit': 4, 'takeProfit': 5, 'takeProfitLimit': 6, }; let stopPriceString = undefined; if ((type === 'stopLossLimit') || (type === 'takeProfitLimit') || ('stopPrice' in params)) { if (!('stopPrice' in params)) { throw new BadRequest (this.id + ' createOrder() stopPrice is a required parameter for ' + type + 'orders'); } stopPriceString = this.priceToPrecision (symbol, params['stopPrice']); } const limitTypeEnums = { 'limit': 1, 'limitMaker': 2, }; let priceString = undefined; const typeLower = type.toLowerCase (); const limitOrder = typeLower.indexOf ('limit') >= 0; if (type in limitTypeEnums) { typeEnum = limitTypeEnums[type]; priceString = this.priceToPrecision (symbol, price); } else if (type in stopLossTypeEnums) { typeEnum = stopLossTypeEnums[type]; priceString = this.priceToPrecision (symbol, price); } else if (type === 'market') { typeEnum = 0; } else { throw new BadRequest (this.id + ' ' + type + ' is not a valid order type'); } let amountEnum = 0; // base quantity if ('quoteOrderQuantity' in params) { if (type !== 'market') { throw new NotSupported (this.id + ' createOrder() quoteOrderQuantity is not supported for ' + type + ' orders, only supported for market orders'); } amountEnum = 1; amount = this.safeNumber (params, 'quoteOrderQuantity'); } const sideEnum = (side === 'buy') ? 0 : 1; const walletBytes = this.remove0xPrefix (this.walletAddress); const network = this.safeString (this.options, 'network', 'ETH'); const orderVersion = this.getSupportedMapping (network, { 'ETH': 1, 'BSC': 2, 'MATIC': 4, }); const amountString = this.amountToPrecision (symbol, amount); // https://docs.idex.io/#time-in-force const timeInForceEnums = { 'gtc': 0, 'ioc': 2, 'fok': 3, }; const defaultTimeInForce = this.safeString (this.options, 'defaultTimeInForce', 'gtc'); const timeInForce = this.safeString (params, 'timeInForce', defaultTimeInForce); let timeInForceEnum = undefined; if (timeInForce in timeInForceEnums) { timeInForceEnum = timeInForceEnums[timeInForce]; } else { const allOptions = Object.keys (timeInForceEnums); const asString = allOptions.join (', '); throw new BadRequest (this.id + ' ' + timeInForce + ' is not a valid timeInForce, please choose one of ' + asString); } // https://docs.idex.io/#self-trade-prevention const selfTradePreventionEnums = { 'dc': 0, 'co': 1, 'cn': 2, 'cb': 3, }; const defaultSelfTradePrevention = this.safeString (this.options, 'defaultSelfTradePrevention', 'cn'); const selfTradePrevention = this.safeString (params, 'selfTradePrevention', defaultSelfTradePrevention); let selfTradePreventionEnum = undefined; if (selfTradePrevention in selfTradePreventionEnums) { selfTradePreventionEnum = selfTradePreventionEnums[selfTradePrevention]; } else { const allOptions = Object.keys (selfTradePreventionEnums); const asString = allOptions.join (', '); throw new BadRequest (this.id + ' ' + selfTradePrevention + ' is not a valid selfTradePrevention, please choose one of ' + asString); } const byteArray = [ this.numberToBE (orderVersion, 1), this.base16ToBinary (nonce), this.base16ToBinary (walletBytes), this.stringToBinary (this.encode (market['id'])), // TODO: refactor to remove either encode or stringToBinary this.numberToBE (typeEnum, 1), this.numberToBE (sideEnum, 1), this.stringToBinary (this.encode (amountString)), this.numberToBE (amountEnum, 1), ]; if (limitOrder) { const encodedPrice = this.stringToBinary (this.encode (priceString)); byteArray.push (encodedPrice); } if (type in stopLossTypeEnums) { const encodedPrice = this.stringToBinary (this.encode (stopPriceString || priceString)); byteArray.push (encodedPrice); } const clientOrderId = this.safeString (params, 'clientOrderId'); if (clientOrderId !== undefined) { byteArray.push (this.stringToBinary (this.encode (clientOrderId))); } const after = [ this.numberToBE (timeInForceEnum, 1), this.numberToBE (selfTradePreventionEnum, 1), this.numberToBE (0, 8), // unused ]; const allBytes = this.arrayConcat (byteArray, after); const binary = this.binaryConcatArray (allBytes); const hash = this.hash (binary, 'keccak', 'hex'); const signature = this.signMessageString (hash, this.privateKey); const request = { 'parameters': { 'nonce': nonce, 'market': market['id'], 'side': side, 'type': type, 'wallet': this.walletAddress, 'selfTradePrevention': selfTradePrevention, }, 'signature': signature, }; if (type !== 'market') { request['parameters']['timeInForce'] = timeInForce; } if (limitOrder) { request['parameters']['price'] = priceString; } if (type in stopLossTypeEnums) { request['parameters']['stopPrice'] = stopPriceString || priceString; } if (amountEnum === 0) { request['parameters']['quantity'] = amountString; } else { request['parameters']['quoteOrderQuantity'] = amountString; } if (clientOrderId !== undefined) { request['parameters']['clientOrderId'] = clientOrderId; } // { // market: 'DIL-ETH', // orderId: '7cdc8e90-eb7d-11ea-9e60-4118569f6e63', // wallet: '0x0AB991497116f7F5532a4c2f4f7B1784488628e1', // time: 1598873478650, // status: 'filled', // type: 'limit', // side: 'buy', // originalQuantity: '0.40000000', // executedQuantity: '0.40000000', // cumulativeQuoteQuantity: '0.03962396', // price: '1.00000000', // fills: [ // { // fillId: '48582d10-b9bb-3c4b-94d3-e67537cf2472', // price: '0.09905990', // quantity: '0.40000000', // quoteQuantity: '0.03962396', // time: 1598873478650, // makerSide: 'sell', // sequence: 5053, // fee: '0.00080000', // feeAsset: 'DIL', // gas: '0.00857497', // liquidity: 'taker', // txStatus: 'pending' // } // ], // avgExecutionPrice: '0.09905990' // } // we don't use extend here because it is a signed endpoint const response = await this.privatePostOrders (request); return this.parseOrder (response, market); } async withdraw (code, amount, address, tag = undefined, params = {}) { [ tag, params ] = this.handleWithdrawTagAndParams (tag, params); this.checkRequiredCredentials (); await this.loadMarkets (); const nonce = this.uuidv1 (); const amountString = this.currencyToPrecision (code, amount); const currency = this.currency (code); const walletBytes = this.remove0xPrefix (this.walletAddress); const byteArray = [ this.base16ToBinary (nonce), this.base16ToBinary (walletBytes), this.stringToBinary (this.encode (currency['id'])), this.stringToBinary (this.encode (amountString)), this.numberToBE (1, 1), // bool set to true ]; const binary = this.binaryConcatArray (byteArray); const hash = this.hash (binary, 'keccak', 'hex'); const signature = this.signMessageString (hash, this.privateKey); const request = { 'parameters': { 'nonce': nonce, 'wallet': address, 'asset': currency['id'], 'quantity': amountString, }, 'signature': signature, }; const response = await this.privatePostWithdrawals (request); // // { // withdrawalId: 'a61dcff0-ec4d-11ea-8b83-c78a6ecb3180', // asset: 'ETH', // assetContractAddress: '0x0000000000000000000000000000000000000000', // quantity: '0.20000000', // time: 1598962883190, // fee: '0.00024000', // txStatus: 'pending', // txId: null // } // return this.parseTransaction (response, currency); } async cancelOrder (id, symbol = undefined, params = {}) { this.checkRequiredCredentials (); await this.loadMarkets (); let market = undefined; if (symbol !== undefined) { market = this.market (symbol); } const nonce = this.uuidv1 (); const walletBytes = this.remove0xPrefix (this.walletAddress); const byteArray = [ this.base16ToBinary (nonce), this.base16ToBinary (walletBytes), this.stringToBinary (this.encode (id)), ]; const binary = this.binaryConcatArray (byteArray); const hash = this.hash (binary, 'keccak', 'hex'); const signature = this.signMessageString (hash, this.privateKey); const request = { 'parameters': { 'nonce': nonce, 'wallet': this.walletAddress, 'orderId': id, }, 'signature': signature, }; // [ { orderId: '688336f0-ec50-11ea-9842-b332f8a34d0e' } ] const response = await this.privateDeleteOrders (this.extend (request, params)); const canceledOrder = this.safeValue (response, 0); return this.parseOrder (canceledOrder, market); } handleErrors (code, reason, url, method, headers, body, response, requestHeaders, requestBody) { const errorCode = this.safeString (response, 'code'); const message = this.safeString (response, 'message'); if (errorCode in this.exceptions) { const Exception = this.exceptions[errorCode]; throw new Exception (this.id + ' ' + message); } if (errorCode !== undefined) { throw new ExchangeError (this.id + ' ' + message); } } async fetchDeposits (code = undefined, since = undefined, limit = undefined, params = {}) { params = this.extend ({ 'method': 'privateGetDeposits', }, params); return this.fetchTransactionsHelper (code, since, limit, params); } async fetchWithdrawals (code = undefined, since = undefined, limit = undefined, params = {}) { params = this.extend ({ 'method': 'privateGetWithdrawals', }, params); return this.fetchTransactionsHelper (code, since, limit, params); } async fetchTransactionsHelper (code = undefined, since = undefined, limit = undefined, params = {}) { await this.loadMarkets (); const nonce = this.uuidv1 (); const request = { 'nonce': nonce, 'wallet': this.walletAddress, }; let currency = undefined; if (code !== undefined) { currency = this.currency (code); request['asset'] = currency['id']; } if (since !== undefined) { request['start'] = since; } if (limit !== undefined) { request['limit'] = limit;