@sui-tracker/shared 1.0.95 → 1.0.96
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.
|
@@ -147,7 +147,7 @@ export interface SwapOrderData {
|
|
|
147
147
|
price: string;
|
|
148
148
|
volume: string;
|
|
149
149
|
transactionHash: string;
|
|
150
|
-
|
|
150
|
+
timestamp: number;
|
|
151
151
|
type: 'swap' | 'createPool' | 'addLiquidity' | 'removeLiquidity';
|
|
152
152
|
a2b: 'A2B' | 'B2A';
|
|
153
153
|
amountA: string;
|
|
@@ -144,7 +144,7 @@ message SwapOrderData {
|
|
|
144
144
|
string price = 5; // Decimal(18, 9)
|
|
145
145
|
string volume = 6; // Decimal(18, 9)
|
|
146
146
|
string transactionHash = 7; // FixedString(66)
|
|
147
|
-
int32
|
|
147
|
+
int32 timestamp = 8; // timestamp
|
|
148
148
|
string type = 9; // Enum8: 'swap' | 'createPool' | 'addLiquidity' | 'removeLiquidity'
|
|
149
149
|
string a2b = 10; // Enum8: 'A2B' | 'B2A'
|
|
150
150
|
string amountA = 11; // UInt64
|