Complex expressions

Here is the list of the most complex expressions used in the code. A complex expression is an expression that requires more than 20 tokens to be build.

Literal arrays are omitted.

File Count Expression
/php/okex.php:8301array_merge($fees, array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'type' => $marketType'spot' => $spot'futures' => $future'swap' => $swap'option' => $option'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => $minAmount'max' => null,  ), 'price' => array('min' => $precision['price'], 'max' => null,  ), 'cost' => array('min' => $precision['price'], 'max' => null,  ),  ),  ))
/php/test/test.php:841dump(green($exchange->id), green($symbol), 'ticker:'implode(' ', array($ticker['datetime'], 'high: ' $ticker['high'], 'low: ' $ticker['low'], 'bid: ' $ticker['bid'], 'ask: ' $ticker['ask'], 'volume: ' $ticker['quoteVolume'],  )))
/php/test/test.php:981dump(green($exchange->id), green($symbol), 'order book:'implode(' ', array($orderbook['datetime'], 'bid: ' . @$orderbook['bids'][0][0], 'bidVolume: ' . @$orderbook['bids'][0][1], 'ask: ' . @$orderbook['asks'][0][0], 'askVolume: ' . @$orderbook['asks'][0][1])))
/php/test/test.php:981implode(' ', array($orderbook['datetime'], 'bid: ' . @$orderbook['bids'][0][0], 'bidVolume: ' . @$orderbook['bids'][0][1], 'ask: ' . @$orderbook['asks'][0][0], 'askVolume: ' . @$orderbook['asks'][0][1]))
/php/stronghold.php:7071array_merge(array('venueId' => $this->options['venueId'], 'accountId' => $this->get_active_account( ), 'assetId' => $this->currency_id($code), 'amount' => $amount'paymentMethod' => $paymentMethod'paymentMethodDetails' => array('withdrawal_address' => $address,  ),  ), $params)
/php/coinbasepro.php:2241array_merge($this->fees['trading'], array('id' => $id'symbol' => $symbol'baseId' => $baseId'quoteId' => $quoteId'base' => $base'quote' => $quote'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'base_min_size'), 'max' => $this->safe_float($market'base_max_size'),  ), 'price' => $priceLimits'cost' => array('min' => $this->safe_float($market'min_market_funds'), 'max' => $this->safe_float($market'max_market_funds'),  ),  ), 'active' => $active'info' => $market,  ))
/php/bitget.php:8191array_merge($fees, array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'type' => $marketType'spot' => $spot'swap' => $swap'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => $minAmount'max' => null,  ), 'price' => array('min' => $precision['price'], 'max' => null,  ), 'cost' => array('min' => $precision['price'], 'max' => null,  ),  ),  ))
/php/hitbtc.php:2251array_merge($this->fees['trading'], array('info' => $market'id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'taker' => $taker'maker' => $maker'precision' => $precision'feeCurrency' => $feeCurrencyCode'limits' => array('amount' => array('min' => $lot'max' => null,  ), 'price' => array('min' => $step'max' => null,  ), 'cost' => array('min' => $lot $step'max' => null,  ),  ),  ))
/php/stronghold.php:5091array_merge(array('venueId' => $this->options['venueId'], 'accountId' => $this->get_active_account( ), 'marketID' => $market['id'], 'type' => $type'side' => $side'size' => $this->amount_to_precision($symbol$amount), 'price' => $this->price_to_precision($symbol$price),  ), $params)
/php/bcex.php:3221array_merge(array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => array('amount' => null'price' => null,  ), 'limits' => array('amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null),  ), 'info' => $market,  ), $defaults)
/php/bibox.php:1831$result[] = array('id' => $id'numericId' => $numericId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'info' => $market'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ),  ),  )
/php/flowbtc.php:971$result[$symbol] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market'active' => null,  )
/php/bibox.php:7031$request = array('cmd' => 'orderpending/trade''body' => array_merge(array('pair' => $market['id'], 'account_type' => 0'order_type' => $orderType'order_side' => $orderSide'pay_bix' => 0'amount' => $amount'price' => $price,  ), $params),  )
/php/bibox.php:4931$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => $name'active' => $active'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => pow(10$precision),  ),  ),  )
/php/coinfloor.php:1111$result[$base] = array('free' => $this->safe_float($response$baseIdLower '_available'), 'used' => $this->safe_float($response$baseIdLower '_reserved'), 'total' => $this->safe_float($response$baseIdLower '_balance'),  )
/php/bibox.php:8791$request = array('cmd' => 'orderpending/orderHistoryList''body' => array_merge(array('pair' => $market['id'], 'account_type' => 0'page' => 1'size' => $size'coin_symbol' => $market['baseId'], 'currency_symbol' => $market['quoteId'],  ), $params),  )
/php/coinfloor.php:3271$result = array('id' => null'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'amount' => null'direction' => null'currency' => null'type' => $type'referenceId' => $referenceId'referenceAccount' => null'before' => null'after' => null'status' => 'ok''fee' => $fee'info' => $item,  )
/php/coinfloor.php:1161$result[$quote] = array('free' => $this->safe_float($response$quoteIdLower '_available'), 'used' => $this->safe_float($response$quoteIdLower '_reserved'), 'total' => $this->safe_float($response$quoteIdLower '_balance'),  )
/php/qtrade.php:1751$result[] = array('symbol' => $symbol'id' => $marketId'numericId' => $numericId'baseId' => $baseId'quoteId' => $quoteId'base' => $base'quote' => $quote'active' => $active'precision' => $precision'taker' => $this->safe_float($market'taker_fee'), 'maker' => $this->safe_float($market'maker_fee'), 'limits' => array('amount' => array('min' => $this->safe_float($market'minimum_buy_value'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market,  )
/php/bithumb.php:1261$result[] = array('id' => $currencyId'symbol' => $symbol'base' => $base'quote' => $quote'info' => $market'active' => $active'precision' => array('amount' => 4'price' => 4,  ), 'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => 500'max' => 5000000000,  ),  ), 'baseId' => null'quoteId' => null,  )
/php/qtrade.php:6631$result = array('id' => $id'info' => $trade'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'symbol' => $symbol'order' => $orderId'type' => null'side' => $side'takerOrMaker' => $takerOrMaker'price' => $price'amount' => $amount'cost' => $cost'fee' => $fee,  )
/php/qtrade.php:2641$result[$code] = array('id' => $id'code' => $code'info' => $currency'type' => $type'name' => $name'fee' => $this->safe_float($config'withdraw_fee'), 'precision' => $this->safe_integer($currency'precision'), 'active' => $active'limits' => array('amount' => array('min' => $this->safe_float($currency'minimum_order'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => null,  ),  ),  )
/php/xena.php:3031$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'numericId' => $numericId'active' => $active'type' => $type'spot' => false'future' => $future'swap' => $swap'inverse' => $inverse'precision' => $precision'limits' => $limits'info' => $market,  )
/php/bitget.php:9251$result[$code] = array('id' => $id'code' => $code'info' => $id'type' => null'name' => null'active' => null'fee' => null'precision' => null'limits' => array('amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null), 'withdraw' => array('min' => null'max' => null),  ),  )
/php/xena.php:10051$request = array('account' => intval($accountId), 'symbol' => $market['id'], 'ordType' => $orderType'side' => $orderSide'orderQty' => $this->amount_to_precision($symbol$amount), 'transactTime' => $this->milliseconds( ) * 1000000,  )
/php/xena.php:3651$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => $name'active' => $active'fee' => $this->safe_float($withdraw'commission'), 'precision' => $precision'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($withdraw'minAmount'), 'max' => null,  ),  ),  )
/php/yobit.php:5871$result = array('info' => $order'id' => $id'clientOrderId' => null'symbol' => $symbol'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => null'type' => $type'side' => $side'price' => $price'cost' => $cost'amount' => $amount'remaining' => $remaining'filled' => $filled'status' => $status'fee' => $fee'average' => null'trades' => null,  )
/php/kraken.php:3241$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'darkpool' => $darkpool'info' => $market'altname' => $market['altname'], 'maker' => $maker'taker' => floatval($market['fees'][0][1]) / 100'active' => true'precision' => $precision'limits' => array('amount' => array('min' => $minAmount'max' => pow(10$precision['amount']),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => 0'max' => null,  ),  ),  )
/php/kraken.php:4191$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => $code'active' => $active'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => pow(10$precision),  ),  ),  )
/php/bitfinex2.php:3572$limits = array('amount' => array('min' => $this->safe_float($market'minimum_order_size'), 'max' => $this->safe_float($market'maximum_order_size'),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ),  )
/php/bitfinex2.php:3711$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => $limits'info' => $market'swap' => false'spot' => false'futures' => false,  )
/php/coinbase.php:5371$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => null'info' => $quoteCurrency'precision' => array('amount' => null'price' => null,  ), 'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($quoteCurrency'min_size'), 'max' => null,  ),  ),  )
/php/coinbase.php:6311$result[$code] = array('id' => $id'code' => $code'info' => $currency'type' => $type'name' => $name'active' => true'fee' => null'precision' => null'limits' => array('amount' => array('min' => $this->safe_float($currency'min_size'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => null,  ),  ),  )
/php/exmo.php:6041$result[$code] = array('id' => $id'code' => $code'name' => $code'active' => $active'fee' => $fee'precision' => 8'limits' => array('amount' => array('min' => $this->safe_float($minAmounts$code), 'max' => $this->safe_float($maxAmounts$code),  ), 'price' => array('min' => $this->safe_float($minPrices$code), 'max' => $this->safe_float($maxPrices$code),  ), 'cost' => array('min' => $this->safe_float($minCosts$code), 'max' => $this->safe_float($maxCosts$code),  ),  ), 'info' => $id,  )
/php/exmo.php:6591$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'taker' => $taker 100'maker' => $maker 100'limits' => array('amount' => array('min' => $this->safe_float($market'min_quantity'), 'max' => $this->safe_float($market'max_quantity'),  ), 'price' => array('min' => $this->safe_float($market'min_price'), 'max' => $this->safe_float($market'max_price'),  ), 'cost' => array('min' => $this->safe_float($market'min_amount'), 'max' => $this->safe_float($market'max_amount'),  ),  ), 'precision' => array('amount' => 8'price' => $this->safe_integer($market'price_precision'),  ), 'info' => $market,  )
/php/idex2.php:1561$result[] = array('symbol' => $symbol'id' => $marketId'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'info' => $entry'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/idex2.php:5431$result[$code] = array('id' => $currencyId'code' => $code'info' => $entry'type' => null'name' => $name'active' => null'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => $lot'max' => null), 'price' => array('min' => $lot'max' => null), 'cost' => array('min' => null'max' => null), 'withdraw' => array('min' => $lot'max' => null),  ),  )
/php/idex2.php:9421$byteArray = [$this->number_to_be($orderVersion1), $this->base16_to_binary($nonce), $this->base16_to_binary($walletBytes), $this->encode($market['id']), $this->number_to_be($typeEnum1), $this->number_to_be($sideEnum1), $this->encode($amountString), $this->number_to_be($amountEnum1),  ]
/php/idex2.php:9651$request = array('parameters' => array('nonce' => $nonce'market' => $market['id'], 'side' => $side'type' => $type'wallet' => $this->walletAddress'timeInForce' => $timeInForce'selfTradePrevention' => $selfTradePrevention,  ), 'signature' => $signature,  )
/php/deribit.php:4461$result[] = array('id' => $id'symbol' => $id'base' => $base'quote' => $quote'active' => $active'precision' => $precision'taker' => $this->safe_float($market'taker_commission'), 'maker' => $this->safe_float($market'maker_commission'), 'limits' => array('amount' => array('min' => $minTradeAmount'max' => null,  ), 'price' => array('min' => $tickSize'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ), 'type' => $type'spot' => false'future' => $future'option' => $option'info' => $market,  )
/php/vaultoro.php:806$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => null'precision' => $this->precision'limits' => $this->limits,  )
/php/exx.php:1221$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => pow(10$precision['amount']),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market,  )
/php/crex24.php:2841$result[$code] = array('id' => $id'code' => $code'address' => $address'info' => $currency'type' => $type'name' => $this->safe_string($currency'name'), 'active' => $active'fee' => $this->safe_float($currency'flatWithdrawalFee'), 'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'deposit' => array('min' => $this->safe_float($currency'minDeposit'), 'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'minWithdrawal'), 'max' => $this->safe_float($currency'maxWithdrawal'),  ),  ),  )
/php/crex24.php:2181$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => $minAmount'max' => null,  ), 'price' => array('min' => $minPrice'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/coss.php:6071$result = array('id' => $id'info' => $trade'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'symbol' => $symbol'order' => $orderId'type' => null'side' => $side'takerOrMaker' => null'price' => $price'amount' => $amount'cost' => $cost'fee' => null,  )
/php/coss.php:2781$result[$code] = array('id' => $currencyId'code' => $code'info' => $currency'name' => $name'active' => $active'fee' => $fee'precision' => $precision'type' => $type'limits' => array('amount' => array('min' => $this->safe_float($currency'minimum_order_amount'), 'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'minimum_withdrawn_amount'), 'max' => null,  ),  ),  )
/php/stex.php:2531$result[$code] = array('id' => $id'numericId' => $numericId'code' => $code'info' => $currency'type' => null'name' => $this->safe_string($currency'name'), 'active' => $active'fee' => $fee'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => null), 'price' => array('min' => pow(10, -$precision), 'max' => null), 'cost' => array('min' => null'max' => null), 'deposit' => array('min' => $this->safe_float($currency'minimum_deposit_amount'), 'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'minimum_withdrawal_amount'), 'max' => null,  ),  ),  )
/php/bitbay.php:12221$headers = array('Request-Timestamp' => $nonce'Operation-Id' => $this->uuid( ), 'API-Key' => $this->apiKey'API-Hash' => $this->hmac($this->encode($payload), $this->encode($this->secret), 'sha512'), 'Content-Type' => 'application/json',  )
/php/bitbay.php:10961$trades $this->parse_trades($transactions$marketnullnull, array('timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'symbol' => $symbol'side' => $side'type' => $type'orderId' => $id,  ))
/php/bitbay.php:2871$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'active' => null'maker' => $maker'taker' => $taker'limits' => array('amount' => array('min' => $this->safe_float($first'minOffer'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($second'minOffer'), 'max' => null,  ),  ), 'info' => $item,  )
/php/zb.php:1951$result[] = array('id' => $id'symbol' => $symbol'baseId' => $baseId'quoteId' => $quoteId'base' => $base'quote' => $quote'active' => true'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => 0'max' => null,  ),  ), 'info' => $market,  )
/php/stex.php:10001$request = array('currencyPairId' => $market['id'], 'type' => strtoupper($type), 'amount' => floatval($this->amount_to_precision($symbol$amount)), 'price' => floatval($this->price_to_precision($symbol$price)),  )
/php/stex.php:9471$result = array('info' => $order'id' => $id'clientOrderId' => null'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => null'symbol' => $symbol'type' => $type'side' => $side'price' => $price'amount' => $amount'cost' => $cost'average' => null'filled' => $filled'remaining' => $remaining'status' => $status'trades' => $trades,  )
/php/stex.php:3391$result[] = array('id' => $id'numericId' => $numericId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'baseNumericId' => $baseNumericId'quoteNumericId' => $quoteNumericId'info' => $market'active' => $active'maker' => $fee'taker' => $fee'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'min_order_amount'), 'max' => null,  ), 'price' => array('min' => $minPrice'max' => null), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/yobit.php:2792$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'taker' => $market['fee'] / 100'precision' => $precision'limits' => $limits'info' => $market,  )
/php/coinegg.php:3961$order $this->parse_order(array('id' => $id'datetime' => $this->ymdhms($this->milliseconds( )), 'amount_original' => $amount'amount_outstanding' => $amount'price' => $price'type' => $side'info' => $response,  ), $market)
/php/coinegg.php:1851$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => pow(10$precision['amount']),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $ticker,  )
/php/zb.php:4191$request = array('price' => $this->price_to_precision($symbol$price), 'amount' => $this->amount_to_precision($symbol$amount), 'tradeType' => ($side === 'buy') ? '1' '0''currency' => $this->market_id($symbol),  )
/php/bytetrade.php:6411$allByteStringArray = array($this->number_to_be(132), $this->number_to_le((int) floor($now 1000), 4), $this->number_to_le(11), $this->number_to_le((int) floor($expiration 1000), 4), $this->number_to_le(11), $this->number_to_le(321), $this->number_to_le(08), $this->number_to_le($fee8), $this->number_to_le(strlen($this->apiKey), 1), $this->encode($this->apiKey), $this->number_to_le($sideNum1), $this->number_to_le($typeNum1), $this->number_to_le(strlen($normalSymbol), 1), $this->encode($normalSymbol), $this->number_to_le($this->integer_divide($amountChain$eightBytes), 8), $this->number_to_le($this->integer_modulo($amountChain$eightBytes), 8), $this->number_to_le($this->integer_divide($priceChain$eightBytes), 8), $this->number_to_le($this->integer_modulo($priceChain$eightBytes), 8), $this->number_to_le(02), $this->number_to_le((int) floor($now 1000), 4), $this->number_to_le((int) floor($expiration 1000), 4), $this->number_to_le(02), $this->number_to_le(intval($quoteId), 4), $this->number_to_le(intval($baseId), 4), $this->number_to_le(01), $this->number_to_le(11), $this->number_to_le(strlen($dappId), 1), $this->encode($dappId), $this->number_to_le(01),  )
/php/bytetrade.php:6721$txByteStringArray = array($this->number_to_le((int) floor($now 1000), 4), $this->number_to_le(11), $this->number_to_le((int) floor($expiration 1000), 4), $this->number_to_le(11), $this->number_to_le(321), $this->number_to_le(08), $this->number_to_le($fee8), $this->number_to_le(strlen($this->apiKey), 1), $this->encode($this->apiKey), $this->number_to_le($sideNum1), $this->number_to_le($typeNum1), $this->number_to_le(strlen($normalSymbol), 1), $this->encode($normalSymbol), $this->number_to_le($this->integer_divide($amountChain$eightBytes), 8), $this->number_to_le($this->integer_modulo($amountChain$eightBytes), 8), $this->number_to_le($this->integer_divide($priceChain$eightBytes), 8), $this->number_to_le($this->integer_modulo($priceChain$eightBytes), 8), $this->number_to_le(02), $this->number_to_le((int) floor($now 1000), 4), $this->number_to_le((int) floor($expiration 1000), 4), $this->number_to_le(02), $this->number_to_le(intval($quoteId), 4), $this->number_to_le(intval($baseId), 4), $this->number_to_le(01), $this->number_to_le(11), $this->number_to_le(strlen($dappId), 1), $this->encode($dappId), $this->number_to_le(01),  )
/php/bytetrade.php:2011$result[$code] = array('id' => $id'code' => $code'name' => $name'active' => $active'precision' => array('amount' => $amountPrecision'price' => null,  ), 'fee' => null'limits' => array('amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null), 'deposit' => array('min' => $this->safe_float($deposit'min'), 'max' => $maxDeposit,  ), 'withdraw' => array('min' => $this->safe_float($withdraw'min'), 'max' => $maxWithdraw,  ),  ), 'info' => $currency,  )
/php/bytetrade.php:2581$entry = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => $active'precision' => array('amount' => $this->safe_integer($precision'amount'), 'price' => $this->safe_integer($precision'price'),  ), 'normalSymbol' => $normalSymbol'limits' => array('amount' => array('min' => $this->safe_float($amount'min'), 'max' => $this->safe_float($amount'max'),  ), 'price' => array('min' => $this->safe_float($price'min'), 'max' => $this->safe_float($price'max'),  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/bytetrade.php:9741$byteStringArray = array($this->number_to_be(132), $this->number_to_le((int) floor($now 1000), 4), $this->number_to_le(11), $this->number_to_le((int) floor($expiration 1000), 4), $this->number_to_le(11), $this->number_to_le(281), $this->number_to_le(08), $this->number_to_le($feeAmount8), $this->number_to_le(strlen($this->apiKey), 1), $this->encode($this->apiKey), $this->number_to_le(strlen($address), 1), $this->encode($address), $this->number_to_le($assetType4), $this->number_to_le($this->integer_divide($amountChain$eightBytes), 8), $this->number_to_le($this->integer_modulo($amountChain$eightBytes), 8), $this->number_to_le(11), $this->number_to_le(strlen($message), 1), $this->encode($message), $this->number_to_le(01), $this->number_to_le(11), $this->number_to_le(strlen($dappId), 1), $this->encode($dappId), $this->number_to_le(01),  )
/php/bytetrade.php:12491$byteStringArray = array($this->number_to_be(132), $this->number_to_le((int) floor($now 1000), 4), $this->number_to_le(11), $this->number_to_le((int) floor($expiration 1000), 4), $this->number_to_le(11), $this->number_to_le($operationId1), $this->number_to_le(08), $this->number_to_le($feeAmount8), $this->number_to_le(strlen($this->apiKey), 1), $this->encode($this->apiKey), $this->number_to_le(strlen($address), 1), $this->encode($address), $this->number_to_le(intval($coinId), 4), $this->number_to_le($this->integer_divide($amountChain$eightBytes), 8), $this->number_to_le($this->integer_modulo($amountChain$eightBytes), 8), $this->number_to_le(11), $this->number_to_le($this->integer_divide($assetFee$eightBytes), 8), $this->number_to_le($this->integer_modulo($assetFee$eightBytes), 8), $this->number_to_le(01), $this->number_to_le(11), $this->number_to_le(strlen($dappId), 1), $this->encode($dappId), $this->number_to_le(01),  )
/php/bytetrade.php:7181$operation = array('now' => $datetime'expiration' => $expirationDatetime'fee' => $fee'creator' => $this->apiKey'side' => $sideNum'order_type' => $typeNum'market_name' => $normalSymbol'amount' => $amountChain'price' => $priceChain'use_btt_as_fee' => false'money_id' => intval($quoteId), 'stock_id' => intval($baseId),  )
/php/bytetrade.php:8751$byteStringArray = array($this->number_to_be(132), $this->number_to_le((int) floor($now 1000), 4), $this->number_to_le(11), $this->number_to_le($expiration4), $this->number_to_le(11), $this->number_to_le(331), $this->number_to_le(08), $this->number_to_le($feeAmount8), $this->number_to_le(strlen($this->apiKey), 1), $this->encode($this->apiKey), $this->number_to_le(strlen($normalSymbol), 1), $this->encode($normalSymbol), $this->base16_to_binary($id), $this->number_to_le(intval($quoteId), 4), $this->number_to_le(intval($baseId), 4), $this->number_to_le(01), $this->number_to_le(11), $this->number_to_le(strlen($dappId), 1), $this->encode($dappId), $this->number_to_le(01),  )
/php/bitso.php:1271$limits = array('amount' => array('min' => $this->safe_float($market'minimum_amount'), 'max' => $this->safe_float($market'maximum_amount'),  ), 'price' => array('min' => $this->safe_float($market'minimum_price'), 'max' => $this->safe_float($market'maximum_price'),  ), 'cost' => array('min' => $this->safe_float($market'minimum_value'), 'max' => $this->safe_float($market'maximum_value'),  ),  )
/php/bitso.php:1411$precision = array('amount' => $this->safe_integer($this->options['precision'], $base$this->options['defaultPrecision']), 'price' => $this->safe_integer($this->options['precision'], $quote$this->options['defaultPrecision']),  )
/php/bytetrade.php:12751$byteStringArray = array($this->number_to_be(132), $this->number_to_le((int) floor($now 1000), 4), $this->number_to_le(11), $this->number_to_le((int) floor($expiration 1000), 4), $this->number_to_le(11), $this->number_to_le($operationId1), $this->number_to_le(08), $this->number_to_le($feeAmount8), $this->number_to_le(strlen($this->apiKey), 1), $this->encode($this->apiKey), $this->number_to_le((int) floor($now 1000), 4), $this->number_to_le(11), $this->number_to_le(41), $this->number_to_le(08), $this->number_to_le($feeAmount8), $this->number_to_le(strlen($this->apiKey), 1), $this->encode($this->apiKey), $this->number_to_le(strlen($middleAddress), 1), $this->encode($middleAddress), $this->number_to_le(intval($coinId), 4), $this->number_to_le($this->integer_divide($amountChain$eightBytes), 8), $this->number_to_le($this->integer_modulo($amountChain$eightBytes), 8), $this->number_to_le(01), $this->number_to_le(11), $this->number_to_le(strlen($dappId), 1), $this->encode($dappId), $this->number_to_le(01),  )
/php/kuna.php:871$markets[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => pow(10$precision['amount']),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'active' => null'info' => null,  )
/php/lakebtc.php:916$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => null'precision' => $this->precision'limits' => $this->limits,  )
/php/coss.php:1821$result[] = array('symbol' => $symbol'id' => $marketId'baseId' => $baseId'quoteId' => $quoteId'base' => $base'quote' => $quote'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => $minAmount'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $minCost'max' => null,  ),  ), 'info' => $market,  )
/php/bitso.php:1451$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'limits' => $limits'precision' => $precision'active' => null,  )
/php/coinbasepro.php:2241$result[] = array_merge($this->fees['trading'], array('id' => $id'symbol' => $symbol'baseId' => $baseId'quoteId' => $quoteId'base' => $base'quote' => $quote'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'base_min_size'), 'max' => $this->safe_float($market'base_max_size'),  ), 'price' => $priceLimits'cost' => array('min' => $this->safe_float($market'min_market_funds'), 'max' => $this->safe_float($market'max_market_funds'),  ),  ), 'active' => $active'info' => $market,  ))
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:2011$st[$j] = [((($t[($n) % 4] << $m) | ($t[($n) % 4] >> (16 $m))) & (0xFFFF)), ((($t[($n) % 4] << $m) | ($t[($n) % 4] >> (16 $m))) & (0xFFFF)), ((($t[($n) % 4] << $m) | ($t[($n) % 4] >> (16 $m))) & (0xFFFF)), ((($t[($n) % 4] << $m) | ($t[($n) % 4] >> (16 $m))) & (0xFFFF))]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:1821$st[$j $i] = [$st[$j $i][0] ^ $t[0], $st[$j $i][1] ^ $t[1], $st[$j $i][2] ^ $t[2], $st[$j $i][3] ^ $t[3]]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:1741$t = [$bc[($i 4) % 5][0] ^ ((($bc[($i 1) % 5][0] << 1) | ($bc[($i 1) % 5][1] >> 15)) & (0xFFFF)), $bc[($i 4) % 5][1] ^ ((($bc[($i 1) % 5][1] << 1) | ($bc[($i 1) % 5][2] >> 15)) & (0xFFFF)), $bc[($i 4) % 5][2] ^ ((($bc[($i 1) % 5][2] << 1) | ($bc[($i 1) % 5][3] >> 15)) & (0xFFFF)), $bc[($i 4) % 5][3] ^ ((($bc[($i 1) % 5][3] << 1) | ($bc[($i 1) % 5][0] >> 15)) & (0xFFFF))]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:1651$bc[$i] = [$st[$i][0] ^ $st[$i 5][0] ^ $st[$i 10][0] ^ $st[$i 15][0] ^ $st[$i 20][0], $st[$i][1] ^ $st[$i 5][1] ^ $st[$i 10][1] ^ $st[$i 15][1] ^ $st[$i 20][1], $st[$i][2] ^ $st[$i 5][2] ^ $st[$i 10][2] ^ $st[$i 15][2] ^ $st[$i 20][2], $st[$i][3] ^ $st[$i 5][3] ^ $st[$i 10][3] ^ $st[$i 15][3] ^ $st[$i 20][3]]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:831$st[$j $i] = [$st[$j $i][0] ^ ~$bc[($i 1) % 5][0] & $bc[($i 2) % 5][0], $st[$j $i][1] ^ ~$bc[($i 1) % 5][1] & $bc[($i 2) % 5][1]]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:691$st[$j] = [(($hi << $n) | ($lo >> (32 $n))) & (0xFFFFFFFF), (($lo << $n) | ($hi >> (32 $n))) & (0xFFFFFFFF)]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:401$t = [$bc[($i 4) % 5][0] ^ (($bc[($i 1) % 5][0] << 1) | ($bc[($i 1) % 5][1] >> 31)) & (0xFFFFFFFF), $bc[($i 4) % 5][1] ^ (($bc[($i 1) % 5][1] << 1) | ($bc[($i 1) % 5][0] >> 31)) & (0xFFFFFFFF)]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:331$bc[$i] = [$st[$i][0] ^ $st[$i 5][0] ^ $st[$i 10][0] ^ $st[$i 15][0] ^ $st[$i 20][0], $st[$i][1] ^ $st[$i 5][1] ^ $st[$i 10][1] ^ $st[$i 15][1] ^ $st[$i 20][1]]
/php/static_dependencies/elliptic-php/lib/EC.php:1141$drbg = new HmacDRBG(array("hash" => $this->hash"entropy" => array_key_exists('extraEntropy'$options) ? array_merge($bkey$options['extraEntropy']) : $bkey"nonce" => $nonce"pers" => isset($options["pers"]) ? $options["pers"] : """persEnc" => isset($options["persEnc"]) ? $options["persEnc"] : false))
/php/static_dependencies/elliptic-php/lib/EC.php:581$drbg = new HmacDRBG(array("hash" => $this->hash"pers" => isset($options["pers"]) ? $options["pers"] : """entropy" => isset($options["entropy"]) ? $options["entropy"] : Utils::randBytes($this->hash["hmacStrength"]), "nonce" => $this->n->toArray( )))
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:2732$st[$i] = [$st[$i][0] ^ $t[4], $st[$i][1] ^ $t[3], $st[$i][2] ^ $t[2], $st[$i][3] ^ $t[1]]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:2532$st[$i] = [$st[$i][0] ^ $t[4], $st[$i][1] ^ $t[3], $st[$i][2] ^ $t[2], $st[$i][3] ^ $t[1]]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:2271$st[0] = [$st[0][0] ^ $keccakf_rndc[$round][0], $st[0][1] ^ $keccakf_rndc[$round][1], $st[0][2] ^ $keccakf_rndc[$round][2], $st[0][3] ^ $keccakf_rndc[$round][3]]
/php/static_dependencies/kornrunner/keccak/src/Keccak.php:2171$st[$j $i] = [$st[$j $i][0] ^ ~$bc[($i 1) % 5][0] & $bc[($i 2) % 5][0], $st[$j $i][1] ^ ~$bc[($i 1) % 5][1] & $bc[($i 2) % 5][1], $st[$j $i][2] ^ ~$bc[($i 1) % 5][2] & $bc[($i 2) % 5][2], $st[$j $i][3] ^ ~$bc[($i 1) % 5][3] & $bc[($i 2) % 5][3]]
/php/hitbtc.php:3021$result[$code] = array('id' => $id'code' => $code'type' => $type'payin' => $payin'payout' => $payout'transfer' => $transfer'info' => $currency'name' => $name'active' => $active'fee' => $this->safe_float($currency'payoutFee'), 'precision' => $precision'limits' => array('amount' => array('min' => pow(10$decimals), 'max' => pow(10$decimals),  ), 'price' => array('min' => pow(10$decimals), 'max' => pow(10$decimals),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => pow(10$precision),  ),  ),  )
/php/lykke.php:3681$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'active' => true'info' => $market'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => pow(10$precision['amount']),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'baseId' => null'quoteId' => null,  )
/php/wavesexchange.php:16251$request = array('senderPublicKey' => $this->apiKey'amount' => $amountInteger'fee' => $fee'type' => $type'version' => $version'attachment' => '''feeAssetId' => $this->get_asset_id($feeAssetId), 'proofs' => array($signature,  ), 'assetId' => $this->get_asset_id($currency['id']), 'recipient' => $proxyAddress'timestamp' => $timestamp'signature' => $signature,  )
/php/hitbtc.php:2251$result[] = array_merge($this->fees['trading'], array('info' => $market'id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'taker' => $taker'maker' => $maker'precision' => $precision'feeCurrency' => $feeCurrencyCode'limits' => array('amount' => array('min' => $lot'max' => null,  ), 'price' => array('min' => $step'max' => null,  ), 'cost' => array('min' => $lot $step'max' => null,  ),  ),  ))
/php/wavesexchange.php:9791$body = array('senderPublicKey' => $this->apiKey'matcherPublicKey' => $matcherPublicKey'assetPair' => $assetPair'orderType' => $side'price' => $price'amount' => $amount'timestamp' => $timestamp'expiration' => $expiration'matcherFee' => $matcherFee'signature' => $signature'version' => 3,  )
/php/wavesexchange.php:16101$byteArray = [$this->number_to_be(41), $this->number_to_be(21), $this->base58_to_binary($this->apiKey), $this->get_asset_bytes($currency['id']), $this->get_asset_bytes($feeAssetId), $this->number_to_be($timestamp8), $this->number_to_be($amountInteger8), $this->number_to_be($fee8), $this->base58_to_binary($proxyAddress), $this->number_to_be(02),  ]
/php/bitflyer.php:1461$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'maker' => $maker'taker' => $taker'type' => $type'spot' => $spot'future' => $future'info' => $market,  )
/php/wavesexchange.php:9591$byteArray = [$this->number_to_be(31), $this->base58_to_binary($this->apiKey), $this->base58_to_binary($matcherPublicKey), $this->get_asset_bytes($market['baseId']), $this->get_asset_bytes($market['quoteId']), $this->number_to_be($orderType1), $this->number_to_be($price8), $this->number_to_be($amount8), $this->number_to_be($timestamp8), $this->number_to_be($expiration8), $this->number_to_be($matcherFee8), $this->get_asset_bytes($matcherFeeAssetId),  ]
/php/base/Exchange.php:27751$unpacked = array($order['exchangeContractAddress'], $order['maker'], $order['taker'], $order['makerTokenAddress'], $order['takerTokenAddress'], $order['feeRecipient'], $order['makerTokenAmount'], $order['takerTokenAmount'], $order['makerFee'], $order['takerFee'], $order['expirationUnixTimestampSec'], $order['salt'],  )
/php/base/Exchange.php:28681$code = ($hmac[$offset 0] & 0x7F) << 24 | ($hmac[$offset 1] & 0xFF) << 16 | ($hmac[$offset 2] & 0xFF) << | ($hmac[$offset 3] & 0xFF)
/php/okex.php:9881$result[$code] = array('id' => $id'code' => $code'info' => $currency'type' => null'name' => $name'active' => $active'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null), 'withdraw' => array('min' => $this->safe_float($currency'min_withdrawal'), 'max' => null,  ),  ),  )
/php/base/Exchange.php:22091$result[] = array($ms $ohlcvs[$t][$i] : ($ohlcvs[$t][$i] * 1000), $ohlcvs[$o][$i], $ohlcvs[$h][$i], $ohlcvs[$l][$i], $ohlcvs[$c][$i], $ohlcvs[$v][$i],  )
/php/bybit.php:3811$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'active' => null'precision' => $precision'taker' => $this->safe_float($market'taker_fee'), 'maker' => $this->safe_float($market'maker_fee'), 'type' => 'future''spot' => false'future' => true'option' => false'linear' => $linear'inverse' => $inverse'limits' => array('amount' => array('min' => $this->safe_float($lotSizeFilter'min_trading_qty'), 'max' => $this->safe_float($lotSizeFilter'max_trading_qty'),  ), 'price' => array('min' => $this->safe_float($priceFilter'min_price'), 'max' => $this->safe_float($priceFilter'max_price'),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market,  )
/php/coingi.php:1231$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $id'active' => true'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => pow(10$precision['amount']),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => 0'max' => null,  ),  ),  )
/php/coinmarketcap.php:1726$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => null'precision' => $this->precision'limits' => $this->limits,  )
/php/coinmarketcap.php:2901$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => $name'active' => true'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => null,  ),  ),  )
/php/novadax.php:1952$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'limits' => $limits'info' => $market'active' => $active,  )
/php/bitforex.php:2581$limits = array('amount' => array('min' => $this->safe_float($market'minOrderAmount'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  )
/php/bitforex.php:2724$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'limits' => $limits'info' => $market,  )
/php/bitforex.php:4921$result = array('info' => $order'id' => $id'clientOrderId' => null'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => $lastTradeTimestamp'symbol' => $symbol'type' => $type'side' => $side'price' => $price'cost' => $cost'average' => $average'amount' => $amount'filled' => $filled'remaining' => $remaining'status' => $status'fee' => $fee'trades' => null,  )
/php/independentreserve.php:1051$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $id'active' => null'precision' => $this->precision'limits' => $this->limits,  )
/php/bitvavo.php:2781$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'minOrderInBaseAsset'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($market'minOrderInQuoteAsset'), 'max' => null,  ),  ),  )
/php/bitvavo.php:3551$result[$code] = array('id' => $id'info' => $currency'code' => $code'name' => $name'active' => $active'fee' => $this->safe_float($currency'withdrawalFee'), 'precision' => $precision'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'withdrawalMinAmount'), 'max' => null,  ),  ),  )
/php/bitvavo.php:4491$result = array('symbol' => $symbol'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'high' => $this->safe_float($ticker'high'), 'low' => $this->safe_float($ticker'low'), 'bid' => $this->safe_float($ticker'bid'), 'bidVolume' => $this->safe_float($ticker'bidSize'), 'ask' => $this->safe_float($ticker'ask'), 'askVolume' => $this->safe_float($ticker'askSize'), 'vwap' => $vwap'open' => $open'close' => $last'last' => $last'previousClose' => null'change' => $change'percentage' => $percentage'average' => $average'baseVolume' => $baseVolume'quoteVolume' => $quoteVolume'info' => $ticker,  )
/php/bcex.php:5551$result = array('info' => $order'id' => $id'clientOrderId' => null'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => null'symbol' => $symbol'type' => $type'side' => $side'price' => $price'cost' => $cost'average' => $average'amount' => $amount'filled' => $filled'remaining' => $remaining'status' => $status'fee' => $fee'trades' => null,  )
/php/tidebit.php:1636$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => null'precision' => $this->precision'limits' => $this->limits,  )
/php/eterbase.php:3061$result[$code] = array('id' => $id'info' => $currency'code' => $code'type' => $type'name' => $name'active' => $active'fee' => $this->safe_float($currency'withdrawalFee'), 'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'withdrawalMin'), 'max' => $this->safe_float($currency'withdrawalMax'),  ),  ),  )
/php/eterbase.php:3621$result = array('symbol' => $symbol'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'high' => $this->safe_float($ticker'high'), 'low' => $this->safe_float($ticker'low'), 'bid' => null'bidVolume' => null'ask' => null'askVolume' => null'vwap' => $vwap'open' => null'close' => $last'last' => $last'previousClose' => null'change' => null'percentage' => $percentage'average' => null'baseVolume' => $baseVolume'quoteVolume' => $quoteVolume'info' => $ticker,  )
/php/bittrex.php:3141$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'info' => $market'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'minTradeSize'), 'max' => null,  ), 'price' => array('min' => pow(10$precision['price']), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/bittrex.php:4201$result[$code] = array('id' => $id'code' => $code'address' => $this->safe_string($currency'baseAddress'), 'info' => $currency'type' => $this->safe_string($currency'coinType'), 'name' => $this->safe_string($currency'name'), 'active' => ($isActive === 'ONLINE'), 'fee' => $fee'precision' => $precision'limits' => array('amount' => array('min' => pow(10$precision), 'max' => null,  ), 'price' => array('min' => pow(10$precision), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $fee'max' => null,  ),  ),  )
/php/therock.php:1821$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => true'maker' => $maker'taker' => $taker'precision' => array('amount' => $this->safe_integer($market'trade_currency_decimals'), 'price' => $this->safe_integer($market'base_currency_decimals'),  ), 'limits' => array('amount' => array('min' => $this->safe_float($market'minimum_quantity_offer'), 'max' => null,  ), 'price' => array('min' => $this->safe_float($market'minimum_price_offer'), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/novadax.php:1791$limits = array('amount' => array('min' => $this->safe_float($market'minOrderAmount'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($market'minOrderValue'), 'max' => null,  ),  )
/php/ice3x.php:3741$order $this->parse_order(array('order_id' => $response['response']['entity']['order_id'], 'created' => $this->seconds( ), 'active' => 1'type' => $side'price' => $price'volume' => $amount'remaining' => $amount'info' => $response,  ), $market)
/php/ice3x.php:1512$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => null'info' => $market'precision' => $this->precision'limits' => $this->limits,  )
/php/bitmart.php:4611$result[] = array('id' => $id'numericId' => $numericId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'type' => 'spot''spot' => true'future' => false'swap' => false'precision' => $precision'limits' => $limits'info' => $market'active' => null,  )
/php/bitmart.php:4471$limits = array('amount' => array('min' => $this->safe_float($market'base_min_size'), 'max' => $this->safe_float($market'base_max_size'),  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $minCost'max' => null,  ),  )
/php/bitmart.php:5941$result[] = array('id' => $id'numericId' => $numericId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'maker' => $maker'taker' => $taker'type' => $type'spot' => false'future' => $future'swap' => $swap'precision' => $precision'limits' => $limits'info' => $market'active' => null,  )
/php/bitmart.php:5661$limits = array('amount' => array('min' => $this->safe_float($contract'min_vol'), 'max' => $this->safe_float($contract'max_vol'),  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  )
/php/bcex.php:3221$result[] = array_merge(array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => array('amount' => null'price' => null,  ), 'limits' => array('amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null),  ), 'info' => $market,  ), $defaults)
/php/bitmart.php:8651$result[$code] = array('id' => $id'code' => $code'name' => $name'info' => $currency'active' => $active'fee' => null'precision' => null'limits' => array('amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null), 'withdraw' => array('min' => null'max' => null),  ),  )
/php/zaif.php:1481$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'taker' => $taker'maker' => $maker'limits' => array('amount' => array('min' => $this->safe_float($market'item_unit_min'), 'max' => null,  ), 'price' => array('min' => $this->safe_float($market'aux_unit_min'), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market,  )
/php/luno.php:1136$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => null'precision' => $this->precision'limits' => $this->limits,  )
/php/bigone.php:4891$result = array('id' => $id'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'symbol' => $symbol'order' => $orderId'type' => 'limit''side' => $side'takerOrMaker' => $takerOrMaker'price' => $price'amount' => $amount'cost' => floatval($cost), 'info' => $trade,  )
/php/bigone.php:1991$entry = array('id' => $id'uuid' => $uuid'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => $minCost'max' => null,  ),  ), 'info' => $market,  )
/php/bw.php:2921$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => $code'active' => $active'fee' => $this->safe_float($currency'drawFee'), 'precision' => null'limits' => array('amount' => array('min' => $this->safe_float($currency'limitAmount'0), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => $this->safe_float($currency'onceDrawLimit'),  ),  ),  )
/php/bw.php:1921$result[] = array('id' => $id'active' => $active'numericId' => $numericId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'baseNumericId' => $baseNumericId'quoteNumericId' => $quoteNumericId'maker' => $fee'taker' => $fee'info' => $market'precision' => array('amount' => $this->safe_integer($market'amountDecimal'), 'price' => $this->safe_integer($market'priceDecimal'),  ), 'limits' => array('amount' => array('min' => $this->safe_float($market'minAmount'), 'max' => null,  ), 'price' => array('min' => 0'max' => null,  ), 'cost' => array('min' => 0'max' => null,  ),  ),  )
/php/ice3x.php:1061$result[$code] = array('id' => $id'code' => $code'name' => $currency['name'], 'active' => true'precision' => $precision'limits' => array('amount' => array('min' => null'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $currency'fee' => null,  )
/php/bw.php:6521$request = array('amount' => $this->amount_to_precision($symbol$amount), 'price' => $this->price_to_precision($symbol$price), 'type' => ($side === 'buy') ? 0'rangeType' => 0'marketId' => $market['id'],  )
/php/bitmax.php:4411$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'type' => $type'spot' => $spot'future' => $future'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'minQty'), 'max' => $this->safe_float($market'maxQty'),  ), 'price' => array('min' => $this->safe_float($market'tickSize'), 'max' => null,  ), 'cost' => array('min' => $this->safe_float($market'minNotional'), 'max' => $this->safe_float($market'maxNotional'),  ),  ),  )
/php/bitmax.php:10681$request = array('account-group' => $accountGroup'account-category' => $accountCategory'symbol' => $market['id'], 'time' => $this->milliseconds( ), 'orderQty' => $this->amount_to_precision($symbol$amount), 'orderType' => $type'side' => $side,  )
/php/coinfalcon.php:921$result[] = array('id' => $market['name'], 'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market,  )
/php/bitmax.php:3041$result[$code] = array('id' => $id'code' => $code'info' => $currency'type' => null'margin' => $margin'name' => $this->safe_string($currency'assetName'), 'active' => $active'fee' => $fee'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'minWithdrawalAmt'), 'max' => null,  ),  ),  )
/php/upbit.php:5001$result[$symbol] = array('bids' => $this->sort_by($this->parse_bids_asks($orderbook['orderbook_units'], 'bid_price''bid_size'), 0true), 'asks' => $this->sort_by($this->parse_bids_asks($orderbook['orderbook_units'], 'ask_price''ask_size'), 0), 'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'nonce' => null,  )
/php/upbit.php:12011$result = array('info' => $order'id' => $id'clientOrderId' => null'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => $lastTradeTimestamp'symbol' => $market['symbol'], 'type' => $type'side' => $side'price' => $price'cost' => $cost'average' => $average'amount' => $amount'filled' => $filled'remaining' => $remaining'status' => $status'fee' => $fee'trades' => $trades,  )
/php/aofex.php:1991$result[] = array('id' => $id'numericId' => $numericId'symbol' => $symbol'baseId' => $baseId'quoteId' => $quoteId'base' => $base'quote' => $quote'active' => null'maker' => $makerFee 1000'taker' => $takerFee 1000'precision' => array('amount' => $this->safe_integer($precision'amount'), 'price' => $this->safe_integer($precision'price'),  ), 'limits' => array('amount' => array('min' => $this->safe_float($market'min_size'), 'max' => $this->safe_float($market'max_size'),  ), 'price' => array('min' => $this->safe_float($market'min_price'), 'max' => $this->safe_float($market'max_price'),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market,  )
/php/upbit.php:3891$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'info' => $market'precision' => $precision'maker' => $makerFee'taker' => $takerFee'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/bitpanda.php:12571$result = array('id' => $id'clientOrderId' => $clientOrderId'info' => $order'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => $lastTradeTimestamp'symbol' => $symbol'type' => $type'side' => $side'price' => $price'amount' => $amount'cost' => $cost'average' => $average'filled' => $filled'remaining' => $remaining'status' => $status'trades' => $trades,  )
/php/bitmex.php:2291$limits = array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => $tickSize'max' => $this->safe_float($market'maxPrice'),  ), 'cost' => array('min' => null'max' => null,  ),  )
/php/bitpanda.php:3221$limits = array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($market'min_size'), 'max' => null,  ),  )
/php/bitpanda.php:3382$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'limits' => $limits'info' => $market'active' => $active,  )
/php/tidex.php:2281$limits = array('amount' => array('min' => $this->safe_float($market'min_amount'), 'max' => $this->safe_float($market'max_amount'),  ), 'price' => array('min' => $this->safe_float($market'min_price'), 'max' => $this->safe_float($market'max_price'),  ), 'cost' => array('min' => $this->safe_float($market'min_total'),  ),  )
/php/tidex.php:2432$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'taker' => $market['fee'] / 100'precision' => $precision'limits' => $limits'info' => $market,  )
/php/bitmex.php:2481$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'limits' => $limits'taker' => $this->safe_float($market'takerFee'), 'maker' => $this->safe_float($market'makerFee'), 'type' => $type'spot' => false'swap' => $swap'future' => $future'prediction' => $prediction'info' => $market,  )
/php/tidex.php:1501$result[$code] = array('id' => $id'code' => $code'name' => $name'active' => $active'precision' => $precision'funding' => array('withdraw' => array('active' => $canWithdraw'fee' => $currency['withdrawFee'],  ), 'deposit' => array('active' => $canDeposit'fee' => 0.0,  ),  ), 'limits' => array('amount' => array('min' => null'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'withdrawMinAmount'), 'max' => null,  ), 'deposit' => array('min' => $this->safe_float($currency'depositMinAmount'), 'max' => null,  ),  ), 'info' => $currency,  )
/php/buda.php:1871$limits = array('amount' => array('min' => floatval($market['minimum_order_amount'][0]), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ),  )
/php/latoken.php:2261$result[$code] = array('id' => $id'numericId' => $numericId'code' => $code'info' => $currency'name' => $code'active' => $active'fee' => $fee'precision' => $precision'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => null,  ),  ),  )
/php/latoken.php:1861$result[] = array('id' => $id'numericId' => $numericId'info' => $market'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => null'precision' => $precision'limits' => $limits,  )
/php/latoken.php:1721$limits = array('amount' => array('min' => $this->safe_float($market'minQty'), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  )
/php/bitpanda.php:2741$result[$code] = array('id' => $id'code' => $code'name' => null'info' => $currency'active' => null'fee' => null'precision' => $this->safe_integer($currency'precision'), 'limits' => array('amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null), 'withdraw' => array('min' => null'max' => null),  ),  )
/php/acx.php:1381$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'info' => $market'active' => null'limits' => $this->limits,  )
/php/buda.php:2301$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => null'active' => true'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => $minimum'max' => null,  ), 'price' => array('min' => $minimum'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'deposit' => array('min' => floatval($currency['deposit_minimum'][0]), 'max' => null,  ), 'withdraw' => array('min' => floatval($currency['withdrawal_minimum'][0]),  ),  ),  )
/php/buda.php:2013$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => $limits'info' => $market,  )
/php/probit.php:3091$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => $name'active' => $active'fee' => $fee'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'deposit' => array('min' => $this->safe_float($platform'min_deposit_amount'), 'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($platform'min_withdrawal_amount'), 'max' => null,  ),  ),  )
/php/probit.php:2011$result[] = array('id' => $id'info' => $market'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'taker' => $takerFeeRate 100'maker' => $makerFeeRate 100'limits' => array('amount' => array('min' => $this->safe_float($market'min_quantity'), 'max' => $this->safe_float($market'max_quantity'),  ), 'price' => array('min' => $this->safe_float($market'min_price'), 'max' => $this->safe_float($market'max_price'),  ), 'cost' => array('min' => $this->safe_float($market'min_cost'), 'max' => $this->safe_float($market'max_cost'),  ),  ),  )
/php/hbtc.php:19121$result = array('info' => $order'id' => $id'clientOrderId' => $clientOrderId'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => null'symbol' => $symbol'type' => $type'side' => $side'price' => $price'average' => $average'cost' => $cost'amount' => $amount'filled' => $filled'remaining' => $remaining'status' => $status'trades' => null'fee' => null'fees' => null,  )
/php/btcalpha.php:1441$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'active' => true'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'minimum_order_size'), 'max' => $this->safe_float($market'maximum_order_size'),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market'baseId' => null'quoteId' => null,  )
/php/southxchange.php:2631$result = array('info' => $order'id' => $id'clientOrderId' => null'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => null'symbol' => $symbol'type' => $type'side' => $side'price' => $price'amount' => $amount'cost' => $cost'filled' => $filled'remaining' => $remaining'status' => $status'fee' => null'average' => null'trades' => null,  )
/php/southxchange.php:952$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => null'info' => $market'precision' => $this->precision'limits' => $this->limits,  )
/php/binance.php:7321$entry = array('id' => $id'lowercaseId' => $lowercaseId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'type' => $marketType'spot' => $spot'margin' => $margin'future' => $future'delivery' => $delivery'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/binance.php:7231$precision = array('base' => $this->safe_integer($market'baseAssetPrecision'), 'quote' => $this->safe_integer($market'quotePrecision'), 'amount' => $this->safe_integer($market'baseAssetPrecision'), 'price' => $this->safe_integer($market'quotePrecision'),  )
/php/stronghold.php:7071$request array_merge(array('venueId' => $this->options['venueId'], 'accountId' => $this->get_active_account( ), 'assetId' => $this->currency_id($code), 'amount' => $amount'paymentMethod' => $paymentMethod'paymentMethodDetails' => array('withdrawal_address' => $address,  ),  ), $params)
/php/stronghold.php:7881$headers = array('SH-CRED-ID' => $this->apiKey'SH-CRED-SIG' => $this->hmac($this->encode($payload), $secret'sha256''base64'), 'SH-CRED-TIME' => $timestamp'SH-CRED-PASS' => $this->password'Content-Type' => 'application/json',  )
/php/whitebit.php:1551$entry = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => $active'precision' => array('amount' => $this->safe_integer($market'stockPrec'), 'price' => $this->safe_integer($market'moneyPrec'),  ), 'limits' => array('amount' => array('min' => $this->safe_float($market'minAmount'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($market'minTotal'), 'max' => null,  ),  ),  )
/php/whitebit.php:2211$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => null'active' => $active'fee' => null'precision' => null'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'minWithdrawal'), 'max' => $this->safe_float($currency'maxWithdrawal'),  ),  ),  )
/php/ftx.php:3421$entry = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'type' => $type'future' => ($type === 'future'), 'spot' => ($type === 'spot'), 'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => $sizeIncrement'max' => null,  ), 'price' => array('min' => $priceIncrement'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market,  )
/php/timex.php:8641$limits = array('amount' => array('min' => $minAmount'max' => null), 'price' => array('min' => $priceIncrement'max' => null), 'cost' => array('min' => max($minCost$minAmount $priceIncrement), 'max' => null),  )
/php/stronghold.php:2221$result[$symbol] = array('symbol' => $symbol'id' => $marketId'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'info' => $entry'limits' => $limits'active' => null,  )
/php/stronghold.php:5091$request array_merge(array('venueId' => $this->options['venueId'], 'accountId' => $this->get_active_account( ), 'marketID' => $market['id'], 'type' => $type'side' => $side'size' => $this->amount_to_precision($symbol$amount), 'price' => $this->price_to_precision($symbol$price),  ), $params)
/php/livecoin.php:1903$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => $limits'info' => $market,  )
/php/livecoin.php:2291$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => $name'active' => $active'fee' => $fee'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($currency'minOrderAmount'), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => $this->safe_float($currency'minOrderAmount'), 'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'minWithdrawAmount'), 'max' => pow(10$precision),  ), 'deposit' => array('min' => $this->safe_float($currency'minDepositAmount'), 'max' => null,  ),  ),  )
/php/livecoin.php:2671$defaults = array('info' => null'active' => true'fee' => null'precision' => $precision'limits' => array('withdraw' => array('min' => null'max' => null), 'deposit' => array('min' => null'max' => null), 'amount' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ),  ), 'id' => null'code' => null'name' => null,  )
/php/ftx.php:2561$result[$code] = array('id' => $id'code' => $code'info' => $currency'type' => null'name' => $name'active' => null'fee' => null'precision' => null'limits' => array('withdraw' => array('min' => null'max' => null), 'amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null),  ),  )
/php/phemex.php:9761$result = array('symbol' => $symbol'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'high' => $this->from_ep($this->safe_float($ticker'highEp'), $market), 'low' => $this->from_ep($this->safe_float($ticker'lowEp'), $market), 'bid' => $this->from_ep($this->safe_float($ticker'bidEp'), $market), 'bidVolume' => null'ask' => $this->from_ep($this->safe_float($ticker'askEp'), $market), 'askVolume' => null'vwap' => $vwap'open' => $open'close' => $last'last' => $last'previousClose' => null'change' => $change'percentage' => $percentage'average' => $average'baseVolume' => $baseVolume'quoteVolume' => $quoteVolume'info' => $ticker,  )
/php/itbit.php:2211$result = array('info' => $trade'id' => $id'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'symbol' => $symbol'order' => $orderId'type' => null'side' => $side'takerOrMaker' => null'price' => $price'amount' => $amount'cost' => $cost'fee' => null,  )
/php/itbit.php:3141$result[] = array('id' => $this->safe_string($item'withdrawalId'), 'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'currency' => $this->safe_currency_code($currency), 'address' => $destinationAddress'tag' => null'txid' => $txnHash'type' => $transactionType'status' => $status'amount' => $this->safe_float($item'amount'), 'fee' => null'info' => $item,  )
/php/itbit.php:5751$request = array('side' => $side'type' => $type'currency' => str_replace($market['quote'], ''$market['id']), 'amount' => $amount'display' => $amount'price' => $price'instrument' => $market['id'],  )
/php/phemex.php:3981$limits = array('amount' => array('min' => $precision['amount'], 'max' => null,  ), 'price' => array('min' => $this->from_en($minPriceEp$priceScale$precision['price']), 'max' => $this->from_en($maxPriceEp$priceScale$precision['price']),  ), 'cost' => array('min' => null'max' => $this->parse_safe_float($this->safe_string($market'maxOrderQty')),  ),  )
/php/cex.php:11271$results[] = array('id' => $this->safe_string($order'id'), 'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastUpdated' => $this->parse8601($lastTxTime), 'status' => $status'symbol' => $symbol'side' => $side'price' => $price'amount' => $orderAmount'average' => $average'type' => $type'filled' => $filled'cost' => $cost'remaining' => $remaining'fee' => array('cost' => $fee'currency' => $quote,  ), 'info' => $order,  )
/php/phemex.php:7001$result[$code] = array('id' => $id'info' => $currency'code' => $code'name' => $name'active' => null'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => $minAmount'max' => $maxAmount,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => null,  ),  ), 'valueScale' => $valueScale,  )
/php/phemex.php:4781$limits = array('amount' => array('min' => $precision['amount'], 'max' => $this->parse_safe_float($this->safe_string($market'maxBaseOrderSize')),  ), 'price' => array('min' => $precision['price'], 'max' => null,  ), 'cost' => array('min' => $this->parse_safe_float($this->safe_string($market'minOrderValue')), 'max' => $this->parse_safe_float($this->safe_string($market'maxOrderValue')),  ),  )
/php/cex.php:2561$result[$code] = array('id' => $id'code' => $code'name' => $id'active' => $active'precision' => $precision'fee' => null'limits' => array('amount' => array('min' => $this->safe_float($currency'minimumCurrencyAmount'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'minimalWithdrawalAmount'), 'max' => null,  ),  ), 'info' => $currency,  )
/php/bitz.php:11951$body $this->rawencode($this->keysort(array_merge(array('apiKey' => $this->apiKey'timeStamp' => $this->seconds( ), 'nonce' => $this->nonce( ),  ), $params)))
/php/cex.php:8621$trades[] = array('id' => $this->safe_string($item'id'), 'timestamp' => $tradeTimestamp'datetime' => $this->iso8601($tradeTimestamp), 'order' => $orderId'symbol' => $symbol'price' => $tradePrice'amount' => $absTradeAmount'cost' => $tradeCost'side' => $tradeSide'fee' => array('cost' => $feeCost'currency' => $market['quote'],  ), 'info' => $item'type' => null'takerOrMaker' => null,  )
/php/cex.php:3491$result[] = array('id' => $id'info' => $market'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'minLotSize'), 'max' => $this->safe_float($market'maxLotSize'),  ), 'price' => array('min' => $this->safe_float($market'minPrice'), 'max' => $this->safe_float($market'maxPrice'),  ), 'cost' => array('min' => $this->safe_float($market'minLotSizeS2'), 'max' => null,  ),  ), 'active' => null,  )
/php/digifinex.php:2881$limits = array('amount' => array('min' => $this->safe_float($market'min_volume'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($market'min_amount'), 'max' => null,  ),  )
/php/digifinex.php:2391$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'type' => $type'spot' => $spot'margin' => $margin'precision' => $precision'limits' => $limits'info' => $market,  )
/php/bitz.php:2721$result[] = array('info' => $market'id' => $id'numericId' => $numericId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'minTrade'), 'max' => $this->safe_float($market'maxTrade'),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/digifinex.php:3034$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'limits' => $limits'info' => $market,  )
/php/huobipro.php:3531$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'taker' => $taker'maker' => $maker'limits' => array('amount' => array('min' => $minAmount'max' => $maxAmount,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => $minCost'max' => null,  ),  ), 'info' => $market,  )
/php/coinex.php:1921$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'taker' => $this->safe_float($market'taker_fee_rate'), 'maker' => $this->safe_float($market'maker_fee_rate'), 'info' => $market'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($market'min_amount'), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ),  ),  )
/php/digifinex.php:2101$limits = array('amount' => array('min' => $this->safe_float($market'minimum_amount'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($market'minimum_value'), 'max' => null,  ),  )
/php/huobipro.php:8371$result[$code] = array('id' => $id'code' => $code'type' => 'crypto''name' => $name'active' => $active'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'deposit' => array('min' => $this->safe_float($currency'deposit-min-amount'), 'max' => pow(10$precision),  ), 'withdraw' => array('min' => $this->safe_float($currency'withdraw-min-amount'), 'max' => pow(10$precision),  ),  ), 'info' => $currency,  )
/php/ripio.php:1761$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'maker' => $maker'taker' => $taker'limits' => $limits'info' => $market'active' => $active,  )
/php/binance.php:24501if(($api === 'private') || ($api === 'sapi') || ($api === 'wapi' && $path !== 'systemStatus') || ($api === 'dapiPrivate') || ($api === 'fapiPrivate') || ($api === 'fapiPrivateV2')) { /**/ } else { /**/ }
/php/static_dependencies/BI/BigInteger.php:2831if(($i != || $c != 45) && ($c 48 || $c 57) && ($c 65 || $c 70) && ($c 97 || $c 102)) { /**/ }
/php/base/Exchange.php:6821if(($timedata['hour'] === false) || ($timedata['minute'] === false) || ($timedata['second'] === false) || ($timedata['year'] === false) || ($timedata['month'] === false) || ($timedata['day'] === false)) { /**/ }
/php/btcmarkets.php:3321$result[] = array('info' => $market'id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => null'maker' => $fees['maker'], 'taker' => $fees['taker'], 'limits' => $limits'precision' => $precision,  )
/php/fcoin.php:2281$limits = array('amount' => array('min' => $this->safe_float($market'limit_amount_min'), 'max' => $this->safe_float($market'limit_amount_max'),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => null'max' => null,  ),  )
/php/fcoin.php:2434$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'limits' => $limits'info' => $market,  )
/php/fcoin.php:3004$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'limits' => $limits'info' => $market,  )
/php/currencycom.php:2471$entry = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'type' => $type'spot' => $spot'margin' => $margin'info' => $market'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => -log10($precision['amount']), 'max' => null,  ),  ),  )
/php/btcturk.php:881$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'info' => $market'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/coinmate.php:2191$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => null'maker' => $fees['maker'], 'taker' => $fees['taker'], 'info' => $market'precision' => array('price' => $this->safe_integer($market'priceDecimals'), 'amount' => $this->safe_integer($market'lotDecimals'),  ), 'limits' => array('amount' => array('min' => $this->safe_float($market'minAmount'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/idex.php:1621$result[] = array('symbol' => $symbol'precision' => $precision'base' => $base'quote' => $quote'baseId' => $baseAddress'quoteId' => $quoteAddress'limits' => $limits'id' => $id'info' => $baseCurrency'tierBased' => false,  )
/php/hollaex.php:5131$result = array('info' => $trade'id' => null'timestamp' => $timestamp'datetime' => $datetime'symbol' => $symbol'order' => null'type' => null'side' => $side'takerOrMaker' => null'price' => $price'amount' => $amount'cost' => $cost'fee' => $fee,  )
/php/hollaex.php:7131$result = array('id' => $id'clientOrderId' => null'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => null'status' => $status'symbol' => $symbol'type' => $type'side' => $side'price' => $price'amount' => $amount'filled' => $filled'remaining' => $remaining'cost' => $cost'trades' => null'fee' => null'info' => $order'average' => null,  )
/php/poloniex.php:3191$result[] = array('id' => $id'numericId' => $numericId'symbol' => $symbol'baseId' => $baseId'quoteId' => $quoteId'base' => $base'quote' => $quote'active' => $active'limits' => $limits'info' => $market,  )
/php/poloniex.php:4871$result[$code] = array('id' => $id'numericId' => $numericId'code' => $code'info' => $currency'name' => $currency['name'], 'active' => $active'fee' => $fee'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $fee'max' => pow(10$precision),  ),  ),  )
/php/btctradeua.php:1511$result = array('symbol' => $symbol'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'high' => null'low' => null'bid' => null'bidVolume' => null'ask' => null'askVolume' => null'vwap' => null'open' => null'close' => null'last' => null'previousClose' => null'change' => null'percentage' => null'average' => null'baseVolume' => null'quoteVolume' => null'info' => $ticker,  )
/php/hollaex.php:1921$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => array('price' => $this->safe_float($market'increment_price'), 'amount' => $this->safe_float($market'increment_size'),  ), 'limits' => array('amount' => array('min' => $this->safe_float($market'min_size'), 'max' => $this->safe_float($market'max_size'),  ), 'price' => array('min' => $this->safe_float($market'min_price'), 'max' => $this->safe_float($market'max_price'),  ), 'cost' => array('min' => null'max' => null),  ), 'info' => $market,  )
/php/hollaex.php:2371$result[$code] = array('id' => $id'numericId' => $numericId'code' => $code'info' => $currency'name' => $name'active' => $active'fee' => $fee'precision' => $precision'limits' => array('amount' => array('min' => $this->safe_float($currency'min'), 'max' => $this->safe_float($currency'max'),  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => $this->safe_value($withdrawalLimits0),  ),  ),  )
/php/hollaex.php:4051$result = array('symbol' => $symbol'info' => $ticker'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'high' => $this->safe_float($ticker'high'), 'low' => $this->safe_float($ticker'low'), 'bid' => null'bidVolume' => null'ask' => null'askVolume' => null'vwap' => null'open' => $this->safe_float($ticker'open'), 'close' => $close'last' => $this->safe_float($ticker'last'$close), 'previousClose' => null'change' => null'percentage' => null'average' => null'baseVolume' => $this->safe_float($ticker'volume'), 'quoteVolume' => null,  )
/php/liquid.php:2361$result[$code] = array('id' => $id'code' => $code'info' => $currency'name' => $code'active' => $active'fee' => $this->safe_float($currency'withdrawal_fee'), 'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$amountPrecision), 'max' => pow(10$amountPrecision),  ), 'price' => array('min' => pow(10, -$pricePrecision), 'max' => pow(10$pricePrecision),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'minimum_withdrawal'), 'max' => null,  ),  ),  )
/php/liquid.php:4111$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'type' => $type'spot' => $spot'swap' => $swap'maker' => $maker'taker' => $taker'limits' => $limits'precision' => $precision'active' => $active'info' => $market,  )
/php/rightbtc.php:1661$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => pow(10$precision['price']),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $market,  )
/php/rightbtc.php:4241$order = array('trading_pair' => $market['id'], 'quantity' => intval($this->decimal_to_precision($amount 1e8ROUND0$this->precisionMode)), 'limit' => intval($this->decimal_to_precision($price 1e8ROUND0$this->precisionMode)), 'type' => strtoupper($type), 'side' => strtoupper($side),  )
/php/gemini.php:2511$result[] = array('id' => $marketId'info' => $row'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => array('amount' => $amountPrecision'price' => $pricePrecision,  ), 'limits' => array('amount' => array('min' => $minAmount'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ),  )
/php/gemini.php:3001$result[] = array('id' => $id'info' => $market'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'precision' => $precision'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  ), 'active' => null,  )
/php/gateio.php:2251$result[$code] = array('id' => $id'code' => $code'active' => $active'info' => $currency'name' => null'fee' => null'precision' => null'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => null'max' => null,  ),  ),  )
/php/gateio.php:3301$result[] = array('id' => $id'uppercaseId' => $uppercaseId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => $active'maker' => $fee 100'taker' => $fee 100'precision' => $precision'limits' => $limits,  )
/php/dsx.php:1981$result[] = array('id' => $id'otherId' => $otherId'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'limits' => $limits'info' => $market,  )
/php/kucoin.php:3431$limits = array('amount' => array('min' => $baseMinSize'max' => $baseMaxSize,  ), 'price' => array('min' => $this->safe_float($market'priceIncrement'), 'max' => $quoteMaxSize $baseMinSize,  ), 'cost' => array('min' => $quoteMinSize'max' => $quoteMaxSize,  ),  )
/php/kucoin.php:3571$result[] = array('id' => $id'symbol' => $symbol'baseId' => $baseId'quoteId' => $quoteId'base' => $base'quote' => $quote'active' => $active'precision' => $precision'limits' => $limits'info' => $market,  )
/php/kucoin.php:8411$order = array('id' => $id'clientOrderId' => $clientOrderId'info' => $data'timestamp' => $timestamp'datetime' => $this->iso8601($timestamp), 'lastTradeTimestamp' => null'symbol' => $symbol'type' => $type'side' => $side'price' => $price'amount' => null'cost' => null'average' => null'filled' => null'remaining' => null'status' => null'fee' => null'trades' => null,  )
/php/braziliex.php:1831$result[$code] = array('id' => $id'code' => $code'name' => $currency['name'], 'active' => $active'precision' => $precision'funding' => array('withdraw' => array('active' => $canWithdraw'fee' => $this->safe_float($currency'txWithdrawalFee'),  ), 'deposit' => array('active' => $canDeposit'fee' => $this->safe_float($currency'txDepositFee'),  ),  ), 'limits' => array('amount' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'price' => array('min' => pow(10, -$precision), 'max' => pow(10$precision),  ), 'cost' => array('min' => null'max' => null,  ), 'withdraw' => array('min' => $this->safe_float($currency'MinWithdrawal'), 'max' => pow(10$precision),  ), 'deposit' => array('min' => $this->safe_float($currency'minDeposit'), 'max' => null,  ),  ), 'info' => $currency,  )
/php/braziliex.php:2751$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => pow(10$precision['amount']),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => $minCost'max' => null,  ),  ), 'info' => $market,  )
/php/braziliex.php:5191$order $this->parse_order(array('timestamp' => $this->milliseconds( ), 'order_number' => $response['order_number'], 'type' => $this->safe_string_lower($parts0), 'market' => strtolower($parts[0]), 'amount' => $this->safe_string($amountParts1), 'price' => $this->safe_string($priceParts1), 'total' => $this->safe_string($totalParts1), 'fee' => array('cost' => $this->safe_float($feeParts1), 'currency' => $this->safe_string($feeParts2),  ), 'progress' => '0.0''info' => $response,  ), $market)
/php/indodax.php:1781$limits = array('amount' => array('min' => $this->safe_float($market'trade_min_traded_currency'), 'max' => null,  ), 'price' => array('min' => $this->safe_float($market'trade_min_base_currency'), 'max' => null,  ), 'cost' => array('min' => null'max' => null,  ),  )
/php/bitfinex.php:5272$limits = array('amount' => array('min' => $this->safe_float($market'minimum_order_size'), 'max' => $this->safe_float($market'maximum_order_size'),  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ),  )
/php/indodax.php:1921$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'taker' => $taker'percentage' => true'precision' => $precision'limits' => $limits'info' => $market'active' => $active,  )
/php/bitfinex.php:7891$request = array('symbol' => $this->market_id($symbol), 'side' => $side'amount' => $this->amount_to_precision($symbol$amount), 'type' => $this->safe_string($this->options['orderTypes'], $type$type), 'ocoorder' => false'buy_price_oco' => 0'sell_price_oco' => 0,  )
/php/bitfinex.php:5413$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => $limits'info' => $market,  )
/php/bleutrade.php:1661$result[$code] = array('id' => $id'code' => $code'name' => $this->safe_string($item'AssetLong'), 'active' => $this->safe_value($item'IsActive') && !$this->safe_value($item'MaintenanceMode'), 'fee' => $this->safe_float($item'WithdrawTxFee'), 'precision' => $this->safe_float($item'DecimalPlaces'), 'info' => $item'limits' => $this->limits,  )
/php/bitstamp.php:2571$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'symbolId' => $symbolId'info' => $market'active' => $active'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ), 'cost' => array('min' => floatval($cost), 'max' => null,  ),  ),  )
/php/bleutrade.php:3761$request = array('rate' => $this->price_to_precision($symbol$price), 'quantity' => $this->amount_to_precision($symbol$amount), 'tradeType' => ($side === 'buy') ? '1' '0''market' => $this->market_id($symbol),  )
/php/bleutrade.php:2101$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => $active'info' => $market'precision' => $precision'maker' => $this->fees['trading']['maker'], 'taker' => $this->fees['trading']['taker'], 'limits' => array('amount' => array('min' => $this->safe_float($market'MinTradeSize'), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => null,  ),  ),  )
/php/oceanex.php:1441$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'info' => $market'precision' => array('amount' => $this->safe_value($market'amount_precision'), 'price' => $this->safe_value($market'price_precision'), 'base' => $this->safe_value($market'ask_precision'), 'quote' => $this->safe_value($market'bid_precision'),  ), 'limits' => array('amount' => array('min' => null'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_value($market'minimum_trading_amount'), 'max' => null,  ),  ),  )
/php/xbtce.php:1356$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'info' => $market'active' => null'precision' => $this->precision'limits' => $this->limits,  )
/php/lbank.php:6541$message $this->safe_string(array('10000' => 'Internal error''10001' => 'The required parameters can not be empty''10002' => 'verification failed''10003' => 'Illegal parameters''10004' => 'User requests are too frequent''10005' => 'Key does not exist''10006' => 'user does not exist''10007' => 'Invalid signature''10008' => 'This currency pair is not supported''10009' => 'Limit orders can not be missing orders and the number of orders''10010' => 'Order price or order quantity must be greater than 0''10011' => 'Market orders can not be missing the amount of the order''10012' => 'market sell orders can not be missing orders''10013' => 'is less than the minimum trading position 0.001''10014' => 'Account number is not enough''10015' => 'The order type is wrong''10016' => 'Account balance is not enough''10017' => 'Abnormal server''10018' => 'order inquiry can not be more than 50 less than one''10019' => 'withdrawal orders can not be more than 3 less than one''10020' => 'less than the minimum amount of the transaction limit of 0.001''10022' => 'Insufficient key authority',  ), $errorCode$this->json($response))
/php/lbank.php:1491$result[] = array('id' => $id'symbol' => $symbol'base' => $base'quote' => $quote'baseId' => $baseId'quoteId' => $quoteId'active' => true'precision' => $precision'limits' => array('amount' => array('min' => pow(10, -$precision['amount']), 'max' => null,  ), 'price' => array('min' => pow(10, -$precision['price']), 'max' => pow(10$precision['price']),  ), 'cost' => array('min' => null'max' => null,  ),  ), 'info' => $id,  )
/php/ripio.php:1571$limits = array('amount' => array('min' => $this->safe_float($market'min_amount'), 'max' => null,  ), 'price' => array('min' => null'max' => null,  ), 'cost' => array('min' => $this->safe_float($market'min_value'), 'max' => null,  ),  )
/php/lbank.php:6781$ErrorClass $this->safe_value(array('10002' => '\\ccxt\\AuthenticationError''10004' => '\\ccxt\\DDoSProtection''10005' => '\\ccxt\\AuthenticationError''10006' => '\\ccxt\\AuthenticationError''10007' => '\\ccxt\\AuthenticationError''10009' => '\\ccxt\\InvalidOrder''10010' => '\\ccxt\\InvalidOrder''10011' => '\\ccxt\\InvalidOrder''10012' => '\\ccxt\\InvalidOrder''10013' => '\\ccxt\\InvalidOrder''10014' => '\\ccxt\\InvalidOrder''10015' => '\\ccxt\\InvalidOrder''10016' => '\\ccxt\\InvalidOrder''10022' => '\\ccxt\\AuthenticationError',  ), $errorCode'\\ccxt\\ExchangeError')
/php/ripio.php:2371$result[$code] = array('id' => $id'code' => $code'name' => $name'info' => $currency'active' => $active'fee' => null'precision' => $precision'limits' => array('amount' => array('min' => null'max' => null), 'price' => array('min' => null'max' => null), 'cost' => array('min' => null'max' => null), 'withdraw' => array('min' => null'max' => null),  ),  )