@sui-tracker/shared 1.1.0 → 1.1.2
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.
|
@@ -51,6 +51,7 @@ export interface TokenData {
|
|
|
51
51
|
totalSupply?: string | null;
|
|
52
52
|
description?: string | null;
|
|
53
53
|
price?: number | null;
|
|
54
|
+
tokenCreatedAt?: string | null;
|
|
54
55
|
}
|
|
55
56
|
export interface PoolData {
|
|
56
57
|
id: string;
|
|
@@ -184,6 +185,7 @@ export interface TokenSwapData {
|
|
|
184
185
|
transactionHash: string;
|
|
185
186
|
trader: string;
|
|
186
187
|
dex: string;
|
|
188
|
+
isBuy: boolean;
|
|
187
189
|
}
|
|
188
190
|
export interface GetLastSwapOrderRequest {
|
|
189
191
|
poolAddress: string;
|
|
@@ -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":";;AAiKC,EAAE,CAAA"}
|
|
@@ -34,6 +34,7 @@ message TokenData {
|
|
|
34
34
|
optional string totalSupply = 7;
|
|
35
35
|
optional string description = 8;
|
|
36
36
|
optional double price = 9;
|
|
37
|
+
optional string tokenCreatedAt = 10;
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
|
|
@@ -194,6 +195,7 @@ message TokenSwapData {
|
|
|
194
195
|
string transactionHash = 8; // FixedString(44)
|
|
195
196
|
string trader = 9; // LowCardinality(String)
|
|
196
197
|
string dex = 10; // String
|
|
198
|
+
bool isBuy = 11; // Boolean
|
|
197
199
|
}
|
|
198
200
|
|
|
199
201
|
// Trending token data structure
|