@sui-tracker/shared 1.0.71 → 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
|