Skip to content

Commit

Permalink
indexer proto codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyaoy committed Oct 21, 2024
1 parent 679f9f2 commit 391c4e7
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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;
Expand All @@ -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;
Expand All @@ -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 */
Expand All @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 391c4e7

Please sign in to comment.