@sui-tracker/shared 1.0.70 → 1.0.72
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.
|
@@ -93,7 +93,8 @@ export interface IBalanceOfAccount {
|
|
|
93
93
|
tokenAddress: string;
|
|
94
94
|
}
|
|
95
95
|
export interface IGetTokenTransferDetailsRequest {
|
|
96
|
-
|
|
96
|
+
sender: string;
|
|
97
|
+
receiver: string;
|
|
97
98
|
}
|
|
98
99
|
export interface IGetTokenTransferDetailsResponse extends BaseResponse {
|
|
99
100
|
data: ILink[];
|
|
@@ -121,7 +121,7 @@ message SwapOrderData {
|
|
|
121
121
|
string price = 5; // Decimal(18, 9)
|
|
122
122
|
string volume = 6; // Decimal(18, 9)
|
|
123
123
|
string transactionHash = 7; // FixedString(66)
|
|
124
|
-
|
|
124
|
+
int32 swapAt = 8; // timestamp
|
|
125
125
|
string type = 9; // Enum8: 'swap' | 'createPool' | 'addLiquidity' | 'removeLiquidity'
|
|
126
126
|
string a2b = 10; // Enum8: 'A2B' | 'B2A'
|
|
127
127
|
string amountA = 11; // UInt64
|
|
@@ -176,7 +176,7 @@ message GetCandleChartRequest {
|
|
|
176
176
|
|
|
177
177
|
message GetLastSwapOrderRequest {
|
|
178
178
|
string poolAddress = 1;
|
|
179
|
-
|
|
179
|
+
int32 toTime = 2;
|
|
180
180
|
optional int32 limit = 3;
|
|
181
181
|
optional string type = 4;
|
|
182
182
|
optional double minAmountA = 5;
|