From 391c4e72f9d13db578900e7e285c1a8ef5230ad1 Mon Sep 17 00:00:00 2001 From: Chenyao Yu <4844716+chenyaoy@users.noreply.github.com> Date: Mon, 21 Oct 2024 14:47:42 -0400 Subject: [PATCH] indexer proto codegen --- .../src/codegen/dydxprotocol/prices/market_param.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/indexer/packages/v4-protos/src/codegen/dydxprotocol/prices/market_param.ts b/indexer/packages/v4-protos/src/codegen/dydxprotocol/prices/market_param.ts index 95ed7d6c89..cc012bd483 100644 --- a/indexer/packages/v4-protos/src/codegen/dydxprotocol/prices/market_param.ts +++ b/indexer/packages/v4-protos/src/codegen/dydxprotocol/prices/market_param.ts @@ -19,7 +19,7 @@ export interface MarketParam { * represents ``$10,000`. Therefore `10 ^ Exponent` represents the smallest * price step (in dollars) that can be recorded. * - * Deprecated since v7.1.x. This value is now determined from the marketmap. + * Deprecated since v8.x. This value is now determined from the marketmap. */ /** @deprecated */ @@ -28,6 +28,8 @@ export interface MarketParam { /** * The minimum number of exchanges that should be reporting a live price for * a price update to be considered valid. + * + * Deprecated since v8.x. This value is now determined from the marketmap. */ minExchanges: number; @@ -40,6 +42,8 @@ export interface MarketParam { /** * A string of json that encodes the configuration for resolving the price * of this market on various exchanges. + * + * Deprecated since v8.x. The exchange config is now determined from the marketmap. */ exchangeConfigJson: string; @@ -63,7 +67,7 @@ export interface MarketParamSDKType { * represents ``$10,000`. Therefore `10 ^ Exponent` represents the smallest * price step (in dollars) that can be recorded. * - * Deprecated since v7.1.x. This value is now determined from the marketmap. + * Deprecated since v8.x. This value is now determined from the marketmap. */ /** @deprecated */ @@ -72,6 +76,8 @@ export interface MarketParamSDKType { /** * The minimum number of exchanges that should be reporting a live price for * a price update to be considered valid. + * + * Deprecated since v8.x. This value is now determined from the marketmap. */ min_exchanges: number; @@ -84,6 +90,8 @@ export interface MarketParamSDKType { /** * A string of json that encodes the configuration for resolving the price * of this market on various exchanges. + * + * Deprecated since v8.x. The exchange config is now determined from the marketmap. */ exchange_config_json: string;