Skip to content

Commit

Permalink
indexer proto
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyaoy committed Sep 23, 2024
1 parent 0859b2d commit c9eb62e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ export interface MarketParam {
* For example if `Exponent == -5` then a `Value` of `1,000,000,000`
* 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 */

exponent: number;
/**
* The minimum number of exchanges that should be reporting a live price for
Expand Down Expand Up @@ -58,8 +62,12 @@ export interface MarketParamSDKType {
* For example if `Exponent == -5` then a `Value` of `1,000,000,000`
* 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 */

exponent: number;
/**
* The minimum number of exchanges that should be reporting a live price for
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export interface MarketPrice {
/**
* Static value. The exponent of the price. See the comment on the duplicate
* MarketParam field for more information.
*
* As of v7.1.x, this value is determined from the marketmap instead of
* needing to match the MarketParam field.
*/

exponent: number;
Expand All @@ -26,6 +29,9 @@ export interface MarketPriceSDKType {
/**
* Static value. The exponent of the price. See the comment on the duplicate
* MarketParam field for more information.
*
* As of v7.1.x, this value is determined from the marketmap instead of
* needing to match the MarketParam field.
*/

exponent: number;
Expand Down

0 comments on commit c9eb62e

Please sign in to comment.