@nadohq/indexer-client 0.11.0 → 0.13.0

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.
@@ -583,6 +583,19 @@ export interface IndexerServerV2Symbol {
583
583
  trading_status: string;
584
584
  isolated_only: boolean;
585
585
  market_hours: IndexerServerV2MarketHours | null;
586
+ /**
587
+ * Boost tier for products with rewards boosts. Null for non-boosted products.
588
+ * 0 = none, 1 = taker 4x / maker 4x, 2 = taker 3x / maker 4x
589
+ */
590
+ boost_type: number | null;
591
+ /**
592
+ * Taker rewards multiplier. Null for non-boosted products.
593
+ */
594
+ taker_multiplier: number | null;
595
+ /**
596
+ * Maker rewards multiplier. Null for non-boosted products.
597
+ */
598
+ maker_multiplier: number | null;
586
599
  }
587
600
 
588
601
  /**