Get Exchange Info

Gets a list of all known currencies.

You can use exchangeinfo endpoint for all tradable pairs and their quantity or price scales.

1. Trade Information

pairId, numeratorScale, denominatorScale, maxLimitOrderPrice and minLimitOrderPrice information can be displayed with exhangeinfo endpoint.

For more information about numeratorScale and denominatorScale, you can check our Pair Scale article.

What is maxLimitOrderPrice and minLimitOrderPrice ?

  • The maxLimitOrderPrice and minLimitOrderPrice values will be updated dynamically.

  • The values will be arranged as follows

1/10 of the current price of the pair.

minLimitOrderPrice

*10 of the current price of the pair.

maxLimitOrderPrice

Example:

namelastminLimitOrderPricemaxLimitOrderPrice

XRPTRY

15.86 TRY

1.586 TRY

158.6 TRY

Response

{
  "data": {
    "timeZone": "UTC",
    "serverTime": 1645091654418,
    "symbols": [
      {
        "id": 1,
        "name": "BTCTRY",
        "nameNormalized": "BTC_TRY",
        "status": "TRADING",
        "numerator": "BTC",
        "denominator": "TRY",
        "numeratorScale": 8,
        "denominatorScale": 2,
        "hasFraction": false,
        "filters": [
          {
            "filterType": "PRICE_FILTER",
            "minPrice": "0.0000000000001",
            "maxPrice": "10000000",
            "tickSize": "10",
            "minExchangeValue": "99.91",
            "minAmount": null,
            "maxAmount": null
          }
        ],
        "orderMethods": [
          "MARKET",
          "LIMIT",
          "STOP_MARKET",
          "STOP_LIMIT"
        ],
        "displayFormat": "#,###",
        "commissionFromNumerator": false,
        "order": 1000,
        "priceRounding": false,
        "isNew": false,
        "marketPriceWarningThresholdPercentage": 0.2500000000000000,
        "maximumOrderAmount": null,
        "maximumLimitOrderPrice": 5895000.0000000000000000,
        "minimumLimitOrderPrice": 58950.0000000000000000
      }
}

2. Currency Information

You can also view minWithdrawal, minDeposit, precision and address details with exchangeInfo endpoint.

{
                "id": 2,
                "symbol": "BTC",
                "minWithdrawal": 0.0005000000000000,
                "minDeposit": 0.0001000000000000,
                "precision": 8,
                "address": {
                    "minLen": 25,
                    "maxLen": 96
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#d48222",
                "name": "Bitcoin",
                "isAddressRenewable": true,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
}

You can check the current cryptocurrency deposit and withdrawal status with exchangeInfo endpoint.

currencySymbol, withdrawalDisabled, depositDisabled

Status changes astrue when deposits or withdrawals are turned off.

{
    "currencySymbol":"Btc",
    "withdrawalDisabled":false, --> means Btc withdrawals are enabled
    "depositDisabled":false --> means Btc deposits are enabled
}

Exchange Info

GET https://api.btcturk.com/api/v2/server/exchangeinfo

You can use https://api.btcturk.com/api/v2/server/exchangeinfo for all tradable pairs and their quantity or price scales.


    "data": {
        "timeZone": "UTC",
        "serverTime": 1641916253216,
        "symbols": [
            {
                "id": 1,
                "name": "BTCTRY",
                "nameNormalized": "BTC_TRY",
                "status": "TRADING",
                "numerator": "BTC",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 2,
                "hasFraction": false,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "10",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,###",
                "commissionFromNumerator": false,
                "order": 1000,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 131,
                "name": "AAVETRY",
                "nameNormalized": "AAVE_TRY",
                "status": "TRADING",
                "numerator": "AAVE",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1001,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 57,
                "name": "ADATRY",
                "nameNormalized": "ADA_TRY",
                "status": "TRADING",
                "numerator": "ADA",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1002,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 139,
                "name": "AMPTRY",
                "nameNormalized": "AMP_TRY",
                "status": "TRADING",
                "numerator": "AMP",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 1003,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 70,
                "name": "ANKRTRY",
                "nameNormalized": "ANKR_TRY",
                "status": "TRADING",
                "numerator": "ANKR",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 1004,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 48,
                "name": "ATOMTRY",
                "nameNormalized": "ATOM_TRY",
                "status": "TRADING",
                "numerator": "ATOM",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1005,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 141,
                "name": "AUDIOTRY",
                "nameNormalized": "AUDIO_TRY",
                "status": "TRADING",
                "numerator": "AUDIO",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1006,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 100,
                "name": "AVAXTRY",
                "nameNormalized": "AVAX_TRY",
                "status": "TRADING",
                "numerator": "AVAX",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1007,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 113,
                "name": "AXSTRY",
                "nameNormalized": "AXS_TRY",
                "status": "TRADING",
                "numerator": "AXS",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1008,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 93,
                "name": "BATTRY",
                "nameNormalized": "BAT_TRY",
                "status": "TRADING",
                "numerator": "BAT",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1009,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 107,
                "name": "CHZTRY",
                "nameNormalized": "CHZ_TRY",
                "status": "TRADING",
                "numerator": "CHZ",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1010,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 82,
                "name": "COMPTRY",
                "nameNormalized": "COMP_TRY",
                "status": "TRADING",
                "numerator": "COMP",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 1011,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 42,
                "name": "DASHTRY",
                "nameNormalized": "DASH_TRY",
                "status": "TRADING",
                "numerator": "DASH",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 1012,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 105,
                "name": "DOGETRY",
                "nameNormalized": "DOGE_TRY",
                "status": "TRADING",
                "numerator": "DOGE",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1013,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 60,
                "name": "DOTTRY",
                "nameNormalized": "DOT_TRY",
                "status": "TRADING",
                "numerator": "DOT",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1014,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 76,
                "name": "ENJTRY",
                "nameNormalized": "ENJ_TRY",
                "status": "TRADING",
                "numerator": "ENJ",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1015,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 39,
                "name": "EOSTRY",
                "nameNormalized": "EOS_TRY",
                "status": "TRADING",
                "numerator": "EOS",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1016,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 3,
                "name": "ETHTRY",
                "nameNormalized": "ETH_TRY",
                "status": "TRADING",
                "numerator": "ETH",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 2,
                "hasFraction": false,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,###",
                "commissionFromNumerator": false,
                "order": 1017,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 127,
                "name": "FETTRY",
                "nameNormalized": "FET_TRY",
                "status": "TRADING",
                "numerator": "FET",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1018,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 103,
                "name": "FILTRY",
                "nameNormalized": "FIL_TRY",
                "status": "TRADING",
                "numerator": "FIL",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1019,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 117,
                "name": "FTMTRY",
                "nameNormalized": "FTM_TRY",
                "status": "TRADING",
                "numerator": "FTM",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1020,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 133,
                "name": "GALATRY",
                "nameNormalized": "GALA_TRY",
                "status": "TRADING",
                "numerator": "GALA",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1021,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 83,
                "name": "GRTTRY",
                "nameNormalized": "GRT_TRY",
                "status": "TRADING",
                "numerator": "GRT",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1022,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 45,
                "name": "LINKTRY",
                "nameNormalized": "LINK_TRY",
                "status": "TRADING",
                "numerator": "LINK",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1023,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 119,
                "name": "LRCTRY",
                "nameNormalized": "LRC_TRY",
                "status": "TRADING",
                "numerator": "LRC",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1024,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 17,
                "name": "LTCTRY",
                "nameNormalized": "LTC_TRY",
                "status": "TRADING",
                "numerator": "LTC",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 1025,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 84,
                "name": "MANATRY",
                "nameNormalized": "MANA_TRY",
                "status": "TRADING",
                "numerator": "MANA",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1026,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 91,
                "name": "MATICTRY",
                "nameNormalized": "MATIC_TRY",
                "status": "TRADING",
                "numerator": "MATIC",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1027,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 73,
                "name": "MKRTRY",
                "nameNormalized": "MKR_TRY",
                "status": "TRADING",
                "numerator": "MKR",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 2,
                "hasFraction": false,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,###",
                "commissionFromNumerator": false,
                "order": 1028,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 36,
                "name": "NEOTRY",
                "nameNormalized": "NEO_TRY",
                "status": "TRADING",
                "numerator": "NEO",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1029,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 125,
                "name": "NUTRY",
                "nameNormalized": "NU_TRY",
                "status": "TRADING",
                "numerator": "NU",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1030,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 77,
                "name": "OMGTRY",
                "nameNormalized": "OMG_TRY",
                "status": "TRADING",
                "numerator": "OMG",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1031,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 123,
                "name": "POLYTRY",
                "nameNormalized": "POLY_TRY",
                "status": "TRADING",
                "numerator": "POLY",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1032,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 135,
                "name": "SANDTRY",
                "nameNormalized": "SAND_TRY",
                "status": "TRADING",
                "numerator": "SAND",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1033,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 115,
                "name": "SHIBTRY",
                "nameNormalized": "SHIB_TRY",
                "status": "TRADING",
                "numerator": "SHIB",
                "denominator": "TRY",
                "numeratorScale": 0,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "100",
                        "tickSize": "0.00000001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 1034,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": 1558161555.4432535000000000
            },
            {
                "id": 92,
                "name": "SNXTRY",
                "nameNormalized": "SNX_TRY",
                "status": "TRADING",
                "numerator": "SNX",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1035,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 109,
                "name": "SOLTRY",
                "nameNormalized": "SOL_TRY",
                "status": "TRADING",
                "numerator": "SOL",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1036,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 143,
                "name": "SPELLTRY",
                "nameNormalized": "SPELL_TRY",
                "status": "TRADING",
                "numerator": "SPELL",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 1037,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 129,
                "name": "STORJTRY",
                "nameNormalized": "STORJ_TRY",
                "status": "TRADING",
                "numerator": "STORJ",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1038,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 111,
                "name": "STXTRY",
                "nameNormalized": "STX_TRY",
                "status": "TRADING",
                "numerator": "STX",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1039,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 54,
                "name": "TRXTRY",
                "nameNormalized": "TRX_TRY",
                "status": "TRADING",
                "numerator": "TRX",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 1040,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 121,
                "name": "UMATRY",
                "nameNormalized": "UMA_TRY",
                "status": "TRADING",
                "numerator": "UMA",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1041,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 67,
                "name": "UNITRY",
                "nameNormalized": "UNI_TRY",
                "status": "TRADING",
                "numerator": "UNI",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1042,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 63,
                "name": "USDCTRY",
                "nameNormalized": "USDC_TRY",
                "status": "TRADING",
                "numerator": "USDC",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1043,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 18,
                "name": "USDTTRY",
                "nameNormalized": "USDT_TRY",
                "status": "TRADING",
                "numerator": "USDT",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1044,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 31,
                "name": "XLMTRY",
                "nameNormalized": "XLM_TRY",
                "status": "TRADING",
                "numerator": "XLM",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1045,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 16,
                "name": "XRPTRY",
                "nameNormalized": "XRP_TRY",
                "status": "TRADING",
                "numerator": "XRP",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1046,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 51,
                "name": "XTZTRY",
                "nameNormalized": "XTZ_TRY",
                "status": "TRADING",
                "numerator": "XTZ",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1047,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 19,
                "name": "BTCUSDT",
                "nameNormalized": "BTC_USDT",
                "status": "TRADING",
                "numerator": "BTC",
                "denominator": "USDT",
                "numeratorScale": 8,
                "denominatorScale": 0,
                "hasFraction": false,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "1",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,###",
                "commissionFromNumerator": false,
                "order": 2001,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 132,
                "name": "AAVEUSDT",
                "nameNormalized": "AAVE_USDT",
                "status": "TRADING",
                "numerator": "AAVE",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 2002,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 59,
                "name": "ADAUSDT",
                "nameNormalized": "ADA_USDT",
                "status": "TRADING",
                "numerator": "ADA",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2003,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 140,
                "name": "AMPUSDT",
                "nameNormalized": "AMP_USDT",
                "status": "TRADING",
                "numerator": "AMP",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 5,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.00001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000",
                "commissionFromNumerator": false,
                "order": 2004,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 72,
                "name": "ANKRUSDT",
                "nameNormalized": "ANKR_USDT",
                "status": "TRADING",
                "numerator": "ANKR",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 5,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.00001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000",
                "commissionFromNumerator": false,
                "order": 2005,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 49,
                "name": "ATOMUSDT",
                "nameNormalized": "ATOM_USDT",
                "status": "TRADING",
                "numerator": "ATOM",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2006,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 142,
                "name": "AUDIOUSDT",
                "nameNormalized": "AUDIO_USDT",
                "status": "TRADING",
                "numerator": "AUDIO",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2007,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 101,
                "name": "AVAXUSDT",
                "nameNormalized": "AVAX_USDT",
                "status": "TRADING",
                "numerator": "AVAX",
                "denominator": "USDT",
                "numeratorScale": 3,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2008,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 114,
                "name": "AXSUSDT",
                "nameNormalized": "AXS_USDT",
                "status": "TRADING",
                "numerator": "AXS",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 2009,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 98,
                "name": "BATUSDT",
                "nameNormalized": "BAT_USDT",
                "status": "TRADING",
                "numerator": "BAT",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2010,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 108,
                "name": "CHZUSDT",
                "nameNormalized": "CHZ_USDT",
                "status": "TRADING",
                "numerator": "CHZ",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2011,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 85,
                "name": "COMPUSDT",
                "nameNormalized": "COMP_USDT",
                "status": "TRADING",
                "numerator": "COMP",
                "denominator": "USDT",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 2012,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 44,
                "name": "DASHUSDT",
                "nameNormalized": "DASH_USDT",
                "status": "TRADING",
                "numerator": "DASH",
                "denominator": "USDT",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 2013,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 106,
                "name": "DOGEUSDT",
                "nameNormalized": "DOGE_USDT",
                "status": "TRADING",
                "numerator": "DOGE",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2014,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 62,
                "name": "DOTUSDT",
                "nameNormalized": "DOT_USDT",
                "status": "TRADING",
                "numerator": "DOT",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2015,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 78,
                "name": "ENJUSDT",
                "nameNormalized": "ENJ_USDT",
                "status": "TRADING",
                "numerator": "ENJ",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2016,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 40,
                "name": "EOSUSDT",
                "nameNormalized": "EOS_USDT",
                "status": "TRADING",
                "numerator": "EOS",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2017,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 20,
                "name": "ETHUSDT",
                "nameNormalized": "ETH_USDT",
                "status": "TRADING",
                "numerator": "ETH",
                "denominator": "USDT",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 2018,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 128,
                "name": "FETUSDT",
                "nameNormalized": "FET_USDT",
                "status": "TRADING",
                "numerator": "FET",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2019,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 104,
                "name": "FILUSDT",
                "nameNormalized": "FIL_USDT",
                "status": "TRADING",
                "numerator": "FIL",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 2020,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 118,
                "name": "FTMUSDT",
                "nameNormalized": "FTM_USDT",
                "status": "TRADING",
                "numerator": "FTM",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2021,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 134,
                "name": "GALAUSDT",
                "nameNormalized": "GALA_USDT",
                "status": "TRADING",
                "numerator": "GALA",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2022,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 87,
                "name": "GRTUSDT",
                "nameNormalized": "GRT_USDT",
                "status": "TRADING",
                "numerator": "GRT",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2023,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 46,
                "name": "LINKUSDT",
                "nameNormalized": "LINK_USDT",
                "status": "TRADING",
                "numerator": "LINK",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2024,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 120,
                "name": "LRCUSDT",
                "nameNormalized": "LRC_USDT",
                "status": "TRADING",
                "numerator": "LRC",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2025,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 22,
                "name": "LTCUSDT",
                "nameNormalized": "LTC_USDT",
                "status": "TRADING",
                "numerator": "LTC",
                "denominator": "USDT",
                "numeratorScale": 8,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 2026,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 89,
                "name": "MANAUSDT",
                "nameNormalized": "MANA_USDT",
                "status": "TRADING",
                "numerator": "MANA",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2027,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 94,
                "name": "MATICUSDT",
                "nameNormalized": "MATIC_USDT",
                "status": "TRADING",
                "numerator": "MATIC",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2028,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 75,
                "name": "MKRUSDT",
                "nameNormalized": "MKR_USDT",
                "status": "TRADING",
                "numerator": "MKR",
                "denominator": "USDT",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 2029,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 38,
                "name": "NEOUSDT",
                "nameNormalized": "NEO_USDT",
                "status": "TRADING",
                "numerator": "NEO",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 2030,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 126,
                "name": "NUUSDT",
                "nameNormalized": "NU_USDT",
                "status": "TRADING",
                "numerator": "NU",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2031,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 80,
                "name": "OMGUSDT",
                "nameNormalized": "OMG_USDT",
                "status": "TRADING",
                "numerator": "OMG",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2032,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 124,
                "name": "POLYUSDT",
                "nameNormalized": "POLY_USDT",
                "status": "TRADING",
                "numerator": "POLY",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2033,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 136,
                "name": "SANDUSDT",
                "nameNormalized": "SAND_USDT",
                "status": "TRADING",
                "numerator": "SAND",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2034,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 116,
                "name": "SHIBUSDT",
                "nameNormalized": "SHIB_USDT",
                "status": "TRADING",
                "numerator": "SHIB",
                "denominator": "USDT",
                "numeratorScale": 0,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "100",
                        "tickSize": "0.00000001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 2035,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 96,
                "name": "SNXUSDT",
                "nameNormalized": "SNX_USDT",
                "status": "TRADING",
                "numerator": "SNX",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2036,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 110,
                "name": "SOLUSDT",
                "nameNormalized": "SOL_USDT",
                "status": "TRADING",
                "numerator": "SOL",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 2037,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 144,
                "name": "SPELLUSDT",
                "nameNormalized": "SPELL_USDT",
                "status": "TRADING",
                "numerator": "SPELL",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 5,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.00001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000",
                "commissionFromNumerator": false,
                "order": 2038,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 130,
                "name": "STORJUSDT",
                "nameNormalized": "STORJ_USDT",
                "status": "TRADING",
                "numerator": "STORJ",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2039,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 112,
                "name": "STXUSDT",
                "nameNormalized": "STX_USDT",
                "status": "TRADING",
                "numerator": "STX",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2040,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 56,
                "name": "TRXUSDT",
                "nameNormalized": "TRX_USDT",
                "status": "TRADING",
                "numerator": "TRX",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 5,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.00001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000",
                "commissionFromNumerator": false,
                "order": 2041,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 122,
                "name": "UMAUSDT",
                "nameNormalized": "UMA_USDT",
                "status": "TRADING",
                "numerator": "UMA",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2042,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 68,
                "name": "UNIUSDT",
                "nameNormalized": "UNI_USDT",
                "status": "TRADING",
                "numerator": "UNI",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2043,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 64,
                "name": "USDCUSDT",
                "nameNormalized": "USDC_USDT",
                "status": "TRADING",
                "numerator": "USDC",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.9698",
                        "maxPrice": "1.0301",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2044,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 35,
                "name": "XLMUSDT",
                "nameNormalized": "XLM_USDT",
                "status": "TRADING",
                "numerator": "XLM",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2045,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 21,
                "name": "XRPUSDT",
                "nameNormalized": "XRP_USDT",
                "status": "TRADING",
                "numerator": "XRP",
                "denominator": "USDT",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 2046,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 52,
                "name": "XTZUSDT",
                "nameNormalized": "XTZ_USDT",
                "status": "TRADING",
                "numerator": "XTZ",
                "denominator": "USDT",
                "numeratorScale": 2,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "9.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 2047,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 58,
                "name": "ADABTC",
                "nameNormalized": "ADA_BTC",
                "status": "TRADING",
                "numerator": "ADA",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3000,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 71,
                "name": "ANKRBTC",
                "nameNormalized": "ANKR_BTC",
                "status": "TRADING",
                "numerator": "ANKR",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3001,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 50,
                "name": "ATOMBTC",
                "nameNormalized": "ATOM_BTC",
                "status": "TRADING",
                "numerator": "ATOM",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3002,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 99,
                "name": "BATBTC",
                "nameNormalized": "BAT_BTC",
                "status": "TRADING",
                "numerator": "BAT",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3003,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 86,
                "name": "COMPBTC",
                "nameNormalized": "COMP_BTC",
                "status": "TRADING",
                "numerator": "COMP",
                "denominator": "BTC",
                "numeratorScale": 8,
                "denominatorScale": 6,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000",
                "commissionFromNumerator": false,
                "order": 3004,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 43,
                "name": "DASHBTC",
                "nameNormalized": "DASH_BTC",
                "status": "TRADING",
                "numerator": "DASH",
                "denominator": "BTC",
                "numeratorScale": 8,
                "denominatorScale": 6,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000",
                "commissionFromNumerator": false,
                "order": 3005,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 138,
                "name": "DOGEBTC",
                "nameNormalized": "DOGE_BTC",
                "status": "TRADING",
                "numerator": "DOGE",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3006,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 61,
                "name": "DOTBTC",
                "nameNormalized": "DOT_BTC",
                "status": "TRADING",
                "numerator": "DOT",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3007,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 79,
                "name": "ENJBTC",
                "nameNormalized": "ENJ_BTC",
                "status": "TRADING",
                "numerator": "ENJ",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3008,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 41,
                "name": "EOSBTC",
                "nameNormalized": "EOS_BTC",
                "status": "TRADING",
                "numerator": "EOS",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3009,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 2,
                "name": "ETHBTC",
                "nameNormalized": "ETH_BTC",
                "status": "TRADING",
                "numerator": "ETH",
                "denominator": "BTC",
                "numeratorScale": 8,
                "denominatorScale": 5,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.00001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000",
                "commissionFromNumerator": false,
                "order": 3010,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 88,
                "name": "GRTBTC",
                "nameNormalized": "GRT_BTC",
                "status": "TRADING",
                "numerator": "GRT",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3011,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 47,
                "name": "LINKBTC",
                "nameNormalized": "LINK_BTC",
                "status": "TRADING",
                "numerator": "LINK",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3012,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 32,
                "name": "LTCBTC",
                "nameNormalized": "LTC_BTC",
                "status": "TRADING",
                "numerator": "LTC",
                "denominator": "BTC",
                "numeratorScale": 8,
                "denominatorScale": 6,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000000",
                "commissionFromNumerator": false,
                "order": 3013,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 90,
                "name": "MANABTC",
                "nameNormalized": "MANA_BTC",
                "status": "TRADING",
                "numerator": "MANA",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3014,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 95,
                "name": "MATICBTC",
                "nameNormalized": "MATIC_BTC",
                "status": "TRADING",
                "numerator": "MATIC",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3015,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 74,
                "name": "MKRBTC",
                "nameNormalized": "MKR_BTC",
                "status": "TRADING",
                "numerator": "MKR",
                "denominator": "BTC",
                "numeratorScale": 8,
                "denominatorScale": 5,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.00001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000",
                "commissionFromNumerator": false,
                "order": 3016,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 37,
                "name": "NEOBTC",
                "nameNormalized": "NEO_BTC",
                "status": "TRADING",
                "numerator": "NEO",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000000",
                "commissionFromNumerator": false,
                "order": 3017,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 81,
                "name": "OMGBTC",
                "nameNormalized": "OMG_BTC",
                "status": "TRADING",
                "numerator": "OMG",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3018,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 97,
                "name": "SNXBTC",
                "nameNormalized": "SNX_BTC",
                "status": "TRADING",
                "numerator": "SNX",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3019,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 55,
                "name": "TRXBTC",
                "nameNormalized": "TRX_BTC",
                "status": "TRADING",
                "numerator": "TRX",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3020,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 69,
                "name": "UNIBTC",
                "nameNormalized": "UNI_BTC",
                "status": "TRADING",
                "numerator": "UNI",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3021,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 34,
                "name": "XLMBTC",
                "nameNormalized": "XLM_BTC",
                "status": "TRADING",
                "numerator": "XLM",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3022,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 33,
                "name": "XRPBTC",
                "nameNormalized": "XRP_BTC",
                "status": "TRADING",
                "numerator": "XRP",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 8,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.00000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00000000",
                "commissionFromNumerator": false,
                "order": 3023,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 53,
                "name": "XTZBTC",
                "nameNormalized": "XTZ_BTC",
                "status": "TRADING",
                "numerator": "XTZ",
                "denominator": "BTC",
                "numeratorScale": 4,
                "denominatorScale": 7,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.000001",
                        "minExchangeValue": "0.000291",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000000",
                "commissionFromNumerator": false,
                "order": 3024,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            }
        ],
        "currencies": [
            {
                "id": 1,
                "symbol": "TRY",
                "minWithdrawal": 10.0000000000000000,
                "minDeposit": 0.0000000000000000,
                "precision": 2,
                "address": {
                    "minLen": null,
                    "maxLen": null
                },
                "currencyType": "FIAT",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#04964e",
                "name": "Türk Lirası",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 2,
                "symbol": "BTC",
                "minWithdrawal": 0.0005000000000000,
                "minDeposit": 0.0001000000000000,
                "precision": 8,
                "address": {
                    "minLen": 25,
                    "maxLen": 96
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#d48222",
                "name": "Bitcoin",
                "isAddressRenewable": true,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 48,
                "symbol": "AAVE",
                "minWithdrawal": 0.5000000000000000,
                "minDeposit": 0.1000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#383d51",
                "name": "Aave",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 18,
                "symbol": "ADA",
                "minWithdrawal": 20.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 12,
                    "maxLen": 105
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#2DBCBC",
                "name": "Cardano",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 51,
                "symbol": "AMP",
                "minWithdrawal": 1000.0000000000000000,
                "minDeposit": 2.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#d9327c",
                "name": "Amp",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 23,
                "symbol": "ANKR",
                "minWithdrawal": 500.0000000000000000,
                "minDeposit": 2.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#2F77D9",
                "name": "Ankr",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 14,
                "symbol": "ATOM",
                "minWithdrawal": 0.5000000000000000,
                "minDeposit": 0.5000000000000000,
                "precision": 6,
                "address": {
                    "minLen": 45,
                    "maxLen": 45
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": true,
                    "name": "Memo",
                    "minLen": 0,
                    "maxLen": 256
                },
                "color": "#545E96",
                "name": "Cosmos",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 52,
                "symbol": "AUDIO",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 2.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#ca27dd",
                "name": "Audius",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 33,
                "symbol": "AVAX",
                "minWithdrawal": 0.2500000000000000,
                "minDeposit": 0.2500000000000000,
                "precision": 6,
                "address": {
                    "minLen": 45,
                    "maxLen": 45
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#E84142",
                "name": "Avalanche",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 39,
                "symbol": "AXS",
                "minWithdrawal": 0.5000000000000000,
                "minDeposit": 0.5000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#0047BB",
                "name": "Axie Infinity",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 32,
                "symbol": "BAT",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#FF6D37",
                "name": "Basic Attention Token",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": true
            },
            {
                "id": 22,
                "symbol": "CHZ",
                "minWithdrawal": 100.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#CC2A3B",
                "name": "Chiliz",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 27,
                "symbol": "COMP",
                "minWithdrawal": 0.0200000000000000,
                "minDeposit": 0.0005000000000000,
                "precision": 8,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#00D395",
                "name": "Compound",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 12,
                "symbol": "DASH",
                "minWithdrawal": 0.1000000000000000,
                "minDeposit": 0.0005000000000000,
                "precision": 8,
                "address": {
                    "minLen": 25,
                    "maxLen": 34
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#c75792",
                "name": "Dash",
                "isAddressRenewable": true,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 35,
                "symbol": "DOGE",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 25,
                    "maxLen": 96
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#F8BF1A",
                "name": "Dogecoin",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 19,
                "symbol": "DOT",
                "minWithdrawal": 1.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 34,
                    "maxLen": 49
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#E6007A",
                "name": "Polkadot",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 25,
                "symbol": "ENJ",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#7866D5",
                "name": "Enjin Coin",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 11,
                "symbol": "EOS",
                "minWithdrawal": 5.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 12,
                    "maxLen": 12
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": true,
                    "name": "Memo",
                    "minLen": 0,
                    "maxLen": 256
                },
                "color": "#118fde",
                "name": "Eos",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 3,
                "symbol": "ETH",
                "minWithdrawal": 0.0100000000000000,
                "minDeposit": 0.0005000000000000,
                "precision": 8,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#7b4aa8",
                "name": "Ethereum",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 46,
                "symbol": "FET",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#202944",
                "name": "Fetch.ai",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 34,
                "symbol": "FIL",
                "minWithdrawal": 0.2500000000000000,
                "minDeposit": 0.2500000000000000,
                "precision": 4,
                "address": {
                    "minLen": 7,
                    "maxLen": 86
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#0090FF",
                "name": "Filecoin",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 40,
                "symbol": "FTM",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#26B6EA",
                "name": "Fantom",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 49,
                "symbol": "GALA",
                "minWithdrawal": 100.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#000000",
                "name": "Gala",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 28,
                "symbol": "GRT",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#6747ED",
                "name": "The Graph",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 13,
                "symbol": "LINK",
                "minWithdrawal": 1.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#2A79DA",
                "name": "ChainLink",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 41,
                "symbol": "LRC",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#1F62FF",
                "name": "Loopring",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 6,
                "symbol": "LTC",
                "minWithdrawal": 0.1000000000000000,
                "minDeposit": 0.0005000000000000,
                "precision": 8,
                "address": {
                    "minLen": 25,
                    "maxLen": 96
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#d75b47",
                "name": "Litecoin",
                "isAddressRenewable": true,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 29,
                "symbol": "MANA",
                "minWithdrawal": 20.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#FF6D58",
                "name": "Decentraland",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 30,
                "symbol": "MATIC",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#8246E4",
                "name": "Polygon",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": true
            },
            {
                "id": 24,
                "symbol": "MKR",
                "minWithdrawal": 0.0100000000000000,
                "minDeposit": 0.0005000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#66BBB0",
                "name": "Maker",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 10,
                "symbol": "NEO",
                "minWithdrawal": 1.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 30,
                    "maxLen": 34
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#009eb5",
                "name": "Neo",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 45,
                "symbol": "NU",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#1E65F3",
                "name": "NuCypher",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 26,
                "symbol": "OMG",
                "minWithdrawal": 5.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#435364",
                "name": "Omg Network",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 44,
                "symbol": "POLY",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#0024BD",
                "name": "Polymath",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 50,
                "symbol": "SAND",
                "minWithdrawal": 10.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#1eb1fc",
                "name": "The Sandbox",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 43,
                "symbol": "SGB",
                "minWithdrawal": 0.0100000000000000,
                "minDeposit": 0.0100000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#353a69",
                "name": "Songbird",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": false,
                "isNew": false
            },
            {
                "id": 36,
                "symbol": "SHIB",
                "minWithdrawal": 1000000.0000000000000000,
                "minDeposit": 10000.0000000000000000,
                "precision": 0,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#EF302F",
                "name": "Shiba Inu",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 31,
                "symbol": "SNX",
                "minWithdrawal": 1.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 6,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#003DA7",
                "name": "Synthetix",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": true
            },
            {
                "id": 37,
                "symbol": "SOL",
                "minWithdrawal": 0.1000000000000000,
                "minDeposit": 0.1000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 32,
                    "maxLen": 44
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#7F7FD8",
                "name": "Solana",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 53,
                "symbol": "SPELL",
                "minWithdrawal": 1000.0000000000000000,
                "minDeposit": 2.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#7b79f7",
                "name": "Spell Token",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 47,
                "symbol": "STORJ",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#2683FF",
                "name": "Storj",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 38,
                "symbol": "STX",
                "minWithdrawal": 20.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 25,
                    "maxLen": 96
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": true,
                    "name": "Memo",
                    "minLen": 1,
                    "maxLen": 256
                },
                "color": "#5546FF",
                "name": "Stacks",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 17,
                "symbol": "TRX",
                "minWithdrawal": 500.0000000000000000,
                "minDeposit": 2.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 34,
                    "maxLen": 34
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#D53D3D",
                "name": "Tron",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 42,
                "symbol": "UMA",
                "minWithdrawal": 5.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#FF4A4A",
                "name": "Universal Market Access",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 21,
                "symbol": "UNI",
                "minWithdrawal": 1.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#DC1676",
                "name": "Uniswap",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 20,
                "symbol": "USDC",
                "minWithdrawal": 10.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 2,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#278FCA",
                "name": "USD Coin",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 7,
                "symbol": "USDT",
                "minWithdrawal": 10.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 2,
                "address": {
                    "minLen": 40,
                    "maxLen": 42
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#6e6e6e",
                "name": "Tether",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 9,
                "symbol": "XLM",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 55,
                    "maxLen": 56
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": true,
                    "name": "Memo",
                    "minLen": 0,
                    "maxLen": 28
                },
                "color": "#027095",
                "name": "Stellar",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 5,
                "symbol": "XRP",
                "minWithdrawal": 50.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 4,
                "address": {
                    "minLen": 25,
                    "maxLen": 35
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": true,
                    "name": "Destination",
                    "minLen": 0,
                    "maxLen": 10
                },
                "color": "#f7ba28",
                "name": "Ripple",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            },
            {
                "id": 15,
                "symbol": "XTZ",
                "minWithdrawal": 5.0000000000000000,
                "minDeposit": 1.0000000000000000,
                "precision": 6,
                "address": {
                    "minLen": 35,
                    "maxLen": 40
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#2C7DF7",
                "name": "Tezos",
                "isAddressRenewable": false,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
            }
        ],
        "currencyOperationBlocks": [
            {
                "currencySymbol": "Btc",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Eth",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Xrp",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Ltc",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Usdt",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Xlm",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Neo",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Eos",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Dash",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Link",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Atom",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Xtz",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Trx",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Ada",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Dot",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Usdc",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Uni",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Chz",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Ankr",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Mkr",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Enj",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Omg",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "LBtc",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "LUsdt",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Trc20Usdt",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Avax",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Comp",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Grt",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Mana",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Matic",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Snx",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Bat",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Fil",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Doge",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Sol",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Stx",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Axs",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Shib",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Lrc",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Ftm",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Uma",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Nu",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Fet",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Poly",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Storj",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Aave",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Gala",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Sand",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Sgb",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Audio",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Amp",
                "withdrawalDisabled": false,
                "depositDisabled": false
            },
            {
                "currencySymbol": "Spell",
                "withdrawalDisabled": false,
                "depositDisabled": false
            }
        ]
    },
    "success": true,
    "message": "",
    "code": 0
}

Exchange Info

<?php
$base = "https://api.btcturk.com";
$method = "/api/v2/server/exchangeinfo";
$uri = $base.$method;

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_HTTP_VERSION, "CURL_HTTP_VERSION_1_2");
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);

if (curl_errno($ch)) {
    print_r(curl_error($ch));
}
$answer = json_decode($result);
print_r($answer);

Last updated