Qubx 0.5.7__cp312-cp312-manylinux_2_39_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of Qubx might be problematic. Click here for more details.

Files changed (100) hide show
  1. qubx/__init__.py +207 -0
  2. qubx/_nb_magic.py +100 -0
  3. qubx/backtester/__init__.py +5 -0
  4. qubx/backtester/account.py +145 -0
  5. qubx/backtester/broker.py +87 -0
  6. qubx/backtester/data.py +296 -0
  7. qubx/backtester/management.py +378 -0
  8. qubx/backtester/ome.py +296 -0
  9. qubx/backtester/optimization.py +201 -0
  10. qubx/backtester/simulated_data.py +558 -0
  11. qubx/backtester/simulator.py +362 -0
  12. qubx/backtester/utils.py +780 -0
  13. qubx/cli/__init__.py +0 -0
  14. qubx/cli/commands.py +67 -0
  15. qubx/connectors/ccxt/__init__.py +0 -0
  16. qubx/connectors/ccxt/account.py +495 -0
  17. qubx/connectors/ccxt/broker.py +132 -0
  18. qubx/connectors/ccxt/customizations.py +193 -0
  19. qubx/connectors/ccxt/data.py +612 -0
  20. qubx/connectors/ccxt/exceptions.py +17 -0
  21. qubx/connectors/ccxt/factory.py +93 -0
  22. qubx/connectors/ccxt/utils.py +307 -0
  23. qubx/core/__init__.py +0 -0
  24. qubx/core/account.py +251 -0
  25. qubx/core/basics.py +850 -0
  26. qubx/core/context.py +420 -0
  27. qubx/core/exceptions.py +38 -0
  28. qubx/core/helpers.py +480 -0
  29. qubx/core/interfaces.py +1150 -0
  30. qubx/core/loggers.py +514 -0
  31. qubx/core/lookups.py +475 -0
  32. qubx/core/metrics.py +1512 -0
  33. qubx/core/mixins/__init__.py +13 -0
  34. qubx/core/mixins/market.py +94 -0
  35. qubx/core/mixins/processing.py +428 -0
  36. qubx/core/mixins/subscription.py +203 -0
  37. qubx/core/mixins/trading.py +88 -0
  38. qubx/core/mixins/universe.py +270 -0
  39. qubx/core/series.cpython-312-x86_64-linux-gnu.so +0 -0
  40. qubx/core/series.pxd +125 -0
  41. qubx/core/series.pyi +118 -0
  42. qubx/core/series.pyx +988 -0
  43. qubx/core/utils.cpython-312-x86_64-linux-gnu.so +0 -0
  44. qubx/core/utils.pyi +6 -0
  45. qubx/core/utils.pyx +62 -0
  46. qubx/data/__init__.py +25 -0
  47. qubx/data/helpers.py +416 -0
  48. qubx/data/readers.py +1562 -0
  49. qubx/data/tardis.py +100 -0
  50. qubx/gathering/simplest.py +88 -0
  51. qubx/math/__init__.py +3 -0
  52. qubx/math/stats.py +129 -0
  53. qubx/pandaz/__init__.py +23 -0
  54. qubx/pandaz/ta.py +2757 -0
  55. qubx/pandaz/utils.py +638 -0
  56. qubx/resources/instruments/symbols-binance.cm.json +1 -0
  57. qubx/resources/instruments/symbols-binance.json +1 -0
  58. qubx/resources/instruments/symbols-binance.um.json +1 -0
  59. qubx/resources/instruments/symbols-bitfinex.f.json +1 -0
  60. qubx/resources/instruments/symbols-bitfinex.json +1 -0
  61. qubx/resources/instruments/symbols-kraken.f.json +1 -0
  62. qubx/resources/instruments/symbols-kraken.json +1 -0
  63. qubx/ta/__init__.py +0 -0
  64. qubx/ta/indicators.cpython-312-x86_64-linux-gnu.so +0 -0
  65. qubx/ta/indicators.pxd +149 -0
  66. qubx/ta/indicators.pyi +41 -0
  67. qubx/ta/indicators.pyx +787 -0
  68. qubx/trackers/__init__.py +3 -0
  69. qubx/trackers/abvanced.py +236 -0
  70. qubx/trackers/composite.py +146 -0
  71. qubx/trackers/rebalancers.py +129 -0
  72. qubx/trackers/riskctrl.py +641 -0
  73. qubx/trackers/sizers.py +235 -0
  74. qubx/utils/__init__.py +5 -0
  75. qubx/utils/_pyxreloader.py +281 -0
  76. qubx/utils/charting/lookinglass.py +1057 -0
  77. qubx/utils/charting/mpl_helpers.py +1183 -0
  78. qubx/utils/marketdata/binance.py +284 -0
  79. qubx/utils/marketdata/ccxt.py +90 -0
  80. qubx/utils/marketdata/dukas.py +130 -0
  81. qubx/utils/misc.py +541 -0
  82. qubx/utils/ntp.py +63 -0
  83. qubx/utils/numbers_utils.py +7 -0
  84. qubx/utils/orderbook.py +491 -0
  85. qubx/utils/plotting/__init__.py +0 -0
  86. qubx/utils/plotting/dashboard.py +150 -0
  87. qubx/utils/plotting/data.py +137 -0
  88. qubx/utils/plotting/interfaces.py +25 -0
  89. qubx/utils/plotting/renderers/__init__.py +0 -0
  90. qubx/utils/plotting/renderers/plotly.py +0 -0
  91. qubx/utils/runner/__init__.py +1 -0
  92. qubx/utils/runner/_jupyter_runner.pyt +60 -0
  93. qubx/utils/runner/accounts.py +88 -0
  94. qubx/utils/runner/configs.py +65 -0
  95. qubx/utils/runner/runner.py +470 -0
  96. qubx/utils/time.py +312 -0
  97. qubx-0.5.7.dist-info/METADATA +105 -0
  98. qubx-0.5.7.dist-info/RECORD +100 -0
  99. qubx-0.5.7.dist-info/WHEEL +4 -0
  100. qubx-0.5.7.dist-info/entry_points.txt +3 -0
@@ -0,0 +1 @@
1
+ [{"id": "FF_XBTUSD_250328", "datasetId": "FF_XBTUSD_250328", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-08-30T00:00:00.000Z", "expiry": "2025-03-28T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XBTUSD_250328", "datasetId": "FI_XBTUSD_250328", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-08-30T00:00:00.000Z", "expiry": "2025-03-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FF_XBTUSD_250627", "datasetId": "FF_XBTUSD_250627", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-11-29T00:00:00.000Z", "expiry": "2025-06-27T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XBTUSD_250627", "datasetId": "FI_XBTUSD_250627", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-11-29T00:00:00.000Z", "expiry": "2025-06-27T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FF_XBTUSD_250131", "datasetId": "FF_XBTUSD_250131", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-20T00:00:00.000Z", "expiry": "2025-01-31T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FF_XBTUSD_250103", "datasetId": "FF_XBTUSD_250103", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-27T00:00:00.000Z", "expiry": "2025-01-03T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XBTUSD_250131", "datasetId": "FI_XBTUSD_250131", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-27T00:00:00.000Z", "expiry": "2025-01-31T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_ETHUSD_250328", "datasetId": "FI_ETHUSD_250328", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-08-30T00:00:00.000Z", "expiry": "2025-03-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FF_ETHUSD_250328", "datasetId": "FF_ETHUSD_250328", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-11-29T00:00:00.000Z", "expiry": "2025-03-28T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_ETHUSD_250627", "datasetId": "FI_ETHUSD_250627", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-11-29T00:00:00.000Z", "expiry": "2025-06-27T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FF_ETHUSD_250627", "datasetId": "FF_ETHUSD_250627", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-06T00:00:00.000Z", "expiry": "2025-06-27T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FF_ETHUSD_250131", "datasetId": "FF_ETHUSD_250131", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-20T00:00:00.000Z", "expiry": "2025-01-31T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FF_ETHUSD_250103", "datasetId": "FF_ETHUSD_250103", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-27T00:00:00.000Z", "expiry": "2025-01-03T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_ETHUSD_250131", "datasetId": "FI_ETHUSD_250131", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-27T00:00:00.000Z", "expiry": "2025-01-31T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_LTCUSD_250328", "datasetId": "FI_LTCUSD_250328", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-11-29T00:00:00.000Z", "expiry": "2025-03-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_250131", "datasetId": "FI_LTCUSD_250131", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-27T00:00:00.000Z", "expiry": "2025-01-31T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FF_SOLUSD_250328", "datasetId": "FF_SOLUSD_250328", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-11-29T00:00:00.000Z", "expiry": "2025-03-28T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FF_SOLUSD_250131", "datasetId": "FF_SOLUSD_250131", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-27T00:00:00.000Z", "expiry": "2025-01-31T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XRPUSD_250328", "datasetId": "FI_XRPUSD_250328", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-11-29T00:00:00.000Z", "expiry": "2025-03-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_250131", "datasetId": "FI_XRPUSD_250131", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": true, "availableSince": "2024-12-27T00:00:00.000Z", "expiry": "2025-01-31T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XBTUSD_241227", "datasetId": "FI_XBTUSD_241227", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-05-31T00:00:00.000Z", "expiry": "2024-12-27T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-12-28T00:00:00.000Z"}, {"id": "FF_XBTUSD_241227", "datasetId": "FF_XBTUSD_241227", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-05-31T00:00:00.000Z", "expiry": "2024-12-27T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-12-28T00:00:00.000Z"}, {"id": "FF_XBTUSD_241220", "datasetId": "FF_XBTUSD_241220", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-12-13T00:00:00.000Z", "expiry": "2024-12-20T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-12-21T00:00:00.000Z"}, {"id": "FF_XBTUSD_241213", "datasetId": "FF_XBTUSD_241213", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-12-06T00:00:00.000Z", "expiry": "2024-12-13T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-12-14T00:00:00.000Z"}, {"id": "FI_XBTUSD_241129", "datasetId": "FI_XBTUSD_241129", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-10-25T00:00:00.000Z", "expiry": "2024-11-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-11-30T00:00:00.000Z"}, {"id": "FF_XBTUSD_241129", "datasetId": "FF_XBTUSD_241129", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-10-25T00:00:00.000Z", "expiry": "2024-11-29T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-11-30T00:00:00.000Z"}, {"id": "FI_XBTUSD_241025", "datasetId": "FI_XBTUSD_241025", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-09-27T00:00:00.000Z", "expiry": "2024-10-25T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-10-26T00:00:00.000Z"}, {"id": "FF_XBTUSD_241025", "datasetId": "FF_XBTUSD_241025", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-09-27T00:00:00.000Z", "expiry": "2024-10-25T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-10-26T00:00:00.000Z"}, {"id": "FI_XBTUSD_240927", "datasetId": "FI_XBTUSD_240927", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-02-23T00:00:00.000Z", "expiry": "2024-09-27T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-09-28T00:00:00.000Z"}, {"id": "FF_XBTUSD_240927", "datasetId": "FF_XBTUSD_240927", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-09-27T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-09-28T00:00:00.000Z"}, {"id": "FI_XBTUSD_240830", "datasetId": "FI_XBTUSD_240830", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-07-26T00:00:00.000Z", "expiry": "2024-08-30T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-08-31T00:00:00.000Z"}, {"id": "FF_XBTUSD_240830", "datasetId": "FF_XBTUSD_240830", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-07-26T00:00:00.000Z", "expiry": "2024-08-30T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-08-31T00:00:00.000Z"}, {"id": "FI_XBTUSD_240726", "datasetId": "FI_XBTUSD_240726", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-06-28T00:00:00.000Z", "expiry": "2024-07-26T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-07-27T00:00:00.000Z"}, {"id": "FF_XBTUSD_240726", "datasetId": "FF_XBTUSD_240726", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-06-28T00:00:00.000Z", "expiry": "2024-07-26T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-07-27T00:00:00.000Z"}, {"id": "FI_XBTUSD_240628", "datasetId": "FI_XBTUSD_240628", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-11-24T00:00:00.000Z", "expiry": "2024-06-28T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-06-29T00:00:00.000Z"}, {"id": "FF_XBTUSD_240628", "datasetId": "FF_XBTUSD_240628", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-02-23T00:00:00.000Z", "expiry": "2024-06-28T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-06-29T00:00:00.000Z"}, {"id": "FI_XBTUSD_240531", "datasetId": "FI_XBTUSD_240531", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-04-26T00:00:00.000Z", "expiry": "2024-05-31T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-06-01T00:00:00.000Z"}, {"id": "FF_XBTUSD_240531", "datasetId": "FF_XBTUSD_240531", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-04-26T00:00:00.000Z", "expiry": "2024-05-31T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-06-01T00:00:00.000Z"}, {"id": "FI_XBTUSD_240426", "datasetId": "FI_XBTUSD_240426", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-04-26T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-04-27T00:00:00.000Z"}, {"id": "FF_XBTUSD_240426", "datasetId": "FF_XBTUSD_240426", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-04-26T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-04-27T00:00:00.000Z"}, {"id": "FI_XBTUSD_240329", "datasetId": "FI_XBTUSD_240329", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-08-25T00:00:00.000Z", "expiry": "2024-03-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-03-30T00:00:00.000Z"}, {"id": "FF_XBTUSD_240329", "datasetId": "FF_XBTUSD_240329", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-11-24T00:00:00.000Z", "expiry": "2024-03-29T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-03-30T00:00:00.000Z"}, {"id": "FI_XBTUSD_240223", "datasetId": "FI_XBTUSD_240223", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-01-26T00:00:00.000Z", "expiry": "2024-02-23T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-02-24T00:00:00.000Z"}, {"id": "FF_XBTUSD_240223", "datasetId": "FF_XBTUSD_240223", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-01-26T00:00:00.000Z", "expiry": "2024-02-23T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-02-24T00:00:00.000Z"}, {"id": "FF_XBTUSD_240126", "datasetId": "FF_XBTUSD_240126", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-12-29T00:00:00.000Z", "expiry": "2024-01-26T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-01-27T00:00:00.000Z"}, {"id": "FI_XBTUSD_240126", "datasetId": "FI_XBTUSD_240126", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-12-29T00:00:00.000Z", "expiry": "2024-01-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2024-01-27T00:00:00.000Z"}, {"id": "FI_XBTUSD_231229", "datasetId": "FI_XBTUSD_231229", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-05-26T00:00:00.000Z", "expiry": "2023-12-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-12-30T00:00:00.000Z"}, {"id": "FF_XBTUSD_231229", "datasetId": "FF_XBTUSD_231229", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-08-25T00:00:00.000Z", "expiry": "2023-12-29T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-12-30T00:00:00.000Z"}, {"id": "FF_XBTUSD_231124", "datasetId": "FF_XBTUSD_231124", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-10-27T00:00:00.000Z", "expiry": "2023-11-24T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-11-25T00:00:00.000Z"}, {"id": "FI_XBTUSD_231124", "datasetId": "FI_XBTUSD_231124", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-10-27T00:00:00.000Z", "expiry": "2023-11-24T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-11-25T00:00:00.000Z"}, {"id": "FF_XBTUSD_231027", "datasetId": "FF_XBTUSD_231027", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-09-29T00:00:00.000Z", "expiry": "2023-10-27T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-10-28T00:00:00.000Z"}, {"id": "FI_XBTUSD_231027", "datasetId": "FI_XBTUSD_231027", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-09-29T00:00:00.000Z", "expiry": "2023-10-27T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-10-28T00:00:00.000Z"}, {"id": "FI_XBTUSD_230929", "datasetId": "FI_XBTUSD_230929", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-02-24T00:00:00.000Z", "expiry": "2023-09-29T15:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-09-30T00:00:00.000Z"}, {"id": "FF_XBTUSD_230929", "datasetId": "FF_XBTUSD_230929", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-05T00:00:00.000Z", "expiry": "2023-09-29T08:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.0001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-09-30T00:00:00.000Z"}, {"id": "FF_XBTUSD_230825", "datasetId": "FF_XBTUSD_230825", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-28T00:00:00.000Z", "expiry": "2023-08-25T16:00:00.000Z", "priceIncrement": 1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-08-26T00:00:00.000Z"}, {"id": "FI_XBTUSD_230825", "datasetId": "FI_XBTUSD_230825", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-28T00:00:00.000Z", "expiry": "2023-08-25T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-08-26T00:00:00.000Z"}, {"id": "FI_XBTUSD_230728", "datasetId": "FI_XBTUSD_230728", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-06-30T00:00:00.000Z", "expiry": "2023-07-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-07-29T00:00:00.000Z"}, {"id": "FF_XBTUSD_230728", "datasetId": "FF_XBTUSD_230728", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-05T00:00:00.000Z", "expiry": "2023-07-28T16:00:00.000Z", "priceIncrement": 1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-07-29T00:00:00.000Z"}, {"id": "FI_XBTUSD_230630", "datasetId": "FI_XBTUSD_230630", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-11-25T00:00:00.000Z", "expiry": "2023-06-30T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-07-01T00:00:00.000Z"}, {"id": "FI_XBTUSD_230526", "datasetId": "FI_XBTUSD_230526", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-04-28T00:00:00.000Z", "expiry": "2023-05-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-05-27T00:00:00.000Z"}, {"id": "FI_XBTUSD_230428", "datasetId": "FI_XBTUSD_230428", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-03-31T00:00:00.000Z", "expiry": "2023-04-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-04-29T00:00:00.000Z"}, {"id": "FI_XBTUSD_230331", "datasetId": "FI_XBTUSD_230331", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-08-26T00:00:00.000Z", "expiry": "2023-03-31T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-04-01T00:00:00.000Z"}, {"id": "FI_XBTUSD_230224", "datasetId": "FI_XBTUSD_230224", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-01-27T00:00:00.000Z", "expiry": "2023-02-24T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-02-25T00:00:00.000Z"}, {"id": "FI_XBTUSD_230127", "datasetId": "FI_XBTUSD_230127", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-12-30T00:00:00.000Z", "expiry": "2023-01-27T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2023-01-28T00:00:00.000Z"}, {"id": "FI_XBTUSD_221230", "datasetId": "FI_XBTUSD_221230", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-05-27T00:00:00.000Z", "expiry": "2022-12-30T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-12-31T00:00:00.000Z"}, {"id": "FI_XBTUSD_221125", "datasetId": "FI_XBTUSD_221125", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-10-28T00:00:00.000Z", "expiry": "2022-11-25T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-11-26T00:00:00.000Z"}, {"id": "FI_XBTUSD_221028", "datasetId": "FI_XBTUSD_221028", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-09-30T00:00:00.000Z", "expiry": "2022-10-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-10-29T00:00:00.000Z"}, {"id": "FI_XBTUSD_220930", "datasetId": "FI_XBTUSD_220930", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-02-25T00:00:00.000Z", "expiry": "2022-09-30T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-10-01T00:00:00.000Z"}, {"id": "FI_XBTUSD_220826", "datasetId": "FI_XBTUSD_220826", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-07-29T00:00:00.000Z", "expiry": "2022-08-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-08-27T00:00:00.000Z"}, {"id": "FI_XBTUSD_220729", "datasetId": "FI_XBTUSD_220729", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-06-24T00:00:00.000Z", "expiry": "2022-07-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-07-30T00:00:00.000Z"}, {"id": "FI_XBTUSD_220624", "datasetId": "FI_XBTUSD_220624", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-11-26T00:00:00.000Z", "expiry": "2022-06-24T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-06-25T00:00:00.000Z"}, {"id": "FI_XBTUSD_220527", "datasetId": "FI_XBTUSD_220527", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-04-29T00:00:00.000Z", "expiry": "2022-05-27T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-05-28T00:00:00.000Z"}, {"id": "FI_XBTUSD_220429", "datasetId": "FI_XBTUSD_220429", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-03-25T00:00:00.000Z", "expiry": "2022-04-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-04-30T00:00:00.000Z"}, {"id": "FI_XBTUSD_220325", "datasetId": "FI_XBTUSD_220325", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-08-27T00:00:00.000Z", "expiry": "2022-03-25T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-03-26T00:00:00.000Z"}, {"id": "FI_XBTUSD_220225", "datasetId": "FI_XBTUSD_220225", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-01-28T00:00:00.000Z", "expiry": "2022-02-25T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-02-26T00:00:00.000Z"}, {"id": "FI_XBTUSD_220128", "datasetId": "FI_XBTUSD_220128", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-12-31T00:00:00.000Z", "expiry": "2022-01-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-01-29T00:00:00.000Z"}, {"id": "FI_XBTUSD_211231", "datasetId": "FI_XBTUSD_211231", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-05-28T00:00:00.000Z", "expiry": "2021-12-31T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2022-01-01T00:00:00.000Z"}, {"id": "FI_XBTUSD_211126", "datasetId": "FI_XBTUSD_211126", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-10-29T00:00:00.000Z", "expiry": "2021-11-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2021-11-27T00:00:00.000Z"}, {"id": "FI_XBTUSD_211029", "datasetId": "FI_XBTUSD_211029", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-09-24T00:00:00.000Z", "expiry": "2021-10-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2021-10-30T00:00:00.000Z"}, {"id": "FI_XBTUSD_210924", "datasetId": "FI_XBTUSD_210924", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-02-26T00:00:00.000Z", "expiry": "2021-09-24T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2021-09-25T00:00:00.000Z"}, {"id": "FI_XBTUSD_210827", "datasetId": "FI_XBTUSD_210827", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-07-30T00:00:00.000Z", "expiry": "2021-08-27T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2021-08-28T00:00:00.000Z"}, {"id": "FI_XBTUSD_210730", "datasetId": "FI_XBTUSD_210730", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-06-25T00:00:00.000Z", "expiry": "2021-07-30T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2021-07-31T00:00:00.000Z"}, {"id": "FI_XBTUSD_210625", "datasetId": "FI_XBTUSD_210625", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-11-27T00:00:00.000Z", "expiry": "2021-06-25T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD", "availableTo": "2021-06-26T00:00:00.000Z"}, {"id": "FI_XBTUSD_210528", "datasetId": "FI_XBTUSD_210528", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-04-30T00:00:00.000Z", "expiry": "2021-05-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-29T00:00:00.000Z", "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_210430", "datasetId": "FI_XBTUSD_210430", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-03-26T00:00:00.000Z", "expiry": "2021-04-30T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-01T00:00:00.000Z", "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_210326", "datasetId": "FI_XBTUSD_210326", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-08-28T00:00:00.000Z", "expiry": "2021-03-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-03-27T00:00:00.000Z", "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_210226", "datasetId": "FI_XBTUSD_210226", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-01-29T00:00:00.000Z", "expiry": "2021-02-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-02-27T00:00:00.000Z", "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_210129", "datasetId": "FI_XBTUSD_210129", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-12-25T00:00:00.000Z", "expiry": "2021-01-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-01-30T00:00:00.000Z", "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_201225", "datasetId": "FI_XBTUSD_201225", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-07-03T00:00:00.000Z", "expiry": "2020-12-25T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2020-12-26T00:00:00.000Z", "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_201127", "datasetId": "FI_XBTUSD_201127", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-10-30T00:00:00.000Z", "availableTo": "2020-11-28T00:00:00.000Z", "expiry": "2020-11-27T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_201030", "datasetId": "FI_XBTUSD_201030", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-09-25T00:00:00.000Z", "availableTo": "2020-10-31T00:00:00.000Z", "expiry": "2020-10-30T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200925", "datasetId": "FI_XBTUSD_200925", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-05-30T00:00:00.000Z", "availableTo": "2020-09-26T00:00:00.000Z", "expiry": "2020-09-25T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200828", "datasetId": "FI_XBTUSD_200828", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-07-31T00:00:00.000Z", "availableTo": "2020-08-29T00:00:00.000Z", "expiry": "2020-08-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200731", "datasetId": "FI_XBTUSD_200731", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-06-26T00:00:00.000Z", "availableTo": "2020-08-01T00:00:00.000Z", "expiry": "2020-07-31T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200626", "datasetId": "FI_XBTUSD_200626", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-02-28T00:00:00.000Z", "availableTo": "2020-06-27T00:00:00.000Z", "expiry": "2020-06-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200529", "datasetId": "FI_XBTUSD_200529", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-04-25T00:00:00.000Z", "availableTo": "2020-05-30T00:00:00.000Z", "expiry": "2020-05-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200424", "datasetId": "FI_XBTUSD_200424", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-03-27T00:00:00.000Z", "availableTo": "2020-04-25T00:00:00.000Z", "expiry": "2020-04-24T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200327", "datasetId": "FI_XBTUSD_200327", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-11-29T00:00:00.000Z", "availableTo": "2020-03-28T00:00:00.000Z", "expiry": "2020-03-27T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200228", "datasetId": "FI_XBTUSD_200228", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-01-31T00:00:00.000Z", "availableTo": "2020-02-29T00:00:00.000Z", "expiry": "2020-02-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_200131", "datasetId": "FI_XBTUSD_200131", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-12-28T00:00:00.000Z", "availableTo": "2020-02-01T00:00:00.000Z", "expiry": "2020-01-31T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_191227", "datasetId": "FI_XBTUSD_191227", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-08-31T00:00:00.000Z", "availableTo": "2019-12-28T00:00:00.000Z", "expiry": "2019-12-27T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_191129", "datasetId": "FI_XBTUSD_191129", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-10-25T00:00:00.000Z", "availableTo": "2019-11-30T00:00:00.000Z", "expiry": "2019-11-29T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_191025", "datasetId": "FI_XBTUSD_191025", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-09-28T00:00:00.000Z", "availableTo": "2019-10-26T00:00:00.000Z", "expiry": "2019-10-25T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_190927", "datasetId": "FI_XBTUSD_190927", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-05-31T00:00:00.000Z", "availableTo": "2019-09-28T00:00:00.000Z", "expiry": "2019-09-27T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_190830", "datasetId": "FI_XBTUSD_190830", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-07-26T00:00:00.000Z", "availableTo": "2019-08-31T00:00:00.000Z", "expiry": "2019-08-30T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_190726", "datasetId": "FI_XBTUSD_190726", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-06-28T00:00:00.000Z", "availableTo": "2019-07-27T00:00:00.000Z", "expiry": "2019-07-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_190628", "datasetId": "FI_XBTUSD_190628", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-06-29T00:00:00.000Z", "expiry": "2019-06-28T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_190531", "datasetId": "FI_XBTUSD_190531", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-04-26T00:00:00.000Z", "availableTo": "2019-06-01T00:00:00.000Z", "expiry": "2019-05-31T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_XBTUSD_190426", "datasetId": "FI_XBTUSD_190426", "exchange": "cryptofacilities", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-04-27T00:00:00.000Z", "expiry": "2019-04-26T16:00:00.000Z", "priceIncrement": 0.5, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XBTUSD"}, {"id": "FI_ETHUSD_241227", "datasetId": "FI_ETHUSD_241227", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-05-31T00:00:00.000Z", "expiry": "2024-12-27T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-12-28T00:00:00.000Z"}, {"id": "FF_ETHUSD_241227", "datasetId": "FF_ETHUSD_241227", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-08-30T00:00:00.000Z", "expiry": "2024-12-27T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-12-28T00:00:00.000Z"}, {"id": "FF_ETHUSD_241220", "datasetId": "FF_ETHUSD_241220", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-12-13T00:00:00.000Z", "expiry": "2024-12-20T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-12-21T00:00:00.000Z"}, {"id": "FF_ETHUSD_241213", "datasetId": "FF_ETHUSD_241213", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-12-06T00:00:00.000Z", "expiry": "2024-12-13T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-12-14T00:00:00.000Z"}, {"id": "FI_ETHUSD_241129", "datasetId": "FI_ETHUSD_241129", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-10-25T00:00:00.000Z", "expiry": "2024-11-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-11-30T00:00:00.000Z"}, {"id": "FF_ETHUSD_241129", "datasetId": "FF_ETHUSD_241129", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-10-25T00:00:00.000Z", "expiry": "2024-11-29T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-11-30T00:00:00.000Z"}, {"id": "FI_ETHUSD_241025", "datasetId": "FI_ETHUSD_241025", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-09-27T00:00:00.000Z", "expiry": "2024-10-25T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-10-26T00:00:00.000Z"}, {"id": "FF_ETHUSD_241025", "datasetId": "FF_ETHUSD_241025", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-09-27T00:00:00.000Z", "expiry": "2024-10-25T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-10-26T00:00:00.000Z"}, {"id": "FI_ETHUSD_240927", "datasetId": "FI_ETHUSD_240927", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-02-23T00:00:00.000Z", "expiry": "2024-09-27T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-09-28T00:00:00.000Z"}, {"id": "FF_ETHUSD_240927", "datasetId": "FF_ETHUSD_240927", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-05-31T00:00:00.000Z", "expiry": "2024-09-27T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-09-28T00:00:00.000Z"}, {"id": "FI_ETHUSD_240830", "datasetId": "FI_ETHUSD_240830", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-07-26T00:00:00.000Z", "expiry": "2024-08-30T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-08-31T00:00:00.000Z"}, {"id": "FF_ETHUSD_240830", "datasetId": "FF_ETHUSD_240830", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-07-26T00:00:00.000Z", "expiry": "2024-08-30T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-08-31T00:00:00.000Z"}, {"id": "FI_ETHUSD_240726", "datasetId": "FI_ETHUSD_240726", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-06-28T00:00:00.000Z", "expiry": "2024-07-26T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-07-27T00:00:00.000Z"}, {"id": "FF_ETHUSD_240726", "datasetId": "FF_ETHUSD_240726", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-06-28T00:00:00.000Z", "expiry": "2024-07-26T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-07-27T00:00:00.000Z"}, {"id": "FI_ETHUSD_240628", "datasetId": "FI_ETHUSD_240628", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-11-24T00:00:00.000Z", "expiry": "2024-06-28T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-06-29T00:00:00.000Z"}, {"id": "FF_ETHUSD_240628", "datasetId": "FF_ETHUSD_240628", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-02-23T00:00:00.000Z", "expiry": "2024-06-28T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-06-29T00:00:00.000Z"}, {"id": "FI_ETHUSD_240531", "datasetId": "FI_ETHUSD_240531", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-04-26T00:00:00.000Z", "expiry": "2024-05-31T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-06-01T00:00:00.000Z"}, {"id": "FF_ETHUSD_240531", "datasetId": "FF_ETHUSD_240531", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-04-26T00:00:00.000Z", "expiry": "2024-05-31T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-06-01T00:00:00.000Z"}, {"id": "FI_ETHUSD_240426", "datasetId": "FI_ETHUSD_240426", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-04-26T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-04-27T00:00:00.000Z"}, {"id": "FF_ETHUSD_240426", "datasetId": "FF_ETHUSD_240426", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-04-26T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-04-27T00:00:00.000Z"}, {"id": "FI_ETHUSD_240329", "datasetId": "FI_ETHUSD_240329", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-08-25T00:00:00.000Z", "expiry": "2024-03-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-03-30T00:00:00.000Z"}, {"id": "FF_ETHUSD_240329", "datasetId": "FF_ETHUSD_240329", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-11-24T00:00:00.000Z", "expiry": "2024-03-29T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-03-30T00:00:00.000Z"}, {"id": "FI_ETHUSD_240223", "datasetId": "FI_ETHUSD_240223", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-01-26T00:00:00.000Z", "expiry": "2024-02-23T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-02-24T00:00:00.000Z"}, {"id": "FF_ETHUSD_240223", "datasetId": "FF_ETHUSD_240223", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-01-26T00:00:00.000Z", "expiry": "2024-02-23T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-02-24T00:00:00.000Z"}, {"id": "FF_ETHUSD_240126", "datasetId": "FF_ETHUSD_240126", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-12-29T00:00:00.000Z", "expiry": "2024-01-26T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-01-27T00:00:00.000Z"}, {"id": "FI_ETHUSD_240126", "datasetId": "FI_ETHUSD_240126", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-12-29T00:00:00.000Z", "expiry": "2024-01-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2024-01-27T00:00:00.000Z"}, {"id": "FI_ETHUSD_231229", "datasetId": "FI_ETHUSD_231229", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-05-26T00:00:00.000Z", "expiry": "2023-12-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-12-30T00:00:00.000Z"}, {"id": "FF_ETHUSD_231229", "datasetId": "FF_ETHUSD_231229", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-08-25T00:00:00.000Z", "expiry": "2023-12-29T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-12-30T00:00:00.000Z"}, {"id": "FF_ETHUSD_231124", "datasetId": "FF_ETHUSD_231124", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-10-27T00:00:00.000Z", "expiry": "2023-11-24T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-11-25T00:00:00.000Z"}, {"id": "FI_ETHUSD_231124", "datasetId": "FI_ETHUSD_231124", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-10-27T00:00:00.000Z", "expiry": "2023-11-24T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-11-25T00:00:00.000Z"}, {"id": "FF_ETHUSD_231027", "datasetId": "FF_ETHUSD_231027", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-09-29T00:00:00.000Z", "expiry": "2023-10-27T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-10-28T00:00:00.000Z"}, {"id": "FI_ETHUSD_231027", "datasetId": "FI_ETHUSD_231027", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-09-29T00:00:00.000Z", "expiry": "2023-10-27T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-10-28T00:00:00.000Z"}, {"id": "FI_ETHUSD_230929", "datasetId": "FI_ETHUSD_230929", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-02-24T00:00:00.000Z", "expiry": "2023-09-29T15:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-09-30T00:00:00.000Z"}, {"id": "FF_ETHUSD_230929", "datasetId": "FF_ETHUSD_230929", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-05T00:00:00.000Z", "expiry": "2023-09-29T08:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-09-30T00:00:00.000Z"}, {"id": "FF_ETHUSD_230825", "datasetId": "FF_ETHUSD_230825", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-28T00:00:00.000Z", "expiry": "2023-08-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-08-26T00:00:00.000Z"}, {"id": "FI_ETHUSD_230825", "datasetId": "FI_ETHUSD_230825", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-28T00:00:00.000Z", "expiry": "2023-08-25T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-08-26T00:00:00.000Z"}, {"id": "FI_ETHUSD_230728", "datasetId": "FI_ETHUSD_230728", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-06-30T00:00:00.000Z", "expiry": "2023-07-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-07-29T00:00:00.000Z"}, {"id": "FF_ETHUSD_230728", "datasetId": "FF_ETHUSD_230728", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-05T00:00:00.000Z", "expiry": "2023-07-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2023-07-29T00:00:00.000Z"}, {"id": "FI_ETHUSD_230630", "datasetId": "FI_ETHUSD_230630", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-11-26T00:00:00.000Z", "expiry": "2023-06-30T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-07-01T00:00:00.000Z"}, {"id": "FI_ETHUSD_230526", "datasetId": "FI_ETHUSD_230526", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-04-28T00:00:00.000Z", "expiry": "2023-05-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-05-27T00:00:00.000Z"}, {"id": "FI_ETHUSD_230428", "datasetId": "FI_ETHUSD_230428", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-03-31T00:00:00.000Z", "expiry": "2023-04-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-04-29T00:00:00.000Z"}, {"id": "FI_ETHUSD_230331", "datasetId": "FI_ETHUSD_230331", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-08-26T00:00:00.000Z", "expiry": "2023-03-31T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-04-01T00:00:00.000Z"}, {"id": "FI_ETHUSD_230224", "datasetId": "FI_ETHUSD_230224", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-01-27T00:00:00.000Z", "expiry": "2023-02-24T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-02-25T00:00:00.000Z"}, {"id": "FI_ETHUSD_230127", "datasetId": "FI_ETHUSD_230127", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-12-30T00:00:00.000Z", "expiry": "2023-01-27T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2023-01-28T00:00:00.000Z"}, {"id": "FI_ETHUSD_221230", "datasetId": "FI_ETHUSD_221230", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-05-27T00:00:00.000Z", "expiry": "2022-12-30T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-12-31T00:00:00.000Z"}, {"id": "FI_ETHUSD_221125", "datasetId": "FI_ETHUSD_221125", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-10-28T00:00:00.000Z", "expiry": "2022-11-25T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-11-26T00:00:00.000Z"}, {"id": "FI_ETHUSD_221028", "datasetId": "FI_ETHUSD_221028", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-09-30T00:00:00.000Z", "expiry": "2022-10-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-10-29T00:00:00.000Z"}, {"id": "FI_ETHUSD_220930", "datasetId": "FI_ETHUSD_220930", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-02-25T00:00:00.000Z", "expiry": "2022-09-30T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-10-01T00:00:00.000Z"}, {"id": "FI_ETHUSD_220826", "datasetId": "FI_ETHUSD_220826", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-07-29T00:00:00.000Z", "expiry": "2022-08-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-08-27T00:00:00.000Z"}, {"id": "FI_ETHUSD_220729", "datasetId": "FI_ETHUSD_220729", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-06-24T00:00:00.000Z", "expiry": "2022-07-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-07-30T00:00:00.000Z"}, {"id": "FI_ETHUSD_220624", "datasetId": "FI_ETHUSD_220624", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-11-26T00:00:00.000Z", "expiry": "2022-06-24T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-06-25T00:00:00.000Z"}, {"id": "FI_ETHUSD_220527", "datasetId": "FI_ETHUSD_220527", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-04-29T00:00:00.000Z", "expiry": "2022-05-27T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-05-28T00:00:00.000Z"}, {"id": "FI_ETHUSD_220429", "datasetId": "FI_ETHUSD_220429", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-03-25T00:00:00.000Z", "expiry": "2022-04-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-04-30T00:00:00.000Z"}, {"id": "FI_ETHUSD_220325", "datasetId": "FI_ETHUSD_220325", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-08-27T00:00:00.000Z", "expiry": "2022-03-25T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-03-26T00:00:00.000Z"}, {"id": "FI_ETHUSD_220225", "datasetId": "FI_ETHUSD_220225", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-01-28T00:00:00.000Z", "expiry": "2022-02-25T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-02-26T00:00:00.000Z"}, {"id": "FI_ETHUSD_220128", "datasetId": "FI_ETHUSD_220128", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-12-31T00:00:00.000Z", "expiry": "2022-01-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-01-29T00:00:00.000Z"}, {"id": "FI_ETHUSD_211231", "datasetId": "FI_ETHUSD_211231", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-05-28T00:00:00.000Z", "expiry": "2021-12-31T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2022-01-01T00:00:00.000Z"}, {"id": "FI_ETHUSD_211126", "datasetId": "FI_ETHUSD_211126", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-10-29T00:00:00.000Z", "expiry": "2021-11-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2021-11-27T00:00:00.000Z"}, {"id": "FI_ETHUSD_211029", "datasetId": "FI_ETHUSD_211029", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-09-24T00:00:00.000Z", "expiry": "2021-10-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2021-10-30T00:00:00.000Z"}, {"id": "FI_ETHUSD_210924", "datasetId": "FI_ETHUSD_210924", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-02-26T00:00:00.000Z", "expiry": "2021-09-24T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2021-09-25T00:00:00.000Z"}, {"id": "FI_ETHUSD_210827", "datasetId": "FI_ETHUSD_210827", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-07-30T00:00:00.000Z", "expiry": "2021-08-27T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2021-08-28T00:00:00.000Z"}, {"id": "FI_ETHUSD_210730", "datasetId": "FI_ETHUSD_210730", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-06-25T00:00:00.000Z", "expiry": "2021-07-30T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2021-07-31T00:00:00.000Z"}, {"id": "FI_ETHUSD_210625", "datasetId": "FI_ETHUSD_210625", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-11-27T00:00:00.000Z", "expiry": "2021-06-25T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD", "availableTo": "2021-06-26T00:00:00.000Z"}, {"id": "FI_ETHUSD_210528", "datasetId": "FI_ETHUSD_210528", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-04-30T00:00:00.000Z", "expiry": "2021-05-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-29T00:00:00.000Z", "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_210430", "datasetId": "FI_ETHUSD_210430", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-03-26T00:00:00.000Z", "expiry": "2021-04-30T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-01T00:00:00.000Z", "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_210326", "datasetId": "FI_ETHUSD_210326", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-08-28T00:00:00.000Z", "expiry": "2021-03-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-03-27T00:00:00.000Z", "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_210226", "datasetId": "FI_ETHUSD_210226", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-01-29T00:00:00.000Z", "expiry": "2021-02-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-02-27T00:00:00.000Z", "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_210129", "datasetId": "FI_ETHUSD_210129", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-12-25T00:00:00.000Z", "expiry": "2021-01-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-01-30T00:00:00.000Z", "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_201225", "datasetId": "FI_ETHUSD_201225", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-07-03T00:00:00.000Z", "expiry": "2020-12-25T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2020-12-26T00:00:00.000Z", "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_201127", "datasetId": "FI_ETHUSD_201127", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-10-30T00:00:00.000Z", "availableTo": "2020-11-28T00:00:00.000Z", "expiry": "2020-11-27T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_201030", "datasetId": "FI_ETHUSD_201030", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-09-25T00:00:00.000Z", "availableTo": "2020-10-31T00:00:00.000Z", "expiry": "2020-10-30T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200925", "datasetId": "FI_ETHUSD_200925", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-05-30T00:00:00.000Z", "availableTo": "2020-09-26T00:00:00.000Z", "expiry": "2020-09-25T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200828", "datasetId": "FI_ETHUSD_200828", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-07-31T00:00:00.000Z", "availableTo": "2020-08-29T00:00:00.000Z", "expiry": "2020-08-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200731", "datasetId": "FI_ETHUSD_200731", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-06-26T00:00:00.000Z", "availableTo": "2020-08-01T00:00:00.000Z", "expiry": "2020-07-31T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200626", "datasetId": "FI_ETHUSD_200626", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-02-28T00:00:00.000Z", "availableTo": "2020-06-27T00:00:00.000Z", "expiry": "2020-06-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200529", "datasetId": "FI_ETHUSD_200529", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-04-25T00:00:00.000Z", "availableTo": "2020-05-30T00:00:00.000Z", "expiry": "2020-05-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200424", "datasetId": "FI_ETHUSD_200424", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-03-27T00:00:00.000Z", "availableTo": "2020-04-25T00:00:00.000Z", "expiry": "2020-04-24T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200327", "datasetId": "FI_ETHUSD_200327", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-11-29T00:00:00.000Z", "availableTo": "2020-03-28T00:00:00.000Z", "expiry": "2020-03-27T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200228", "datasetId": "FI_ETHUSD_200228", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-01-31T00:00:00.000Z", "availableTo": "2020-02-29T00:00:00.000Z", "expiry": "2020-02-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_200131", "datasetId": "FI_ETHUSD_200131", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-12-28T00:00:00.000Z", "availableTo": "2020-02-01T00:00:00.000Z", "expiry": "2020-01-31T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_191227", "datasetId": "FI_ETHUSD_191227", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-08-31T00:00:00.000Z", "availableTo": "2019-12-28T00:00:00.000Z", "expiry": "2019-12-27T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_191129", "datasetId": "FI_ETHUSD_191129", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-10-25T00:00:00.000Z", "availableTo": "2019-11-30T00:00:00.000Z", "expiry": "2019-11-29T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_191025", "datasetId": "FI_ETHUSD_191025", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-09-28T00:00:00.000Z", "availableTo": "2019-10-26T00:00:00.000Z", "expiry": "2019-10-25T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_190927", "datasetId": "FI_ETHUSD_190927", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-05-31T00:00:00.000Z", "availableTo": "2019-09-28T00:00:00.000Z", "expiry": "2019-09-27T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_190830", "datasetId": "FI_ETHUSD_190830", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-07-26T00:00:00.000Z", "availableTo": "2019-08-31T00:00:00.000Z", "expiry": "2019-08-30T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_190726", "datasetId": "FI_ETHUSD_190726", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-06-28T00:00:00.000Z", "availableTo": "2019-07-27T00:00:00.000Z", "expiry": "2019-07-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_190628", "datasetId": "FI_ETHUSD_190628", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-06-29T00:00:00.000Z", "expiry": "2019-06-28T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_190531", "datasetId": "FI_ETHUSD_190531", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-04-26T00:00:00.000Z", "availableTo": "2019-06-01T00:00:00.000Z", "expiry": "2019-05-31T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_ETHUSD_190426", "datasetId": "FI_ETHUSD_190426", "exchange": "cryptofacilities", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-04-27T00:00:00.000Z", "expiry": "2019-04-26T16:00:00.000Z", "priceIncrement": 0.05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_ETHUSD"}, {"id": "FI_LTCUSD_241227", "datasetId": "FI_LTCUSD_241227", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-08-30T00:00:00.000Z", "expiry": "2024-12-27T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-12-28T00:00:00.000Z"}, {"id": "FI_LTCUSD_241129", "datasetId": "FI_LTCUSD_241129", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-10-25T00:00:00.000Z", "expiry": "2024-11-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-11-30T00:00:00.000Z"}, {"id": "FI_LTCUSD_241025", "datasetId": "FI_LTCUSD_241025", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-09-27T00:00:00.000Z", "expiry": "2024-10-25T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-10-26T00:00:00.000Z"}, {"id": "FI_LTCUSD_240927", "datasetId": "FI_LTCUSD_240927", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-05-31T00:00:00.000Z", "expiry": "2024-09-27T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-09-28T00:00:00.000Z"}, {"id": "FI_LTCUSD_240830", "datasetId": "FI_LTCUSD_240830", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-07-26T00:00:00.000Z", "expiry": "2024-08-30T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-08-31T00:00:00.000Z"}, {"id": "FI_LTCUSD_240726", "datasetId": "FI_LTCUSD_240726", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-06-28T00:00:00.000Z", "expiry": "2024-07-26T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-07-27T00:00:00.000Z"}, {"id": "FI_LTCUSD_240628", "datasetId": "FI_LTCUSD_240628", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-02-23T00:00:00.000Z", "expiry": "2024-06-28T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-06-29T00:00:00.000Z"}, {"id": "FI_LTCUSD_240531", "datasetId": "FI_LTCUSD_240531", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-04-26T00:00:00.000Z", "expiry": "2024-05-31T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-06-01T00:00:00.000Z"}, {"id": "FI_LTCUSD_240426", "datasetId": "FI_LTCUSD_240426", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-04-26T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-04-27T00:00:00.000Z"}, {"id": "FI_LTCUSD_240329", "datasetId": "FI_LTCUSD_240329", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-11-24T00:00:00.000Z", "expiry": "2024-03-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-03-30T00:00:00.000Z"}, {"id": "FI_LTCUSD_240223", "datasetId": "FI_LTCUSD_240223", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-01-26T00:00:00.000Z", "expiry": "2024-02-23T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-02-24T00:00:00.000Z"}, {"id": "FI_LTCUSD_240126", "datasetId": "FI_LTCUSD_240126", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-12-29T00:00:00.000Z", "expiry": "2024-01-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2024-01-27T00:00:00.000Z"}, {"id": "FI_LTCUSD_231229", "datasetId": "FI_LTCUSD_231229", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-08-25T00:00:00.000Z", "expiry": "2023-12-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-12-30T00:00:00.000Z"}, {"id": "FI_LTCUSD_231124", "datasetId": "FI_LTCUSD_231124", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-10-27T00:00:00.000Z", "expiry": "2023-11-24T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-11-25T00:00:00.000Z"}, {"id": "FI_LTCUSD_231027", "datasetId": "FI_LTCUSD_231027", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-09-29T00:00:00.000Z", "expiry": "2023-10-27T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-10-28T00:00:00.000Z"}, {"id": "FI_LTCUSD_230929", "datasetId": "FI_LTCUSD_230929", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-05-26T00:00:00.000Z", "expiry": "2023-09-29T15:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-09-30T00:00:00.000Z"}, {"id": "FI_LTCUSD_230825", "datasetId": "FI_LTCUSD_230825", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-28T00:00:00.000Z", "expiry": "2023-08-25T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-08-26T00:00:00.000Z"}, {"id": "FI_LTCUSD_230728", "datasetId": "FI_LTCUSD_230728", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-06-30T00:00:00.000Z", "expiry": "2023-07-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-07-29T00:00:00.000Z"}, {"id": "FI_LTCUSD_230630", "datasetId": "FI_LTCUSD_230630", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-02-24T00:00:00.000Z", "expiry": "2023-06-30T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-07-01T00:00:00.000Z"}, {"id": "FI_LTCUSD_230526", "datasetId": "FI_LTCUSD_230526", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-04-28T00:00:00.000Z", "expiry": "2023-05-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-05-27T00:00:00.000Z"}, {"id": "FI_LTCUSD_230428", "datasetId": "FI_LTCUSD_230428", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-03-31T00:00:00.000Z", "expiry": "2023-04-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-04-29T00:00:00.000Z"}, {"id": "FI_LTCUSD_230331", "datasetId": "FI_LTCUSD_230331", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-11-25T00:00:00.000Z", "expiry": "2023-03-31T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-04-01T00:00:00.000Z"}, {"id": "FI_LTCUSD_230224", "datasetId": "FI_LTCUSD_230224", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-01-27T00:00:00.000Z", "expiry": "2023-02-24T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-02-25T00:00:00.000Z"}, {"id": "FI_LTCUSD_230127", "datasetId": "FI_LTCUSD_230127", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-12-31T00:00:00.000Z", "expiry": "2023-01-27T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2023-01-28T00:00:00.000Z"}, {"id": "FI_LTCUSD_221230", "datasetId": "FI_LTCUSD_221230", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-08-26T00:00:00.000Z", "expiry": "2022-12-30T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-12-31T00:00:00.000Z"}, {"id": "FI_LTCUSD_221125", "datasetId": "FI_LTCUSD_221125", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-10-28T00:00:00.000Z", "expiry": "2022-11-25T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-11-26T00:00:00.000Z"}, {"id": "FI_LTCUSD_221028", "datasetId": "FI_LTCUSD_221028", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-09-30T00:00:00.000Z", "expiry": "2022-10-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-10-29T00:00:00.000Z"}, {"id": "FI_LTCUSD_220930", "datasetId": "FI_LTCUSD_220930", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-05-27T00:00:00.000Z", "expiry": "2022-09-30T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-10-01T00:00:00.000Z"}, {"id": "FI_LTCUSD_220826", "datasetId": "FI_LTCUSD_220826", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-07-29T00:00:00.000Z", "expiry": "2022-08-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-08-27T00:00:00.000Z"}, {"id": "FI_LTCUSD_220729", "datasetId": "FI_LTCUSD_220729", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-06-24T00:00:00.000Z", "expiry": "2022-07-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-07-30T00:00:00.000Z"}, {"id": "FI_LTCUSD_220624", "datasetId": "FI_LTCUSD_220624", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-02-25T00:00:00.000Z", "expiry": "2022-06-24T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-06-25T00:00:00.000Z"}, {"id": "FI_LTCUSD_220527", "datasetId": "FI_LTCUSD_220527", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-04-29T00:00:00.000Z", "expiry": "2022-05-27T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-05-28T00:00:00.000Z"}, {"id": "FI_LTCUSD_220429", "datasetId": "FI_LTCUSD_220429", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-03-25T00:00:00.000Z", "expiry": "2022-04-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-04-30T00:00:00.000Z"}, {"id": "FI_LTCUSD_220325", "datasetId": "FI_LTCUSD_220325", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-11-26T00:00:00.000Z", "expiry": "2022-03-25T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-03-26T00:00:00.000Z"}, {"id": "FI_LTCUSD_220225", "datasetId": "FI_LTCUSD_220225", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-01-28T00:00:00.000Z", "expiry": "2022-02-25T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-02-26T00:00:00.000Z"}, {"id": "FI_LTCUSD_220128", "datasetId": "FI_LTCUSD_220128", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-12-31T00:00:00.000Z", "expiry": "2022-01-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-01-29T00:00:00.000Z"}, {"id": "FI_LTCUSD_211231", "datasetId": "FI_LTCUSD_211231", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-08-27T00:00:00.000Z", "expiry": "2021-12-31T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2022-01-01T00:00:00.000Z"}, {"id": "FI_LTCUSD_211126", "datasetId": "FI_LTCUSD_211126", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-10-29T00:00:00.000Z", "expiry": "2021-11-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2021-11-27T00:00:00.000Z"}, {"id": "FI_LTCUSD_211029", "datasetId": "FI_LTCUSD_211029", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-09-24T00:00:00.000Z", "expiry": "2021-10-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2021-10-30T00:00:00.000Z"}, {"id": "FI_LTCUSD_210924", "datasetId": "FI_LTCUSD_210924", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-05-28T00:00:00.000Z", "expiry": "2021-09-24T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2021-09-25T00:00:00.000Z"}, {"id": "FI_LTCUSD_210827", "datasetId": "FI_LTCUSD_210827", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-07-30T00:00:00.000Z", "expiry": "2021-08-27T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2021-08-28T00:00:00.000Z"}, {"id": "FI_LTCUSD_210730", "datasetId": "FI_LTCUSD_210730", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-06-25T00:00:00.000Z", "expiry": "2021-07-30T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2021-07-31T00:00:00.000Z"}, {"id": "FI_LTCUSD_210625", "datasetId": "FI_LTCUSD_210625", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-02-26T00:00:00.000Z", "expiry": "2021-06-25T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD", "availableTo": "2021-06-26T00:00:00.000Z"}, {"id": "FI_LTCUSD_210528", "datasetId": "FI_LTCUSD_210528", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-04-30T00:00:00.000Z", "expiry": "2021-05-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-29T00:00:00.000Z", "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_210430", "datasetId": "FI_LTCUSD_210430", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-03-26T00:00:00.000Z", "expiry": "2021-04-30T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-01T00:00:00.000Z", "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_210326", "datasetId": "FI_LTCUSD_210326", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-11-27T00:00:00.000Z", "expiry": "2021-03-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-03-27T00:00:00.000Z", "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_210226", "datasetId": "FI_LTCUSD_210226", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-01-29T00:00:00.000Z", "expiry": "2021-02-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-02-27T00:00:00.000Z", "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_210129", "datasetId": "FI_LTCUSD_210129", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-12-25T00:00:00.000Z", "expiry": "2021-01-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-01-30T00:00:00.000Z", "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_201225", "datasetId": "FI_LTCUSD_201225", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-08-28T00:00:00.000Z", "expiry": "2020-12-25T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2020-12-26T00:00:00.000Z", "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_201127", "datasetId": "FI_LTCUSD_201127", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-10-30T00:00:00.000Z", "availableTo": "2020-11-28T00:00:00.000Z", "expiry": "2020-11-27T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_201030", "datasetId": "FI_LTCUSD_201030", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-09-25T00:00:00.000Z", "availableTo": "2020-10-31T00:00:00.000Z", "expiry": "2020-10-30T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200925", "datasetId": "FI_LTCUSD_200925", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-05-30T00:00:00.000Z", "availableTo": "2020-09-26T00:00:00.000Z", "expiry": "2020-09-25T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200828", "datasetId": "FI_LTCUSD_200828", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-07-31T00:00:00.000Z", "availableTo": "2020-08-29T00:00:00.000Z", "expiry": "2020-08-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200731", "datasetId": "FI_LTCUSD_200731", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-06-26T00:00:00.000Z", "availableTo": "2020-08-01T00:00:00.000Z", "expiry": "2020-07-31T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200626", "datasetId": "FI_LTCUSD_200626", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-02-28T00:00:00.000Z", "availableTo": "2020-06-27T00:00:00.000Z", "expiry": "2020-06-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200529", "datasetId": "FI_LTCUSD_200529", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-04-25T00:00:00.000Z", "availableTo": "2020-05-30T00:00:00.000Z", "expiry": "2020-05-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200424", "datasetId": "FI_LTCUSD_200424", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-03-27T00:00:00.000Z", "availableTo": "2020-04-25T00:00:00.000Z", "expiry": "2020-04-24T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200327", "datasetId": "FI_LTCUSD_200327", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-11-29T00:00:00.000Z", "availableTo": "2020-03-28T00:00:00.000Z", "expiry": "2020-03-27T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200228", "datasetId": "FI_LTCUSD_200228", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-01-31T00:00:00.000Z", "availableTo": "2020-02-29T00:00:00.000Z", "expiry": "2020-02-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_200131", "datasetId": "FI_LTCUSD_200131", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-12-28T00:00:00.000Z", "availableTo": "2020-02-01T00:00:00.000Z", "expiry": "2020-01-31T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_191227", "datasetId": "FI_LTCUSD_191227", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-08-31T00:00:00.000Z", "availableTo": "2019-12-28T00:00:00.000Z", "expiry": "2019-12-27T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_191129", "datasetId": "FI_LTCUSD_191129", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-10-25T00:00:00.000Z", "availableTo": "2019-11-30T00:00:00.000Z", "expiry": "2019-11-29T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_191025", "datasetId": "FI_LTCUSD_191025", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-09-28T00:00:00.000Z", "availableTo": "2019-10-26T00:00:00.000Z", "expiry": "2019-10-25T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_190927", "datasetId": "FI_LTCUSD_190927", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-05-31T00:00:00.000Z", "availableTo": "2019-09-28T00:00:00.000Z", "expiry": "2019-09-27T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_190830", "datasetId": "FI_LTCUSD_190830", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-07-26T00:00:00.000Z", "availableTo": "2019-08-31T00:00:00.000Z", "expiry": "2019-08-30T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_190726", "datasetId": "FI_LTCUSD_190726", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-06-28T00:00:00.000Z", "availableTo": "2019-07-27T00:00:00.000Z", "expiry": "2019-07-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_190628", "datasetId": "FI_LTCUSD_190628", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-06-29T00:00:00.000Z", "expiry": "2019-06-28T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_190531", "datasetId": "FI_LTCUSD_190531", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-04-26T00:00:00.000Z", "availableTo": "2019-06-01T00:00:00.000Z", "expiry": "2019-05-31T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FI_LTCUSD_190426", "datasetId": "FI_LTCUSD_190426", "exchange": "cryptofacilities", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-04-27T00:00:00.000Z", "expiry": "2019-04-26T16:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_LTCUSD"}, {"id": "FF_SOLUSD_241227", "datasetId": "FF_SOLUSD_241227", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-08-30T00:00:00.000Z", "expiry": "2024-12-27T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-12-28T00:00:00.000Z"}, {"id": "FF_SOLUSD_241129", "datasetId": "FF_SOLUSD_241129", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-10-25T00:00:00.000Z", "expiry": "2024-11-29T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-11-30T00:00:00.000Z"}, {"id": "FF_SOLUSD_241025", "datasetId": "FF_SOLUSD_241025", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-09-27T00:00:00.000Z", "expiry": "2024-10-25T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-10-26T00:00:00.000Z"}, {"id": "FF_SOLUSD_240927", "datasetId": "FF_SOLUSD_240927", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-05-31T00:00:00.000Z", "expiry": "2024-09-27T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-09-28T00:00:00.000Z"}, {"id": "FF_SOLUSD_240830", "datasetId": "FF_SOLUSD_240830", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-07-26T00:00:00.000Z", "expiry": "2024-08-30T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-08-31T00:00:00.000Z"}, {"id": "FF_SOLUSD_240726", "datasetId": "FF_SOLUSD_240726", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-06-28T00:00:00.000Z", "expiry": "2024-07-26T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-07-27T00:00:00.000Z"}, {"id": "FF_SOLUSD_240628", "datasetId": "FF_SOLUSD_240628", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-06-28T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-06-29T00:00:00.000Z"}, {"id": "FF_SOLUSD_240531", "datasetId": "FF_SOLUSD_240531", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-04-26T00:00:00.000Z", "expiry": "2024-05-31T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-06-01T00:00:00.000Z"}, {"id": "FF_SOLUSD_240426", "datasetId": "FF_SOLUSD_240426", "exchange": "cryptofacilities", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-04-26T08:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1, "availableTo": "2024-04-27T00:00:00.000Z"}, {"id": "FI_BCHUSD_240927", "datasetId": "FI_BCHUSD_240927", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-05-31T00:00:00.000Z", "expiry": "2024-09-27T15:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2024-09-28T00:00:00.000Z"}, {"id": "FI_BCHUSD_240726", "datasetId": "FI_BCHUSD_240726", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-06-28T00:00:00.000Z", "expiry": "2024-07-26T15:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2024-07-27T00:00:00.000Z"}, {"id": "FI_BCHUSD_240628", "datasetId": "FI_BCHUSD_240628", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-02-23T00:00:00.000Z", "expiry": "2024-06-28T15:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2024-06-29T00:00:00.000Z"}, {"id": "FI_BCHUSD_240531", "datasetId": "FI_BCHUSD_240531", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-04-26T00:00:00.000Z", "expiry": "2024-05-31T15:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2024-06-01T00:00:00.000Z"}, {"id": "FI_BCHUSD_240426", "datasetId": "FI_BCHUSD_240426", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-04-26T15:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2024-04-27T00:00:00.000Z"}, {"id": "FI_BCHUSD_240329", "datasetId": "FI_BCHUSD_240329", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-11-25T00:00:00.000Z", "expiry": "2024-03-29T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2024-03-30T00:00:00.000Z"}, {"id": "FI_BCHUSD_240223", "datasetId": "FI_BCHUSD_240223", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-01-30T00:00:00.000Z", "expiry": "2024-02-23T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2024-02-24T00:00:00.000Z"}, {"id": "FI_BCHUSD_240126", "datasetId": "FI_BCHUSD_240126", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-12-31T00:00:00.000Z", "expiry": "2024-01-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2024-01-27T00:00:00.000Z"}, {"id": "FI_BCHUSD_231229", "datasetId": "FI_BCHUSD_231229", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-08-25T00:00:00.000Z", "expiry": "2023-12-29T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-12-30T00:00:00.000Z"}, {"id": "FI_BCHUSD_231124", "datasetId": "FI_BCHUSD_231124", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-11-03T00:00:00.000Z", "expiry": "2023-11-24T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-11-25T00:00:00.000Z"}, {"id": "FI_BCHUSD_231027", "datasetId": "FI_BCHUSD_231027", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-09-29T00:00:00.000Z", "expiry": "2023-10-27T15:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-10-28T00:00:00.000Z"}, {"id": "FI_BCHUSD_230929", "datasetId": "FI_BCHUSD_230929", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-05-26T00:00:00.000Z", "expiry": "2023-09-29T15:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-09-30T00:00:00.000Z"}, {"id": "FI_BCHUSD_230825", "datasetId": "FI_BCHUSD_230825", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-08-01T00:00:00.000Z", "expiry": "2023-08-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-08-26T00:00:00.000Z"}, {"id": "FI_BCHUSD_230728", "datasetId": "FI_BCHUSD_230728", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-06-30T00:00:00.000Z", "expiry": "2023-07-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-07-29T00:00:00.000Z"}, {"id": "FI_BCHUSD_230630", "datasetId": "FI_BCHUSD_230630", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-02-25T00:00:00.000Z", "expiry": "2023-06-30T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-07-01T00:00:00.000Z"}, {"id": "FI_BCHUSD_230526", "datasetId": "FI_BCHUSD_230526", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-04-28T00:00:00.000Z", "expiry": "2023-05-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-05-27T00:00:00.000Z"}, {"id": "FI_BCHUSD_230428", "datasetId": "FI_BCHUSD_230428", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-03-31T00:00:00.000Z", "expiry": "2023-04-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-04-29T00:00:00.000Z"}, {"id": "FI_BCHUSD_230331", "datasetId": "FI_BCHUSD_230331", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-11-28T00:00:00.000Z", "expiry": "2023-03-31T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-04-01T00:00:00.000Z"}, {"id": "FI_BCHUSD_230224", "datasetId": "FI_BCHUSD_230224", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-01-27T00:00:00.000Z", "expiry": "2023-02-24T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-02-25T00:00:00.000Z"}, {"id": "FI_BCHUSD_230127", "datasetId": "FI_BCHUSD_230127", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-01-02T00:00:00.000Z", "expiry": "2023-01-27T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2023-01-28T00:00:00.000Z"}, {"id": "FI_BCHUSD_221230", "datasetId": "FI_BCHUSD_221230", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-08-26T00:00:00.000Z", "expiry": "2022-12-30T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-12-31T00:00:00.000Z"}, {"id": "FI_BCHUSD_221125", "datasetId": "FI_BCHUSD_221125", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-10-28T00:00:00.000Z", "expiry": "2022-11-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-11-26T00:00:00.000Z"}, {"id": "FI_BCHUSD_221028", "datasetId": "FI_BCHUSD_221028", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-10-02T00:00:00.000Z", "expiry": "2022-10-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-10-29T00:00:00.000Z"}, {"id": "FI_BCHUSD_220930", "datasetId": "FI_BCHUSD_220930", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-05-27T00:00:00.000Z", "expiry": "2022-09-30T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-10-01T00:00:00.000Z"}, {"id": "FI_BCHUSD_220826", "datasetId": "FI_BCHUSD_220826", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-07-30T00:00:00.000Z", "expiry": "2022-08-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-08-27T00:00:00.000Z"}, {"id": "FI_BCHUSD_220729", "datasetId": "FI_BCHUSD_220729", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-06-24T00:00:00.000Z", "expiry": "2022-07-29T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-07-30T00:00:00.000Z"}, {"id": "FI_BCHUSD_220624", "datasetId": "FI_BCHUSD_220624", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-02-25T00:00:00.000Z", "expiry": "2022-06-24T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-06-25T00:00:00.000Z"}, {"id": "FI_BCHUSD_220527", "datasetId": "FI_BCHUSD_220527", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-04-29T00:00:00.000Z", "expiry": "2022-05-27T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-05-28T00:00:00.000Z"}, {"id": "FI_BCHUSD_220429", "datasetId": "FI_BCHUSD_220429", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-03-25T00:00:00.000Z", "expiry": "2022-04-29T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-04-30T00:00:00.000Z"}, {"id": "FI_BCHUSD_220325", "datasetId": "FI_BCHUSD_220325", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-11-26T00:00:00.000Z", "expiry": "2022-03-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-03-26T00:00:00.000Z"}, {"id": "FI_BCHUSD_220225", "datasetId": "FI_BCHUSD_220225", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-01-28T00:00:00.000Z", "expiry": "2022-02-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-02-26T00:00:00.000Z"}, {"id": "FI_BCHUSD_220128", "datasetId": "FI_BCHUSD_220128", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-12-31T00:00:00.000Z", "expiry": "2022-01-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-01-29T00:00:00.000Z"}, {"id": "FI_BCHUSD_211231", "datasetId": "FI_BCHUSD_211231", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-08-27T00:00:00.000Z", "expiry": "2021-12-31T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2022-01-01T00:00:00.000Z"}, {"id": "FI_BCHUSD_211126", "datasetId": "FI_BCHUSD_211126", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-10-29T00:00:00.000Z", "expiry": "2021-11-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2021-11-27T00:00:00.000Z"}, {"id": "FI_BCHUSD_211029", "datasetId": "FI_BCHUSD_211029", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-09-24T00:00:00.000Z", "expiry": "2021-10-29T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2021-10-30T00:00:00.000Z"}, {"id": "FI_BCHUSD_210924", "datasetId": "FI_BCHUSD_210924", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-05-28T00:00:00.000Z", "expiry": "2021-09-24T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2021-09-25T00:00:00.000Z"}, {"id": "FI_BCHUSD_210827", "datasetId": "FI_BCHUSD_210827", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-07-30T00:00:00.000Z", "expiry": "2021-08-27T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2021-08-28T00:00:00.000Z"}, {"id": "FI_BCHUSD_210730", "datasetId": "FI_BCHUSD_210730", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-06-25T00:00:00.000Z", "expiry": "2021-07-30T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2021-07-31T00:00:00.000Z"}, {"id": "FI_BCHUSD_210625", "datasetId": "FI_BCHUSD_210625", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-02-26T00:00:00.000Z", "expiry": "2021-06-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD", "availableTo": "2021-06-26T00:00:00.000Z"}, {"id": "FI_BCHUSD_210528", "datasetId": "FI_BCHUSD_210528", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-04-30T00:00:00.000Z", "expiry": "2021-05-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-29T00:00:00.000Z", "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_210430", "datasetId": "FI_BCHUSD_210430", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-03-26T00:00:00.000Z", "expiry": "2021-04-30T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-01T00:00:00.000Z", "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_210326", "datasetId": "FI_BCHUSD_210326", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-11-27T00:00:00.000Z", "expiry": "2021-03-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-03-27T00:00:00.000Z", "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_210226", "datasetId": "FI_BCHUSD_210226", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-01-29T00:00:00.000Z", "expiry": "2021-02-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-02-27T00:00:00.000Z", "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_210129", "datasetId": "FI_BCHUSD_210129", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-12-25T00:00:00.000Z", "expiry": "2021-01-29T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-01-30T00:00:00.000Z", "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_201225", "datasetId": "FI_BCHUSD_201225", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-08-28T00:00:00.000Z", "expiry": "2020-12-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2020-12-26T00:00:00.000Z", "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_201127", "datasetId": "FI_BCHUSD_201127", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-10-30T00:00:00.000Z", "availableTo": "2020-11-28T00:00:00.000Z", "expiry": "2020-11-27T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_201030", "datasetId": "FI_BCHUSD_201030", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-09-25T00:00:00.000Z", "availableTo": "2020-10-31T00:00:00.000Z", "expiry": "2020-10-30T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200925", "datasetId": "FI_BCHUSD_200925", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-05-30T00:00:00.000Z", "availableTo": "2020-09-26T00:00:00.000Z", "expiry": "2020-09-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200828", "datasetId": "FI_BCHUSD_200828", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-07-31T00:00:00.000Z", "availableTo": "2020-08-29T00:00:00.000Z", "expiry": "2020-08-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200731", "datasetId": "FI_BCHUSD_200731", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-06-26T00:00:00.000Z", "availableTo": "2020-08-01T00:00:00.000Z", "expiry": "2020-07-31T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200626", "datasetId": "FI_BCHUSD_200626", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-02-28T00:00:00.000Z", "availableTo": "2020-06-27T00:00:00.000Z", "expiry": "2020-06-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200529", "datasetId": "FI_BCHUSD_200529", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-04-25T00:00:00.000Z", "availableTo": "2020-05-30T00:00:00.000Z", "expiry": "2020-05-29T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200424", "datasetId": "FI_BCHUSD_200424", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-03-27T00:00:00.000Z", "availableTo": "2020-04-25T00:00:00.000Z", "expiry": "2020-04-24T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200327", "datasetId": "FI_BCHUSD_200327", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-11-29T00:00:00.000Z", "availableTo": "2020-03-28T00:00:00.000Z", "expiry": "2020-03-27T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200228", "datasetId": "FI_BCHUSD_200228", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-01-31T00:00:00.000Z", "availableTo": "2020-02-29T00:00:00.000Z", "expiry": "2020-02-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_200131", "datasetId": "FI_BCHUSD_200131", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-12-28T00:00:00.000Z", "availableTo": "2020-02-01T00:00:00.000Z", "expiry": "2020-01-31T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_191227", "datasetId": "FI_BCHUSD_191227", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-08-31T00:00:00.000Z", "availableTo": "2019-12-28T00:00:00.000Z", "expiry": "2019-12-27T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_191129", "datasetId": "FI_BCHUSD_191129", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-10-25T00:00:00.000Z", "availableTo": "2019-11-30T00:00:00.000Z", "expiry": "2019-11-29T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_191025", "datasetId": "FI_BCHUSD_191025", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-09-28T00:00:00.000Z", "availableTo": "2019-10-26T00:00:00.000Z", "expiry": "2019-10-25T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_190927", "datasetId": "FI_BCHUSD_190927", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-05-31T00:00:00.000Z", "availableTo": "2019-09-28T00:00:00.000Z", "expiry": "2019-09-27T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_190830", "datasetId": "FI_BCHUSD_190830", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-07-26T00:00:00.000Z", "availableTo": "2019-08-31T00:00:00.000Z", "expiry": "2019-08-30T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_190726", "datasetId": "FI_BCHUSD_190726", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-06-28T00:00:00.000Z", "availableTo": "2019-07-27T00:00:00.000Z", "expiry": "2019-07-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_190628", "datasetId": "FI_BCHUSD_190628", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-06-29T00:00:00.000Z", "expiry": "2019-06-28T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_190531", "datasetId": "FI_BCHUSD_190531", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-04-26T00:00:00.000Z", "availableTo": "2019-06-01T00:00:00.000Z", "expiry": "2019-05-31T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_BCHUSD_190426", "datasetId": "FI_BCHUSD_190426", "exchange": "cryptofacilities", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-04-27T00:00:00.000Z", "expiry": "2019-04-26T16:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_BCHUSD"}, {"id": "FI_XRPUSD_241227", "datasetId": "FI_XRPUSD_241227", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-08-30T00:00:00.000Z", "expiry": "2024-12-27T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-12-28T00:00:00.000Z"}, {"id": "FI_XRPUSD_241129", "datasetId": "FI_XRPUSD_241129", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-10-25T00:00:00.000Z", "expiry": "2024-11-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-11-30T00:00:00.000Z"}, {"id": "FI_XRPUSD_241025", "datasetId": "FI_XRPUSD_241025", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-09-27T00:00:00.000Z", "expiry": "2024-10-25T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-10-26T00:00:00.000Z"}, {"id": "FI_XRPUSD_240927", "datasetId": "FI_XRPUSD_240927", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-05-31T00:00:00.000Z", "expiry": "2024-09-27T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-09-28T00:00:00.000Z"}, {"id": "FI_XRPUSD_240830", "datasetId": "FI_XRPUSD_240830", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-07-26T00:00:00.000Z", "expiry": "2024-08-30T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-08-31T00:00:00.000Z"}, {"id": "FI_XRPUSD_240726", "datasetId": "FI_XRPUSD_240726", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-06-28T00:00:00.000Z", "expiry": "2024-07-26T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-07-27T00:00:00.000Z"}, {"id": "FI_XRPUSD_240628", "datasetId": "FI_XRPUSD_240628", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-02-23T00:00:00.000Z", "expiry": "2024-06-28T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-06-29T00:00:00.000Z"}, {"id": "FI_XRPUSD_240531", "datasetId": "FI_XRPUSD_240531", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-04-26T00:00:00.000Z", "expiry": "2024-05-31T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-06-01T00:00:00.000Z"}, {"id": "FI_XRPUSD_240426", "datasetId": "FI_XRPUSD_240426", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-03-29T00:00:00.000Z", "expiry": "2024-04-26T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-04-27T00:00:00.000Z"}, {"id": "FI_XRPUSD_240329", "datasetId": "FI_XRPUSD_240329", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-11-24T00:00:00.000Z", "expiry": "2024-03-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-03-30T00:00:00.000Z"}, {"id": "FI_XRPUSD_240223", "datasetId": "FI_XRPUSD_240223", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2024-01-26T00:00:00.000Z", "expiry": "2024-02-23T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-02-24T00:00:00.000Z"}, {"id": "FI_XRPUSD_240126", "datasetId": "FI_XRPUSD_240126", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-12-29T00:00:00.000Z", "expiry": "2024-01-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2024-01-27T00:00:00.000Z"}, {"id": "FI_XRPUSD_231229", "datasetId": "FI_XRPUSD_231229", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-08-25T00:00:00.000Z", "expiry": "2023-12-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-12-30T00:00:00.000Z"}, {"id": "FI_XRPUSD_231124", "datasetId": "FI_XRPUSD_231124", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-10-27T00:00:00.000Z", "expiry": "2023-11-24T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-11-25T00:00:00.000Z"}, {"id": "FI_XRPUSD_231027", "datasetId": "FI_XRPUSD_231027", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-09-29T00:00:00.000Z", "expiry": "2023-10-27T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-10-28T00:00:00.000Z"}, {"id": "FI_XRPUSD_230929", "datasetId": "FI_XRPUSD_230929", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-05-26T00:00:00.000Z", "expiry": "2023-09-29T15:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-09-30T00:00:00.000Z"}, {"id": "FI_XRPUSD_230825", "datasetId": "FI_XRPUSD_230825", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-07-28T00:00:00.000Z", "expiry": "2023-08-25T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-08-26T00:00:00.000Z"}, {"id": "FI_XRPUSD_230728", "datasetId": "FI_XRPUSD_230728", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-06-30T00:00:00.000Z", "expiry": "2023-07-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-07-29T00:00:00.000Z"}, {"id": "FI_XRPUSD_230630", "datasetId": "FI_XRPUSD_230630", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-02-24T00:00:00.000Z", "expiry": "2023-06-30T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-07-01T00:00:00.000Z"}, {"id": "FI_XRPUSD_230526", "datasetId": "FI_XRPUSD_230526", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-04-28T00:00:00.000Z", "expiry": "2023-05-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-05-27T00:00:00.000Z"}, {"id": "FI_XRPUSD_230428", "datasetId": "FI_XRPUSD_230428", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-03-31T00:00:00.000Z", "expiry": "2023-04-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-04-29T00:00:00.000Z"}, {"id": "FI_XRPUSD_230331", "datasetId": "FI_XRPUSD_230331", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-11-25T00:00:00.000Z", "expiry": "2023-03-31T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-04-01T00:00:00.000Z"}, {"id": "FI_XRPUSD_230224", "datasetId": "FI_XRPUSD_230224", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-01-27T00:00:00.000Z", "expiry": "2023-02-24T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-02-25T00:00:00.000Z"}, {"id": "FI_XRPUSD_230127", "datasetId": "FI_XRPUSD_230127", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2023-01-02T00:00:00.000Z", "expiry": "2023-01-27T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2023-01-28T00:00:00.000Z"}, {"id": "FI_XRPUSD_221230", "datasetId": "FI_XRPUSD_221230", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-08-26T00:00:00.000Z", "expiry": "2022-12-30T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-12-31T00:00:00.000Z"}, {"id": "FI_XRPUSD_221125", "datasetId": "FI_XRPUSD_221125", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-10-28T00:00:00.000Z", "expiry": "2022-11-25T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-11-26T00:00:00.000Z"}, {"id": "FI_XRPUSD_221028", "datasetId": "FI_XRPUSD_221028", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-09-30T00:00:00.000Z", "expiry": "2022-10-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-10-29T00:00:00.000Z"}, {"id": "FI_XRPUSD_220930", "datasetId": "FI_XRPUSD_220930", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-05-27T00:00:00.000Z", "expiry": "2022-09-30T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-10-01T00:00:00.000Z"}, {"id": "FI_XRPUSD_220826", "datasetId": "FI_XRPUSD_220826", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-07-29T00:00:00.000Z", "expiry": "2022-08-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-08-27T00:00:00.000Z"}, {"id": "FI_XRPUSD_220729", "datasetId": "FI_XRPUSD_220729", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-06-24T00:00:00.000Z", "expiry": "2022-07-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-07-30T00:00:00.000Z"}, {"id": "FI_XRPUSD_220624", "datasetId": "FI_XRPUSD_220624", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-02-25T00:00:00.000Z", "expiry": "2022-06-24T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-06-25T00:00:00.000Z"}, {"id": "FI_XRPUSD_220527", "datasetId": "FI_XRPUSD_220527", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-04-29T00:00:00.000Z", "expiry": "2022-05-27T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-05-28T00:00:00.000Z"}, {"id": "FI_XRPUSD_220429", "datasetId": "FI_XRPUSD_220429", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-03-25T00:00:00.000Z", "expiry": "2022-04-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-04-30T00:00:00.000Z"}, {"id": "FI_XRPUSD_220325", "datasetId": "FI_XRPUSD_220325", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-11-26T00:00:00.000Z", "expiry": "2022-03-25T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-03-26T00:00:00.000Z"}, {"id": "FI_XRPUSD_220225", "datasetId": "FI_XRPUSD_220225", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2022-01-28T00:00:00.000Z", "expiry": "2022-02-25T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-02-26T00:00:00.000Z"}, {"id": "FI_XRPUSD_220128", "datasetId": "FI_XRPUSD_220128", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-12-31T00:00:00.000Z", "expiry": "2022-01-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-01-29T00:00:00.000Z"}, {"id": "FI_XRPUSD_211231", "datasetId": "FI_XRPUSD_211231", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-08-27T00:00:00.000Z", "expiry": "2021-12-31T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2022-01-01T00:00:00.000Z"}, {"id": "FI_XRPUSD_211126", "datasetId": "FI_XRPUSD_211126", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-10-29T00:00:00.000Z", "expiry": "2021-11-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2021-11-27T00:00:00.000Z"}, {"id": "FI_XRPUSD_211029", "datasetId": "FI_XRPUSD_211029", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-09-24T00:00:00.000Z", "expiry": "2021-10-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2021-10-30T00:00:00.000Z"}, {"id": "FI_XRPUSD_210924", "datasetId": "FI_XRPUSD_210924", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-05-28T00:00:00.000Z", "expiry": "2021-09-24T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2021-09-25T00:00:00.000Z"}, {"id": "FI_XRPUSD_210827", "datasetId": "FI_XRPUSD_210827", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-07-30T00:00:00.000Z", "expiry": "2021-08-27T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2021-08-28T00:00:00.000Z"}, {"id": "FI_XRPUSD_210730", "datasetId": "FI_XRPUSD_210730", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-06-25T00:00:00.000Z", "expiry": "2021-07-30T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2021-07-31T00:00:00.000Z"}, {"id": "FI_XRPUSD_210625", "datasetId": "FI_XRPUSD_210625", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-02-26T00:00:00.000Z", "expiry": "2021-06-25T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD", "availableTo": "2021-06-26T00:00:00.000Z"}, {"id": "FI_XRPUSD_210528", "datasetId": "FI_XRPUSD_210528", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-04-30T00:00:00.000Z", "expiry": "2021-05-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-29T00:00:00.000Z", "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_210430", "datasetId": "FI_XRPUSD_210430", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-03-26T00:00:00.000Z", "expiry": "2021-04-30T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-05-01T00:00:00.000Z", "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_210326", "datasetId": "FI_XRPUSD_210326", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-11-27T00:00:00.000Z", "expiry": "2021-03-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-03-27T00:00:00.000Z", "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_210226", "datasetId": "FI_XRPUSD_210226", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2021-01-29T00:00:00.000Z", "expiry": "2021-02-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-02-27T00:00:00.000Z", "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_210129", "datasetId": "FI_XRPUSD_210129", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-12-25T00:00:00.000Z", "expiry": "2021-01-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2021-01-30T00:00:00.000Z", "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_201225", "datasetId": "FI_XRPUSD_201225", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-08-28T00:00:00.000Z", "expiry": "2020-12-25T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "availableTo": "2020-12-26T00:00:00.000Z", "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_201127", "datasetId": "FI_XRPUSD_201127", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-10-30T00:00:00.000Z", "availableTo": "2020-11-28T00:00:00.000Z", "expiry": "2020-11-27T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_201030", "datasetId": "FI_XRPUSD_201030", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-09-25T00:00:00.000Z", "availableTo": "2020-10-31T00:00:00.000Z", "expiry": "2020-10-30T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_200925", "datasetId": "FI_XRPUSD_200925", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-05-30T00:00:00.000Z", "availableTo": "2020-09-26T00:00:00.000Z", "expiry": "2020-09-25T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FV_XRPXBT_200925", "datasetId": "FV_XRPXBT_200925", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "BTC", "type": "future", "active": false, "availableSince": "2020-06-26T00:00:00.000Z", "availableTo": "2020-09-26T00:00:00.000Z", "expiry": "2020-09-25T16:00:00.000Z", "priceIncrement": 1e-08, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XRPUSD_200828", "datasetId": "FI_XRPUSD_200828", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-07-31T00:00:00.000Z", "availableTo": "2020-08-29T00:00:00.000Z", "expiry": "2020-08-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_200731", "datasetId": "FI_XRPUSD_200731", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-06-26T00:00:00.000Z", "availableTo": "2020-08-01T00:00:00.000Z", "expiry": "2020-07-31T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_200626", "datasetId": "FI_XRPUSD_200626", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-02-28T00:00:00.000Z", "availableTo": "2020-06-27T00:00:00.000Z", "expiry": "2020-06-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FV_XRPXBT_200626", "datasetId": "FV_XRPXBT_200626", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "BTC", "type": "future", "active": false, "availableSince": "2020-03-27T00:00:00.000Z", "availableTo": "2020-06-27T00:00:00.000Z", "expiry": "2020-06-26T16:00:00.000Z", "priceIncrement": 1e-08, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XRPUSD_200529", "datasetId": "FI_XRPUSD_200529", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-04-25T00:00:00.000Z", "availableTo": "2020-05-30T00:00:00.000Z", "expiry": "2020-05-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_200424", "datasetId": "FI_XRPUSD_200424", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-03-27T00:00:00.000Z", "availableTo": "2020-04-25T00:00:00.000Z", "expiry": "2020-04-24T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FV_XRPXBT_200327", "datasetId": "FV_XRPXBT_200327", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "BTC", "type": "future", "active": false, "availableSince": "2019-12-28T00:00:00.000Z", "availableTo": "2020-03-28T00:00:00.000Z", "expiry": "2020-03-27T16:00:00.000Z", "priceIncrement": 1e-08, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XRPUSD_200327", "datasetId": "FI_XRPUSD_200327", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-11-29T00:00:00.000Z", "availableTo": "2020-03-28T00:00:00.000Z", "expiry": "2020-03-27T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_200228", "datasetId": "FI_XRPUSD_200228", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2020-01-31T00:00:00.000Z", "availableTo": "2020-02-29T00:00:00.000Z", "expiry": "2020-02-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_200131", "datasetId": "FI_XRPUSD_200131", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-12-28T00:00:00.000Z", "availableTo": "2020-02-01T00:00:00.000Z", "expiry": "2020-01-31T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_191227", "datasetId": "FI_XRPUSD_191227", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-08-31T00:00:00.000Z", "availableTo": "2019-12-28T00:00:00.000Z", "expiry": "2019-12-27T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FV_XRPXBT_191227", "datasetId": "FV_XRPXBT_191227", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "BTC", "type": "future", "active": false, "availableSince": "2019-09-28T00:00:00.000Z", "availableTo": "2019-12-28T00:00:00.000Z", "expiry": "2019-12-27T16:00:00.000Z", "priceIncrement": 1e-08, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XRPUSD_191129", "datasetId": "FI_XRPUSD_191129", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-10-25T00:00:00.000Z", "availableTo": "2019-11-30T00:00:00.000Z", "expiry": "2019-11-29T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_191025", "datasetId": "FI_XRPUSD_191025", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-09-28T00:00:00.000Z", "availableTo": "2019-10-26T00:00:00.000Z", "expiry": "2019-10-25T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_190927", "datasetId": "FI_XRPUSD_190927", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-05-31T00:00:00.000Z", "availableTo": "2019-09-28T00:00:00.000Z", "expiry": "2019-09-27T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FV_XRPXBT_190927", "datasetId": "FV_XRPXBT_190927", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "BTC", "type": "future", "active": false, "availableSince": "2019-06-21T00:00:00.000Z", "availableTo": "2019-09-28T00:00:00.000Z", "expiry": "2019-09-27T16:00:00.000Z", "priceIncrement": 1e-08, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XRPUSD_190830", "datasetId": "FI_XRPUSD_190830", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-07-26T00:00:00.000Z", "availableTo": "2019-08-31T00:00:00.000Z", "expiry": "2019-08-30T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_190726", "datasetId": "FI_XRPUSD_190726", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-06-28T00:00:00.000Z", "availableTo": "2019-07-27T00:00:00.000Z", "expiry": "2019-07-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_190628", "datasetId": "FI_XRPUSD_190628", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-06-29T00:00:00.000Z", "expiry": "2019-06-28T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FV_XRPXBT_190628", "datasetId": "FV_XRPXBT_190628", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "BTC", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-06-29T00:00:00.000Z", "expiry": "2019-06-28T16:00:00.000Z", "priceIncrement": 1e-08, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": false, "contractType": "linear_future", "contractMultiplier": 1}, {"id": "FI_XRPUSD_190531", "datasetId": "FI_XRPUSD_190531", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-04-26T00:00:00.000Z", "availableTo": "2019-06-01T00:00:00.000Z", "expiry": "2019-05-31T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}, {"id": "FI_XRPUSD_190426", "datasetId": "FI_XRPUSD_190426", "exchange": "cryptofacilities", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "future", "active": false, "availableSince": "2019-03-30T00:00:00.000Z", "availableTo": "2019-04-27T00:00:00.000Z", "expiry": "2019-04-26T16:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0005, "inverse": true, "contractType": "inverse_future", "contractMultiplier": 1, "underlyingIndex": "RR_XRPUSD"}]