@sui-tracker/shared 1.0.71 → 1.0.73
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,10 @@ export interface IBalanceOfAccount {
|
|
|
93
93
|
tokenAddress: string;
|
|
94
94
|
}
|
|
95
95
|
export interface IGetTokenTransferDetailsRequest {
|
|
96
|
-
|
|
96
|
+
sender: string;
|
|
97
|
+
receiver: string;
|
|
98
|
+
page: number;
|
|
99
|
+
pageLimit: number;
|
|
97
100
|
}
|
|
98
101
|
export interface IGetTokenTransferDetailsResponse extends BaseResponse {
|
|
99
102
|
data: ILink[];
|
|
@@ -175,7 +175,10 @@ message BalanceOfAccount {
|
|
|
175
175
|
|
|
176
176
|
// Request message for getting token transfer details
|
|
177
177
|
message GetTokenTransferDetailsRequest {
|
|
178
|
-
|
|
178
|
+
string sender = 1;
|
|
179
|
+
string receiver = 2;
|
|
180
|
+
uint32 page = 3;
|
|
181
|
+
uint32 pageLimit = 4;
|
|
179
182
|
}
|
|
180
183
|
|
|
181
184
|
// Response message for getting token transfer details
|
|
@@ -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
|