@longdotxyz/shared 0.0.75 → 0.0.77
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.
- package/dist/contracts/asset.contract.d.ts +136 -0
- package/dist/contracts/asset.contract.js +4 -0
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +247 -0
- package/dist/contracts/index.js +3 -0
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/pathfinding.contract.d.ts +263 -0
- package/dist/contracts/pathfinding.contract.js +45 -0
- package/dist/contracts/pathfinding.contract.js.map +1 -0
- package/dist/graphql/generated.d.ts +32 -0
- package/dist/graphql/generated.js +4 -0
- package/dist/graphql/generated.js.map +1 -1
- package/package.json +1 -1
package/dist/contracts/index.js
CHANGED
|
@@ -21,6 +21,7 @@ const auction_template_contract_1 = require("./auction-template.contract");
|
|
|
21
21
|
const auction_contract_1 = require("./auction.contract");
|
|
22
22
|
const community_contract_1 = require("./community.contract");
|
|
23
23
|
const ipfs_contract_1 = require("./ipfs.contract");
|
|
24
|
+
const pathfinding_contract_1 = require("./pathfinding.contract");
|
|
24
25
|
const sponsorship_contract_1 = require("./sponsorship.contract");
|
|
25
26
|
const contract = (0, core_1.initContract)();
|
|
26
27
|
exports.rootContract = contract.router({
|
|
@@ -29,6 +30,7 @@ exports.rootContract = contract.router({
|
|
|
29
30
|
auctionTemplates: auction_template_contract_1.auctionTemplateContract,
|
|
30
31
|
communities: community_contract_1.communityContract,
|
|
31
32
|
ipfs: ipfs_contract_1.ipfsContract,
|
|
33
|
+
pathfinding: pathfinding_contract_1.pathfindingContract,
|
|
32
34
|
sponsorships: sponsorship_contract_1.sponsorshipContract,
|
|
33
35
|
});
|
|
34
36
|
__exportStar(require("./asset.contract"), exports);
|
|
@@ -36,5 +38,6 @@ __exportStar(require("./auction.contract"), exports);
|
|
|
36
38
|
__exportStar(require("./auction-template.contract"), exports);
|
|
37
39
|
__exportStar(require("./community.contract"), exports);
|
|
38
40
|
__exportStar(require("./ipfs.contract"), exports);
|
|
41
|
+
__exportStar(require("./pathfinding.contract"), exports);
|
|
39
42
|
__exportStar(require("./sponsorship.contract"), exports);
|
|
40
43
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,wCAA6C;AAE7C,qDAAiD;AACjD,2EAAsE;AACtE,yDAAqD;AACrD,6DAAyD;AACzD,mDAA+C;AAC/C,iEAA6D;AAE7D,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AACnB,QAAA,YAAY,GAAG,QAAQ,CAAC,MAAM,CAAC;IACxC,MAAM,EAAE,8BAAa;IACrB,QAAQ,EAAE,kCAAe;IACzB,gBAAgB,EAAE,mDAAuB;IACzC,WAAW,EAAE,sCAAiB;IAC9B,IAAI,EAAE,4BAAY;IAClB,YAAY,EAAE,0CAAmB;CACpC,CAAC,CAAC;AAEH,mDAAiC;AACjC,qDAAmC;AACnC,8DAA4C;AAC5C,uDAAqC;AACrC,kDAAgC;AAChC,yDAAuC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,wCAA6C;AAE7C,qDAAiD;AACjD,2EAAsE;AACtE,yDAAqD;AACrD,6DAAyD;AACzD,mDAA+C;AAC/C,iEAA6D;AAC7D,iEAA6D;AAE7D,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AACnB,QAAA,YAAY,GAAG,QAAQ,CAAC,MAAM,CAAC;IACxC,MAAM,EAAE,8BAAa;IACrB,QAAQ,EAAE,kCAAe;IACzB,gBAAgB,EAAE,mDAAuB;IACzC,WAAW,EAAE,sCAAiB;IAC9B,IAAI,EAAE,4BAAY;IAClB,WAAW,EAAE,0CAAmB;IAChC,YAAY,EAAE,0CAAmB;CACpC,CAAC,CAAC;AAEH,mDAAiC;AACjC,qDAAmC;AACnC,8DAA4C;AAC5C,uDAAqC;AACrC,kDAAgC;AAChC,yDAAuC;AACvC,yDAAuC"}
|
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
import z from "zod";
|
|
2
|
+
declare const FetchTokensPathsResponseSchema: z.ZodObject<{
|
|
3
|
+
token_address: z.ZodString;
|
|
4
|
+
paths_count: z.ZodNumber;
|
|
5
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
6
|
+
start_token_address: z.ZodString;
|
|
7
|
+
end_token_address: z.ZodString;
|
|
8
|
+
score: z.ZodNumber;
|
|
9
|
+
total_liquidity_usd: z.ZodNumber;
|
|
10
|
+
total_volume_usd: z.ZodNumber;
|
|
11
|
+
bottleneck_liquidity_usd: z.ZodNumber;
|
|
12
|
+
hops: z.ZodArray<z.ZodObject<{
|
|
13
|
+
pool_address: z.ZodString;
|
|
14
|
+
token_in_address: z.ZodString;
|
|
15
|
+
token_out_address: z.ZodString;
|
|
16
|
+
protocol: z.ZodString;
|
|
17
|
+
fee: z.ZodNullable<z.ZodNumber>;
|
|
18
|
+
tick_spacing: z.ZodNullable<z.ZodNumber>;
|
|
19
|
+
hooks: z.ZodNullable<z.ZodString>;
|
|
20
|
+
liquidity_usd: z.ZodNullable<z.ZodNumber>;
|
|
21
|
+
volume_usd: z.ZodNullable<z.ZodNumber>;
|
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
fee: number | null;
|
|
24
|
+
hooks: string | null;
|
|
25
|
+
pool_address: string;
|
|
26
|
+
token_in_address: string;
|
|
27
|
+
token_out_address: string;
|
|
28
|
+
protocol: string;
|
|
29
|
+
tick_spacing: number | null;
|
|
30
|
+
liquidity_usd: number | null;
|
|
31
|
+
volume_usd: number | null;
|
|
32
|
+
}, {
|
|
33
|
+
fee: number | null;
|
|
34
|
+
hooks: string | null;
|
|
35
|
+
pool_address: string;
|
|
36
|
+
token_in_address: string;
|
|
37
|
+
token_out_address: string;
|
|
38
|
+
protocol: string;
|
|
39
|
+
tick_spacing: number | null;
|
|
40
|
+
liquidity_usd: number | null;
|
|
41
|
+
volume_usd: number | null;
|
|
42
|
+
}>, "many">;
|
|
43
|
+
}, "strip", z.ZodTypeAny, {
|
|
44
|
+
start_token_address: string;
|
|
45
|
+
end_token_address: string;
|
|
46
|
+
score: number;
|
|
47
|
+
total_liquidity_usd: number;
|
|
48
|
+
total_volume_usd: number;
|
|
49
|
+
bottleneck_liquidity_usd: number;
|
|
50
|
+
hops: {
|
|
51
|
+
fee: number | null;
|
|
52
|
+
hooks: string | null;
|
|
53
|
+
pool_address: string;
|
|
54
|
+
token_in_address: string;
|
|
55
|
+
token_out_address: string;
|
|
56
|
+
protocol: string;
|
|
57
|
+
tick_spacing: number | null;
|
|
58
|
+
liquidity_usd: number | null;
|
|
59
|
+
volume_usd: number | null;
|
|
60
|
+
}[];
|
|
61
|
+
}, {
|
|
62
|
+
start_token_address: string;
|
|
63
|
+
end_token_address: string;
|
|
64
|
+
score: number;
|
|
65
|
+
total_liquidity_usd: number;
|
|
66
|
+
total_volume_usd: number;
|
|
67
|
+
bottleneck_liquidity_usd: number;
|
|
68
|
+
hops: {
|
|
69
|
+
fee: number | null;
|
|
70
|
+
hooks: string | null;
|
|
71
|
+
pool_address: string;
|
|
72
|
+
token_in_address: string;
|
|
73
|
+
token_out_address: string;
|
|
74
|
+
protocol: string;
|
|
75
|
+
tick_spacing: number | null;
|
|
76
|
+
liquidity_usd: number | null;
|
|
77
|
+
volume_usd: number | null;
|
|
78
|
+
}[];
|
|
79
|
+
}>, "many">;
|
|
80
|
+
}, "strip", z.ZodTypeAny, {
|
|
81
|
+
token_address: string;
|
|
82
|
+
paths_count: number;
|
|
83
|
+
paths: {
|
|
84
|
+
start_token_address: string;
|
|
85
|
+
end_token_address: string;
|
|
86
|
+
score: number;
|
|
87
|
+
total_liquidity_usd: number;
|
|
88
|
+
total_volume_usd: number;
|
|
89
|
+
bottleneck_liquidity_usd: number;
|
|
90
|
+
hops: {
|
|
91
|
+
fee: number | null;
|
|
92
|
+
hooks: string | null;
|
|
93
|
+
pool_address: string;
|
|
94
|
+
token_in_address: string;
|
|
95
|
+
token_out_address: string;
|
|
96
|
+
protocol: string;
|
|
97
|
+
tick_spacing: number | null;
|
|
98
|
+
liquidity_usd: number | null;
|
|
99
|
+
volume_usd: number | null;
|
|
100
|
+
}[];
|
|
101
|
+
}[];
|
|
102
|
+
}, {
|
|
103
|
+
token_address: string;
|
|
104
|
+
paths_count: number;
|
|
105
|
+
paths: {
|
|
106
|
+
start_token_address: string;
|
|
107
|
+
end_token_address: string;
|
|
108
|
+
score: number;
|
|
109
|
+
total_liquidity_usd: number;
|
|
110
|
+
total_volume_usd: number;
|
|
111
|
+
bottleneck_liquidity_usd: number;
|
|
112
|
+
hops: {
|
|
113
|
+
fee: number | null;
|
|
114
|
+
hooks: string | null;
|
|
115
|
+
pool_address: string;
|
|
116
|
+
token_in_address: string;
|
|
117
|
+
token_out_address: string;
|
|
118
|
+
protocol: string;
|
|
119
|
+
tick_spacing: number | null;
|
|
120
|
+
liquidity_usd: number | null;
|
|
121
|
+
volume_usd: number | null;
|
|
122
|
+
}[];
|
|
123
|
+
}[];
|
|
124
|
+
}>;
|
|
125
|
+
declare const pathfindingContract: {
|
|
126
|
+
fetchTokenPaths: {
|
|
127
|
+
pathParams: z.ZodObject<{
|
|
128
|
+
tokenInAddress: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
129
|
+
}, "strip", z.ZodTypeAny, {
|
|
130
|
+
tokenInAddress: `0x${string}`;
|
|
131
|
+
}, {
|
|
132
|
+
tokenInAddress: string;
|
|
133
|
+
}>;
|
|
134
|
+
method: "GET";
|
|
135
|
+
path: "paths/:tokenInAddress";
|
|
136
|
+
responses: {
|
|
137
|
+
200: z.ZodObject<{
|
|
138
|
+
token_address: z.ZodString;
|
|
139
|
+
paths_count: z.ZodNumber;
|
|
140
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
141
|
+
start_token_address: z.ZodString;
|
|
142
|
+
end_token_address: z.ZodString;
|
|
143
|
+
score: z.ZodNumber;
|
|
144
|
+
total_liquidity_usd: z.ZodNumber;
|
|
145
|
+
total_volume_usd: z.ZodNumber;
|
|
146
|
+
bottleneck_liquidity_usd: z.ZodNumber;
|
|
147
|
+
hops: z.ZodArray<z.ZodObject<{
|
|
148
|
+
pool_address: z.ZodString;
|
|
149
|
+
token_in_address: z.ZodString;
|
|
150
|
+
token_out_address: z.ZodString;
|
|
151
|
+
protocol: z.ZodString;
|
|
152
|
+
fee: z.ZodNullable<z.ZodNumber>;
|
|
153
|
+
tick_spacing: z.ZodNullable<z.ZodNumber>;
|
|
154
|
+
hooks: z.ZodNullable<z.ZodString>;
|
|
155
|
+
liquidity_usd: z.ZodNullable<z.ZodNumber>;
|
|
156
|
+
volume_usd: z.ZodNullable<z.ZodNumber>;
|
|
157
|
+
}, "strip", z.ZodTypeAny, {
|
|
158
|
+
fee: number | null;
|
|
159
|
+
hooks: string | null;
|
|
160
|
+
pool_address: string;
|
|
161
|
+
token_in_address: string;
|
|
162
|
+
token_out_address: string;
|
|
163
|
+
protocol: string;
|
|
164
|
+
tick_spacing: number | null;
|
|
165
|
+
liquidity_usd: number | null;
|
|
166
|
+
volume_usd: number | null;
|
|
167
|
+
}, {
|
|
168
|
+
fee: number | null;
|
|
169
|
+
hooks: string | null;
|
|
170
|
+
pool_address: string;
|
|
171
|
+
token_in_address: string;
|
|
172
|
+
token_out_address: string;
|
|
173
|
+
protocol: string;
|
|
174
|
+
tick_spacing: number | null;
|
|
175
|
+
liquidity_usd: number | null;
|
|
176
|
+
volume_usd: number | null;
|
|
177
|
+
}>, "many">;
|
|
178
|
+
}, "strip", z.ZodTypeAny, {
|
|
179
|
+
start_token_address: string;
|
|
180
|
+
end_token_address: string;
|
|
181
|
+
score: number;
|
|
182
|
+
total_liquidity_usd: number;
|
|
183
|
+
total_volume_usd: number;
|
|
184
|
+
bottleneck_liquidity_usd: number;
|
|
185
|
+
hops: {
|
|
186
|
+
fee: number | null;
|
|
187
|
+
hooks: string | null;
|
|
188
|
+
pool_address: string;
|
|
189
|
+
token_in_address: string;
|
|
190
|
+
token_out_address: string;
|
|
191
|
+
protocol: string;
|
|
192
|
+
tick_spacing: number | null;
|
|
193
|
+
liquidity_usd: number | null;
|
|
194
|
+
volume_usd: number | null;
|
|
195
|
+
}[];
|
|
196
|
+
}, {
|
|
197
|
+
start_token_address: string;
|
|
198
|
+
end_token_address: string;
|
|
199
|
+
score: number;
|
|
200
|
+
total_liquidity_usd: number;
|
|
201
|
+
total_volume_usd: number;
|
|
202
|
+
bottleneck_liquidity_usd: number;
|
|
203
|
+
hops: {
|
|
204
|
+
fee: number | null;
|
|
205
|
+
hooks: string | null;
|
|
206
|
+
pool_address: string;
|
|
207
|
+
token_in_address: string;
|
|
208
|
+
token_out_address: string;
|
|
209
|
+
protocol: string;
|
|
210
|
+
tick_spacing: number | null;
|
|
211
|
+
liquidity_usd: number | null;
|
|
212
|
+
volume_usd: number | null;
|
|
213
|
+
}[];
|
|
214
|
+
}>, "many">;
|
|
215
|
+
}, "strip", z.ZodTypeAny, {
|
|
216
|
+
token_address: string;
|
|
217
|
+
paths_count: number;
|
|
218
|
+
paths: {
|
|
219
|
+
start_token_address: string;
|
|
220
|
+
end_token_address: string;
|
|
221
|
+
score: number;
|
|
222
|
+
total_liquidity_usd: number;
|
|
223
|
+
total_volume_usd: number;
|
|
224
|
+
bottleneck_liquidity_usd: number;
|
|
225
|
+
hops: {
|
|
226
|
+
fee: number | null;
|
|
227
|
+
hooks: string | null;
|
|
228
|
+
pool_address: string;
|
|
229
|
+
token_in_address: string;
|
|
230
|
+
token_out_address: string;
|
|
231
|
+
protocol: string;
|
|
232
|
+
tick_spacing: number | null;
|
|
233
|
+
liquidity_usd: number | null;
|
|
234
|
+
volume_usd: number | null;
|
|
235
|
+
}[];
|
|
236
|
+
}[];
|
|
237
|
+
}, {
|
|
238
|
+
token_address: string;
|
|
239
|
+
paths_count: number;
|
|
240
|
+
paths: {
|
|
241
|
+
start_token_address: string;
|
|
242
|
+
end_token_address: string;
|
|
243
|
+
score: number;
|
|
244
|
+
total_liquidity_usd: number;
|
|
245
|
+
total_volume_usd: number;
|
|
246
|
+
bottleneck_liquidity_usd: number;
|
|
247
|
+
hops: {
|
|
248
|
+
fee: number | null;
|
|
249
|
+
hooks: string | null;
|
|
250
|
+
pool_address: string;
|
|
251
|
+
token_in_address: string;
|
|
252
|
+
token_out_address: string;
|
|
253
|
+
protocol: string;
|
|
254
|
+
tick_spacing: number | null;
|
|
255
|
+
liquidity_usd: number | null;
|
|
256
|
+
volume_usd: number | null;
|
|
257
|
+
}[];
|
|
258
|
+
}[];
|
|
259
|
+
}>;
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
export { pathfindingContract, FetchTokensPathsResponseSchema };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FetchTokensPathsResponseSchema = exports.pathfindingContract = void 0;
|
|
4
|
+
const core_1 = require("@ts-rest/core");
|
|
5
|
+
const zod_1 = require("zod");
|
|
6
|
+
const types_1 = require("../types");
|
|
7
|
+
const contract = (0, core_1.initContract)();
|
|
8
|
+
const FetchTokensPathsResponseSchema = zod_1.default.object({
|
|
9
|
+
token_address: zod_1.default.string(),
|
|
10
|
+
paths_count: zod_1.default.number(),
|
|
11
|
+
paths: zod_1.default.array(zod_1.default.object({
|
|
12
|
+
start_token_address: zod_1.default.string(),
|
|
13
|
+
end_token_address: zod_1.default.string(),
|
|
14
|
+
score: zod_1.default.number().describe("Path score (sum of liquidity × volume for each hop)"),
|
|
15
|
+
total_liquidity_usd: zod_1.default.number().describe("Total liquidity in USD"),
|
|
16
|
+
total_volume_usd: zod_1.default.number().describe("Total volume in USD for the past 24 hours"),
|
|
17
|
+
bottleneck_liquidity_usd: zod_1.default.number().describe("Liquidity of the bottleneck token in USD"),
|
|
18
|
+
hops: zod_1.default.array(zod_1.default.object({
|
|
19
|
+
pool_address: zod_1.default.string(),
|
|
20
|
+
token_in_address: zod_1.default.string(),
|
|
21
|
+
token_out_address: zod_1.default.string(),
|
|
22
|
+
protocol: zod_1.default.string(),
|
|
23
|
+
fee: zod_1.default.number().nullable(),
|
|
24
|
+
tick_spacing: zod_1.default.number().nullable(),
|
|
25
|
+
hooks: zod_1.default.string().nullable(),
|
|
26
|
+
liquidity_usd: zod_1.default.number().nullable(),
|
|
27
|
+
volume_usd: zod_1.default.number().nullable(),
|
|
28
|
+
})),
|
|
29
|
+
})),
|
|
30
|
+
});
|
|
31
|
+
exports.FetchTokensPathsResponseSchema = FetchTokensPathsResponseSchema;
|
|
32
|
+
const pathfindingContract = contract.router({
|
|
33
|
+
fetchTokenPaths: {
|
|
34
|
+
method: "GET",
|
|
35
|
+
path: "paths/:tokenInAddress",
|
|
36
|
+
pathParams: zod_1.default.object({
|
|
37
|
+
tokenInAddress: zod_1.default.string().pipe(types_1.hex),
|
|
38
|
+
}),
|
|
39
|
+
responses: {
|
|
40
|
+
200: FetchTokensPathsResponseSchema,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
});
|
|
44
|
+
exports.pathfindingContract = pathfindingContract;
|
|
45
|
+
//# sourceMappingURL=pathfinding.contract.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pathfinding.contract.js","sourceRoot":"","sources":["../../src/contracts/pathfinding.contract.ts"],"names":[],"mappings":";;;AAAA,wCAA6C;AAC7C,6BAAoB;AAEpB,oCAA+B;AAE/B,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AAEhC,MAAM,8BAA8B,GAAG,aAAC,CAAC,MAAM,CAAC;IAC5C,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE;IACzB,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,aAAC,CAAC,KAAK,CACV,aAAC,CAAC,MAAM,CAAC;QACL,mBAAmB,EAAE,aAAC,CAAC,MAAM,EAAE;QAC/B,iBAAiB,EAAE,aAAC,CAAC,MAAM,EAAE;QAC7B,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qDAAqD,CAAC;QACjF,mBAAmB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wBAAwB,CAAC;QAClE,gBAAgB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;QAClF,wBAAwB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;QACzF,IAAI,EAAE,aAAC,CAAC,KAAK,CACT,aAAC,CAAC,MAAM,CAAC;YACL,YAAY,EAAE,aAAC,CAAC,MAAM,EAAE;YACxB,gBAAgB,EAAE,aAAC,CAAC,MAAM,EAAE;YAC5B,iBAAiB,EAAE,aAAC,CAAC,MAAM,EAAE;YAC7B,QAAQ,EAAE,aAAC,CAAC,MAAM,EAAE;YACpB,GAAG,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YAC1B,YAAY,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YACnC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YAC5B,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YACpC,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SACpC,CAAC,CACL;KACJ,CAAC,CACL;CACJ,CAAC,CAAC;AAe2B,wEAA8B;AAb5D,MAAM,mBAAmB,GAAG,QAAQ,CAAC,MAAM,CAAC;IACxC,eAAe,EAAE;QACb,MAAM,EAAE,KAAK;QACb,IAAI,EAAE,uBAAuB;QAC7B,UAAU,EAAE,aAAC,CAAC,MAAM,CAAC;YACjB,cAAc,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;SACvC,CAAC;QACF,SAAS,EAAE;YACP,GAAG,EAAE,8BAA8B;SACtC;KACJ;CACJ,CAAC,CAAC;AAEM,kDAAmB"}
|
|
@@ -2677,10 +2677,12 @@ export type AuctionPoolFieldsFragment = {
|
|
|
2677
2677
|
pool_current_price: any;
|
|
2678
2678
|
pool_current_sqrt_price: any;
|
|
2679
2679
|
pool_current_fdv: any;
|
|
2680
|
+
pool_current_fdv_usd?: string | null;
|
|
2680
2681
|
pool_current_liquidity: any;
|
|
2681
2682
|
pool_current_tick: number;
|
|
2682
2683
|
pool_last_epoch?: number | null;
|
|
2683
2684
|
pool_current_market_cap: any;
|
|
2685
|
+
pool_current_market_cap_usd?: string | null;
|
|
2684
2686
|
pool_current_fees_accrued: any;
|
|
2685
2687
|
pool_current_total_proceeds: any;
|
|
2686
2688
|
pool_current_total_tokens_sold: any;
|
|
@@ -2715,9 +2717,11 @@ export type GraduationPoolFieldsFragment = {
|
|
|
2715
2717
|
pool_current_price: any;
|
|
2716
2718
|
pool_current_sqrt_price: any;
|
|
2717
2719
|
pool_current_fdv?: any | null;
|
|
2720
|
+
pool_current_fdv_usd?: string | null;
|
|
2718
2721
|
pool_current_liquidity: any;
|
|
2719
2722
|
pool_current_tick: number;
|
|
2720
2723
|
pool_current_market_cap?: any | null;
|
|
2724
|
+
pool_current_market_cap_usd?: string | null;
|
|
2721
2725
|
pool_address: string;
|
|
2722
2726
|
pool_migration_timestamp?: any | null;
|
|
2723
2727
|
pool_type: string;
|
|
@@ -2748,10 +2752,12 @@ export type AssetFieldsFragment = {
|
|
|
2748
2752
|
pool_current_price: any;
|
|
2749
2753
|
pool_current_sqrt_price: any;
|
|
2750
2754
|
pool_current_fdv: any;
|
|
2755
|
+
pool_current_fdv_usd?: string | null;
|
|
2751
2756
|
pool_current_liquidity: any;
|
|
2752
2757
|
pool_current_tick: number;
|
|
2753
2758
|
pool_last_epoch?: number | null;
|
|
2754
2759
|
pool_current_market_cap: any;
|
|
2760
|
+
pool_current_market_cap_usd?: string | null;
|
|
2755
2761
|
pool_current_fees_accrued: any;
|
|
2756
2762
|
pool_current_total_proceeds: any;
|
|
2757
2763
|
pool_current_total_tokens_sold: any;
|
|
@@ -2786,9 +2792,11 @@ export type AssetFieldsFragment = {
|
|
|
2786
2792
|
pool_current_price: any;
|
|
2787
2793
|
pool_current_sqrt_price: any;
|
|
2788
2794
|
pool_current_fdv?: any | null;
|
|
2795
|
+
pool_current_fdv_usd?: string | null;
|
|
2789
2796
|
pool_current_liquidity: any;
|
|
2790
2797
|
pool_current_tick: number;
|
|
2791
2798
|
pool_current_market_cap?: any | null;
|
|
2799
|
+
pool_current_market_cap_usd?: string | null;
|
|
2792
2800
|
pool_address: string;
|
|
2793
2801
|
pool_migration_timestamp?: any | null;
|
|
2794
2802
|
pool_type: string;
|
|
@@ -2830,10 +2838,12 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
2830
2838
|
pool_current_price: any;
|
|
2831
2839
|
pool_current_sqrt_price: any;
|
|
2832
2840
|
pool_current_fdv: any;
|
|
2841
|
+
pool_current_fdv_usd?: string | null;
|
|
2833
2842
|
pool_current_liquidity: any;
|
|
2834
2843
|
pool_current_tick: number;
|
|
2835
2844
|
pool_last_epoch?: number | null;
|
|
2836
2845
|
pool_current_market_cap: any;
|
|
2846
|
+
pool_current_market_cap_usd?: string | null;
|
|
2837
2847
|
pool_current_fees_accrued: any;
|
|
2838
2848
|
pool_current_total_proceeds: any;
|
|
2839
2849
|
pool_current_total_tokens_sold: any;
|
|
@@ -2868,9 +2878,11 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
2868
2878
|
pool_current_price: any;
|
|
2869
2879
|
pool_current_sqrt_price: any;
|
|
2870
2880
|
pool_current_fdv?: any | null;
|
|
2881
|
+
pool_current_fdv_usd?: string | null;
|
|
2871
2882
|
pool_current_liquidity: any;
|
|
2872
2883
|
pool_current_tick: number;
|
|
2873
2884
|
pool_current_market_cap?: any | null;
|
|
2885
|
+
pool_current_market_cap_usd?: string | null;
|
|
2874
2886
|
pool_address: string;
|
|
2875
2887
|
pool_migration_timestamp?: any | null;
|
|
2876
2888
|
pool_type: string;
|
|
@@ -2912,10 +2924,12 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
2912
2924
|
pool_current_price: any;
|
|
2913
2925
|
pool_current_sqrt_price: any;
|
|
2914
2926
|
pool_current_fdv: any;
|
|
2927
|
+
pool_current_fdv_usd?: string | null;
|
|
2915
2928
|
pool_current_liquidity: any;
|
|
2916
2929
|
pool_current_tick: number;
|
|
2917
2930
|
pool_last_epoch?: number | null;
|
|
2918
2931
|
pool_current_market_cap: any;
|
|
2932
|
+
pool_current_market_cap_usd?: string | null;
|
|
2919
2933
|
pool_current_fees_accrued: any;
|
|
2920
2934
|
pool_current_total_proceeds: any;
|
|
2921
2935
|
pool_current_total_tokens_sold: any;
|
|
@@ -2950,9 +2964,11 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
2950
2964
|
pool_current_price: any;
|
|
2951
2965
|
pool_current_sqrt_price: any;
|
|
2952
2966
|
pool_current_fdv?: any | null;
|
|
2967
|
+
pool_current_fdv_usd?: string | null;
|
|
2953
2968
|
pool_current_liquidity: any;
|
|
2954
2969
|
pool_current_tick: number;
|
|
2955
2970
|
pool_current_market_cap?: any | null;
|
|
2971
|
+
pool_current_market_cap_usd?: string | null;
|
|
2956
2972
|
pool_address: string;
|
|
2957
2973
|
pool_migration_timestamp?: any | null;
|
|
2958
2974
|
pool_type: string;
|
|
@@ -2993,10 +3009,12 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
2993
3009
|
pool_current_price: any;
|
|
2994
3010
|
pool_current_sqrt_price: any;
|
|
2995
3011
|
pool_current_fdv: any;
|
|
3012
|
+
pool_current_fdv_usd?: string | null;
|
|
2996
3013
|
pool_current_liquidity: any;
|
|
2997
3014
|
pool_current_tick: number;
|
|
2998
3015
|
pool_last_epoch?: number | null;
|
|
2999
3016
|
pool_current_market_cap: any;
|
|
3017
|
+
pool_current_market_cap_usd?: string | null;
|
|
3000
3018
|
pool_current_fees_accrued: any;
|
|
3001
3019
|
pool_current_total_proceeds: any;
|
|
3002
3020
|
pool_current_total_tokens_sold: any;
|
|
@@ -3031,9 +3049,11 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
3031
3049
|
pool_current_price: any;
|
|
3032
3050
|
pool_current_sqrt_price: any;
|
|
3033
3051
|
pool_current_fdv?: any | null;
|
|
3052
|
+
pool_current_fdv_usd?: string | null;
|
|
3034
3053
|
pool_current_liquidity: any;
|
|
3035
3054
|
pool_current_tick: number;
|
|
3036
3055
|
pool_current_market_cap?: any | null;
|
|
3056
|
+
pool_current_market_cap_usd?: string | null;
|
|
3037
3057
|
pool_address: string;
|
|
3038
3058
|
pool_migration_timestamp?: any | null;
|
|
3039
3059
|
pool_type: string;
|
|
@@ -3074,10 +3094,12 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
3074
3094
|
pool_current_price: any;
|
|
3075
3095
|
pool_current_sqrt_price: any;
|
|
3076
3096
|
pool_current_fdv: any;
|
|
3097
|
+
pool_current_fdv_usd?: string | null;
|
|
3077
3098
|
pool_current_liquidity: any;
|
|
3078
3099
|
pool_current_tick: number;
|
|
3079
3100
|
pool_last_epoch?: number | null;
|
|
3080
3101
|
pool_current_market_cap: any;
|
|
3102
|
+
pool_current_market_cap_usd?: string | null;
|
|
3081
3103
|
pool_current_fees_accrued: any;
|
|
3082
3104
|
pool_current_total_proceeds: any;
|
|
3083
3105
|
pool_current_total_tokens_sold: any;
|
|
@@ -3112,9 +3134,11 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
3112
3134
|
pool_current_price: any;
|
|
3113
3135
|
pool_current_sqrt_price: any;
|
|
3114
3136
|
pool_current_fdv?: any | null;
|
|
3137
|
+
pool_current_fdv_usd?: string | null;
|
|
3115
3138
|
pool_current_liquidity: any;
|
|
3116
3139
|
pool_current_tick: number;
|
|
3117
3140
|
pool_current_market_cap?: any | null;
|
|
3141
|
+
pool_current_market_cap_usd?: string | null;
|
|
3118
3142
|
pool_address: string;
|
|
3119
3143
|
pool_migration_timestamp?: any | null;
|
|
3120
3144
|
pool_type: string;
|
|
@@ -3155,10 +3179,12 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
3155
3179
|
pool_current_price: any;
|
|
3156
3180
|
pool_current_sqrt_price: any;
|
|
3157
3181
|
pool_current_fdv: any;
|
|
3182
|
+
pool_current_fdv_usd?: string | null;
|
|
3158
3183
|
pool_current_liquidity: any;
|
|
3159
3184
|
pool_current_tick: number;
|
|
3160
3185
|
pool_last_epoch?: number | null;
|
|
3161
3186
|
pool_current_market_cap: any;
|
|
3187
|
+
pool_current_market_cap_usd?: string | null;
|
|
3162
3188
|
pool_current_fees_accrued: any;
|
|
3163
3189
|
pool_current_total_proceeds: any;
|
|
3164
3190
|
pool_current_total_tokens_sold: any;
|
|
@@ -3193,9 +3219,11 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
3193
3219
|
pool_current_price: any;
|
|
3194
3220
|
pool_current_sqrt_price: any;
|
|
3195
3221
|
pool_current_fdv?: any | null;
|
|
3222
|
+
pool_current_fdv_usd?: string | null;
|
|
3196
3223
|
pool_current_liquidity: any;
|
|
3197
3224
|
pool_current_tick: number;
|
|
3198
3225
|
pool_current_market_cap?: any | null;
|
|
3226
|
+
pool_current_market_cap_usd?: string | null;
|
|
3199
3227
|
pool_address: string;
|
|
3200
3228
|
pool_migration_timestamp?: any | null;
|
|
3201
3229
|
pool_type: string;
|
|
@@ -3235,10 +3263,12 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
3235
3263
|
pool_current_price: any;
|
|
3236
3264
|
pool_current_sqrt_price: any;
|
|
3237
3265
|
pool_current_fdv: any;
|
|
3266
|
+
pool_current_fdv_usd?: string | null;
|
|
3238
3267
|
pool_current_liquidity: any;
|
|
3239
3268
|
pool_current_tick: number;
|
|
3240
3269
|
pool_last_epoch?: number | null;
|
|
3241
3270
|
pool_current_market_cap: any;
|
|
3271
|
+
pool_current_market_cap_usd?: string | null;
|
|
3242
3272
|
pool_current_fees_accrued: any;
|
|
3243
3273
|
pool_current_total_proceeds: any;
|
|
3244
3274
|
pool_current_total_tokens_sold: any;
|
|
@@ -3273,9 +3303,11 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
3273
3303
|
pool_current_price: any;
|
|
3274
3304
|
pool_current_sqrt_price: any;
|
|
3275
3305
|
pool_current_fdv?: any | null;
|
|
3306
|
+
pool_current_fdv_usd?: string | null;
|
|
3276
3307
|
pool_current_liquidity: any;
|
|
3277
3308
|
pool_current_tick: number;
|
|
3278
3309
|
pool_current_market_cap?: any | null;
|
|
3310
|
+
pool_current_market_cap_usd?: string | null;
|
|
3279
3311
|
pool_address: string;
|
|
3280
3312
|
pool_migration_timestamp?: any | null;
|
|
3281
3313
|
pool_type: string;
|
|
@@ -263,10 +263,12 @@ exports.AuctionPoolFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
263
263
|
pool_current_price
|
|
264
264
|
pool_current_sqrt_price
|
|
265
265
|
pool_current_fdv
|
|
266
|
+
pool_current_fdv_usd
|
|
266
267
|
pool_current_liquidity
|
|
267
268
|
pool_current_tick
|
|
268
269
|
pool_last_epoch
|
|
269
270
|
pool_current_market_cap
|
|
271
|
+
pool_current_market_cap_usd
|
|
270
272
|
pool_current_fees_accrued
|
|
271
273
|
pool_current_total_proceeds
|
|
272
274
|
pool_current_total_tokens_sold
|
|
@@ -291,9 +293,11 @@ exports.GraduationPoolFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
291
293
|
pool_current_price
|
|
292
294
|
pool_current_sqrt_price
|
|
293
295
|
pool_current_fdv
|
|
296
|
+
pool_current_fdv_usd
|
|
294
297
|
pool_current_liquidity
|
|
295
298
|
pool_current_tick
|
|
296
299
|
pool_current_market_cap
|
|
300
|
+
pool_current_market_cap_usd
|
|
297
301
|
pool_address
|
|
298
302
|
pool_migration_timestamp
|
|
299
303
|
pool_type
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generated.js","sourceRoot":"","sources":["../../src/graphql/generated.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"generated.js","sourceRoot":"","sources":["../../src/graphql/generated.ts"],"names":[],"mappings":"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"}
|