@sui-tracker/shared 1.0.68 → 1.0.69

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.
@@ -76,7 +76,7 @@ export interface GetPoolRequest {
76
76
  export interface GetCandleChartRequest {
77
77
  pool: string;
78
78
  resolution: number;
79
- fromTime: number;
79
+ limit: number;
80
80
  endTime: number;
81
81
  type?: 'usd' | 'token';
82
82
  }
@@ -169,7 +169,7 @@ message GetPoolRequest {
169
169
  message GetCandleChartRequest {
170
170
  string pool = 1;
171
171
  int32 resolution = 2;
172
- int64 fromTime = 3;
172
+ int32 limit = 3;
173
173
  int64 endTime = 4;
174
174
  optional string type = 5; // 'usd' | 'token'
175
175
  }