@sui-tracker/shared 1.0.98 → 1.0.99
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.
|
@@ -61,6 +61,8 @@ export interface PoolDataDetail {
|
|
|
61
61
|
stats: {
|
|
62
62
|
[key: number]: IPoolStats;
|
|
63
63
|
};
|
|
64
|
+
reserveA?: number;
|
|
65
|
+
reserveB?: number;
|
|
64
66
|
}
|
|
65
67
|
export interface IPoolStats {
|
|
66
68
|
priceChange: number;
|
|
@@ -126,6 +128,8 @@ export interface ListPool {
|
|
|
126
128
|
priceChange1440m: number;
|
|
127
129
|
aIsBase: boolean;
|
|
128
130
|
volumeChangePercentage: number;
|
|
131
|
+
reserveA?: number;
|
|
132
|
+
reserveB?: number;
|
|
129
133
|
}
|
|
130
134
|
export interface GetListPoolsResponse extends BaseResponse {
|
|
131
135
|
data: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"swap-order.interface.js","sourceRoot":"","sources":["../../../src/modules/interfaces/swap-order.interface.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"swap-order.interface.js","sourceRoot":"","sources":["../../../src/modules/interfaces/swap-order.interface.ts"],"names":[],"mappings":";;AA+IC,EAAE,CAAA"}
|
|
@@ -79,6 +79,8 @@ message PoolDataDetail {
|
|
|
79
79
|
string pool = 7;
|
|
80
80
|
bool aIsBase = 8;
|
|
81
81
|
map<int32, IPoolStats> stats = 9;
|
|
82
|
+
optional double reserveA = 10;
|
|
83
|
+
optional double reserveB = 11;
|
|
82
84
|
}
|
|
83
85
|
|
|
84
86
|
// List pool structure matching ListPool interface
|
|
@@ -108,6 +110,8 @@ message ListPool {
|
|
|
108
110
|
double priceChange1440m = 23;
|
|
109
111
|
bool aIsBase = 24;
|
|
110
112
|
double volumeChangePercentage = 25;
|
|
113
|
+
optional double reserveA = 26;
|
|
114
|
+
optional double reserveB = 27;
|
|
111
115
|
}
|
|
112
116
|
|
|
113
117
|
// List token structure matching ListToken interface
|