@longdotxyz/shared 0.0.83 → 0.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.
- package/dist/contracts/asset.contract.d.ts +887 -187
- package/dist/contracts/asset.contract.js +49 -20
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +30 -30
- package/dist/contracts/auction-template.contract.js +16 -16
- package/dist/contracts/auction-template.contract.js.map +1 -1
- package/dist/contracts/auction.contract.d.ts +1 -1
- package/dist/contracts/auction.contract.js +1 -1
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/charts.contract.d.ts +214 -0
- package/dist/contracts/charts.contract.js +61 -0
- package/dist/contracts/charts.contract.js.map +1 -0
- package/dist/contracts/index.d.ts +2233 -174
- package/dist/contracts/index.js +6 -0
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/market.contract.d.ts +2060 -0
- package/dist/contracts/market.contract.js +195 -0
- package/dist/contracts/market.contract.js.map +1 -0
- package/dist/contracts/pathfinding.contract.d.ts +14 -14
- package/dist/contracts/pathfinding.contract.js +2 -2
- package/dist/contracts/pathfinding.contract.js.map +1 -1
- package/dist/contracts/sponsorship.contract.d.ts +2 -2
- package/dist/contracts/sponsorship.contract.js +2 -2
- package/dist/contracts/sponsorship.contract.js.map +1 -1
- package/dist/graphql/generated.d.ts +1103 -645
- package/dist/graphql/generated.js +139 -47
- package/dist/graphql/generated.js.map +1 -1
- package/dist/types/constants.d.ts +3 -1
- package/dist/types/constants.js +2 -0
- package/dist/types/constants.js.map +1 -1
- package/dist/types/hex.type.d.ts +1 -1
- package/dist/types/hex.type.js +2 -2
- package/dist/types/hex.type.js.map +1 -1
- package/dist/types/pool-key.type.d.ts +3 -3
- package/package.json +8 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DocumentNode } from 'graphql';
|
|
2
2
|
export type Maybe<T> = T | null;
|
|
3
3
|
export type InputMaybe<T> = Maybe<T>;
|
|
4
4
|
export type Exact<T extends {
|
|
@@ -20,7 +20,6 @@ export type MakeEmpty<T extends {
|
|
|
20
20
|
export type Incremental<T> = T | {
|
|
21
21
|
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
22
22
|
};
|
|
23
|
-
type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
|
|
24
23
|
export type Scalars = {
|
|
25
24
|
ID: {
|
|
26
25
|
input: string;
|
|
@@ -42,14 +41,30 @@ export type Scalars = {
|
|
|
42
41
|
input: number;
|
|
43
42
|
output: number;
|
|
44
43
|
};
|
|
44
|
+
TransportOptions: {
|
|
45
|
+
input: any;
|
|
46
|
+
output: any;
|
|
47
|
+
};
|
|
48
|
+
_DirectiveExtensions: {
|
|
49
|
+
input: any;
|
|
50
|
+
output: any;
|
|
51
|
+
};
|
|
45
52
|
float8: {
|
|
46
53
|
input: any;
|
|
47
54
|
output: any;
|
|
48
55
|
};
|
|
56
|
+
join__FieldSet: {
|
|
57
|
+
input: any;
|
|
58
|
+
output: any;
|
|
59
|
+
};
|
|
49
60
|
jsonb: {
|
|
50
61
|
input: any;
|
|
51
62
|
output: any;
|
|
52
63
|
};
|
|
64
|
+
link__Import: {
|
|
65
|
+
input: any;
|
|
66
|
+
output: any;
|
|
67
|
+
};
|
|
53
68
|
numeric: {
|
|
54
69
|
input: any;
|
|
55
70
|
output: any;
|
|
@@ -59,6 +74,11 @@ export type Scalars = {
|
|
|
59
74
|
output: any;
|
|
60
75
|
};
|
|
61
76
|
};
|
|
77
|
+
export type ArenaTradeData = {
|
|
78
|
+
__typename?: 'ArenaTradeData';
|
|
79
|
+
tokenId?: Maybe<Scalars['String']['output']>;
|
|
80
|
+
type: Scalars['String']['output'];
|
|
81
|
+
};
|
|
62
82
|
export type Asset = {
|
|
63
83
|
__typename?: 'Asset';
|
|
64
84
|
asset_address: Scalars['String']['output'];
|
|
@@ -72,6 +92,7 @@ export type Asset = {
|
|
|
72
92
|
asset_is_locked: Scalars['Boolean']['output'];
|
|
73
93
|
asset_liquidity_migrator_address: Scalars['String']['output'];
|
|
74
94
|
asset_migration_block?: Maybe<Scalars['numeric']['output']>;
|
|
95
|
+
asset_migration_hash?: Maybe<Scalars['String']['output']>;
|
|
75
96
|
asset_migration_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
76
97
|
asset_numeraire_address: Scalars['String']['output'];
|
|
77
98
|
asset_pool_initializer_address: Scalars['String']['output'];
|
|
@@ -84,8 +105,6 @@ export type Asset = {
|
|
|
84
105
|
graduation_pool_id?: Maybe<Scalars['String']['output']>;
|
|
85
106
|
id: Scalars['String']['output'];
|
|
86
107
|
integrator_address: Scalars['String']['output'];
|
|
87
|
-
numeraire_market_data?: Maybe<NumeraireMarketData>;
|
|
88
|
-
numeraire_market_data_id: Scalars['String']['output'];
|
|
89
108
|
};
|
|
90
109
|
export type Asset_Bool_Exp = {
|
|
91
110
|
_and?: InputMaybe<Array<Asset_Bool_Exp>>;
|
|
@@ -102,6 +121,7 @@ export type Asset_Bool_Exp = {
|
|
|
102
121
|
asset_is_locked?: InputMaybe<Boolean_Comparison_Exp>;
|
|
103
122
|
asset_liquidity_migrator_address?: InputMaybe<String_Comparison_Exp>;
|
|
104
123
|
asset_migration_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
124
|
+
asset_migration_hash?: InputMaybe<String_Comparison_Exp>;
|
|
105
125
|
asset_migration_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
106
126
|
asset_numeraire_address?: InputMaybe<String_Comparison_Exp>;
|
|
107
127
|
asset_pool_initializer_address?: InputMaybe<String_Comparison_Exp>;
|
|
@@ -114,8 +134,6 @@ export type Asset_Bool_Exp = {
|
|
|
114
134
|
graduation_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
115
135
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
116
136
|
integrator_address?: InputMaybe<String_Comparison_Exp>;
|
|
117
|
-
numeraire_market_data?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
118
|
-
numeraire_market_data_id?: InputMaybe<String_Comparison_Exp>;
|
|
119
137
|
};
|
|
120
138
|
export type Asset_Order_By = {
|
|
121
139
|
asset_address?: InputMaybe<Order_By>;
|
|
@@ -129,6 +147,7 @@ export type Asset_Order_By = {
|
|
|
129
147
|
asset_is_locked?: InputMaybe<Order_By>;
|
|
130
148
|
asset_liquidity_migrator_address?: InputMaybe<Order_By>;
|
|
131
149
|
asset_migration_block?: InputMaybe<Order_By>;
|
|
150
|
+
asset_migration_hash?: InputMaybe<Order_By>;
|
|
132
151
|
asset_migration_timestamp?: InputMaybe<Order_By>;
|
|
133
152
|
asset_numeraire_address?: InputMaybe<Order_By>;
|
|
134
153
|
asset_pool_initializer_address?: InputMaybe<Order_By>;
|
|
@@ -141,8 +160,6 @@ export type Asset_Order_By = {
|
|
|
141
160
|
graduation_pool_id?: InputMaybe<Order_By>;
|
|
142
161
|
id?: InputMaybe<Order_By>;
|
|
143
162
|
integrator_address?: InputMaybe<Order_By>;
|
|
144
|
-
numeraire_market_data?: InputMaybe<NumeraireMarketData_Order_By>;
|
|
145
|
-
numeraire_market_data_id?: InputMaybe<Order_By>;
|
|
146
163
|
};
|
|
147
164
|
export declare enum Asset_Select_Column {
|
|
148
165
|
AssetAddress = "asset_address",
|
|
@@ -156,6 +173,7 @@ export declare enum Asset_Select_Column {
|
|
|
156
173
|
AssetIsLocked = "asset_is_locked",
|
|
157
174
|
AssetLiquidityMigratorAddress = "asset_liquidity_migrator_address",
|
|
158
175
|
AssetMigrationBlock = "asset_migration_block",
|
|
176
|
+
AssetMigrationHash = "asset_migration_hash",
|
|
159
177
|
AssetMigrationTimestamp = "asset_migration_timestamp",
|
|
160
178
|
AssetNumeraireAddress = "asset_numeraire_address",
|
|
161
179
|
AssetPoolInitializerAddress = "asset_pool_initializer_address",
|
|
@@ -165,8 +183,7 @@ export declare enum Asset_Select_Column {
|
|
|
165
183
|
ChainId = "chain_id",
|
|
166
184
|
GraduationPoolId = "graduation_pool_id",
|
|
167
185
|
Id = "id",
|
|
168
|
-
IntegratorAddress = "integrator_address"
|
|
169
|
-
NumeraireMarketDataId = "numeraire_market_data_id"
|
|
186
|
+
IntegratorAddress = "integrator_address"
|
|
170
187
|
}
|
|
171
188
|
export type Asset_Stream_Cursor_Input = {
|
|
172
189
|
initial_value: Asset_Stream_Cursor_Value_Input;
|
|
@@ -184,6 +201,7 @@ export type Asset_Stream_Cursor_Value_Input = {
|
|
|
184
201
|
asset_is_locked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
185
202
|
asset_liquidity_migrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
186
203
|
asset_migration_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
204
|
+
asset_migration_hash?: InputMaybe<Scalars['String']['input']>;
|
|
187
205
|
asset_migration_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
188
206
|
asset_numeraire_address?: InputMaybe<Scalars['String']['input']>;
|
|
189
207
|
asset_pool_initializer_address?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -194,7 +212,6 @@ export type Asset_Stream_Cursor_Value_Input = {
|
|
|
194
212
|
graduation_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
195
213
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
196
214
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
197
|
-
numeraire_market_data_id?: InputMaybe<Scalars['String']['input']>;
|
|
198
215
|
};
|
|
199
216
|
export type AuctionPool = {
|
|
200
217
|
__typename?: 'AuctionPool';
|
|
@@ -238,14 +255,13 @@ export type AuctionPool = {
|
|
|
238
255
|
pool_config_starting_time: Scalars['numeric']['output'];
|
|
239
256
|
pool_config_tokens_recipient?: Maybe<Scalars['String']['output']>;
|
|
240
257
|
pool_creation_block: Scalars['numeric']['output'];
|
|
258
|
+
pool_creation_hash: Scalars['String']['output'];
|
|
241
259
|
pool_creation_timestamp: Scalars['timestamptz']['output'];
|
|
242
260
|
pool_current_beneficiaries_data?: Maybe<Scalars['jsonb']['output']>;
|
|
243
261
|
pool_current_fdv: Scalars['numeric']['output'];
|
|
244
|
-
pool_current_fdv_usd?: Maybe<Scalars['String']['output']>;
|
|
245
262
|
pool_current_fees_accrued: Scalars['numeric']['output'];
|
|
246
263
|
pool_current_liquidity: Scalars['numeric']['output'];
|
|
247
264
|
pool_current_market_cap: Scalars['numeric']['output'];
|
|
248
|
-
pool_current_market_cap_usd?: Maybe<Scalars['String']['output']>;
|
|
249
265
|
pool_current_min_progress_percentage?: Maybe<Scalars['float8']['output']>;
|
|
250
266
|
pool_current_price: Scalars['numeric']['output'];
|
|
251
267
|
pool_current_sale_progress_percentage?: Maybe<Scalars['float8']['output']>;
|
|
@@ -263,7 +279,9 @@ export type AuctionPool = {
|
|
|
263
279
|
pool_last_epoch?: Maybe<Scalars['Int']['output']>;
|
|
264
280
|
pool_last_epoch_total_tokens_sold: Scalars['numeric']['output'];
|
|
265
281
|
pool_last_swap_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
282
|
+
pool_market_data?: Maybe<PairFilterResult>;
|
|
266
283
|
pool_migration_block?: Maybe<Scalars['numeric']['output']>;
|
|
284
|
+
pool_migration_hash?: Maybe<Scalars['String']['output']>;
|
|
267
285
|
pool_migration_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
268
286
|
pool_type: Scalars['String']['output'];
|
|
269
287
|
quote_token?: Maybe<Token>;
|
|
@@ -302,12 +320,18 @@ export type AuctionPool_Bid = {
|
|
|
302
320
|
auction_pool?: Maybe<AuctionPool>;
|
|
303
321
|
auction_pool_id: Scalars['String']['output'];
|
|
304
322
|
bid_amount: Scalars['numeric']['output'];
|
|
323
|
+
bid_claimed_block?: Maybe<Scalars['numeric']['output']>;
|
|
324
|
+
bid_claimed_hash?: Maybe<Scalars['String']['output']>;
|
|
325
|
+
bid_claimed_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
305
326
|
bid_creation_block: Scalars['numeric']['output'];
|
|
327
|
+
bid_creation_hash: Scalars['String']['output'];
|
|
306
328
|
bid_creation_timestamp: Scalars['timestamptz']['output'];
|
|
307
329
|
bid_currency_refunded?: Maybe<Scalars['numeric']['output']>;
|
|
308
330
|
bid_current_amount_spent: Scalars['numeric']['output'];
|
|
309
331
|
bid_current_tokens_filled: Scalars['numeric']['output'];
|
|
310
332
|
bid_exited_block?: Maybe<Scalars['numeric']['output']>;
|
|
333
|
+
bid_exited_hash?: Maybe<Scalars['String']['output']>;
|
|
334
|
+
bid_exited_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
311
335
|
bid_id: Scalars['numeric']['output'];
|
|
312
336
|
bid_last_fill_checkpoint_block?: Maybe<Scalars['numeric']['output']>;
|
|
313
337
|
bid_max_price: Scalars['numeric']['output'];
|
|
@@ -336,6 +360,7 @@ export type AuctionPool_Bid_Aggregate_Order_By = {
|
|
|
336
360
|
};
|
|
337
361
|
export type AuctionPool_Bid_Avg_Order_By = {
|
|
338
362
|
bid_amount?: InputMaybe<Order_By>;
|
|
363
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
339
364
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
340
365
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
341
366
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
@@ -358,12 +383,18 @@ export type AuctionPool_Bid_Bool_Exp = {
|
|
|
358
383
|
auction_pool?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
359
384
|
auction_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
360
385
|
bid_amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
386
|
+
bid_claimed_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
387
|
+
bid_claimed_hash?: InputMaybe<String_Comparison_Exp>;
|
|
388
|
+
bid_claimed_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
361
389
|
bid_creation_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
390
|
+
bid_creation_hash?: InputMaybe<String_Comparison_Exp>;
|
|
362
391
|
bid_creation_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
363
392
|
bid_currency_refunded?: InputMaybe<Numeric_Comparison_Exp>;
|
|
364
393
|
bid_current_amount_spent?: InputMaybe<Numeric_Comparison_Exp>;
|
|
365
394
|
bid_current_tokens_filled?: InputMaybe<Numeric_Comparison_Exp>;
|
|
366
395
|
bid_exited_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
396
|
+
bid_exited_hash?: InputMaybe<String_Comparison_Exp>;
|
|
397
|
+
bid_exited_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
367
398
|
bid_id?: InputMaybe<Numeric_Comparison_Exp>;
|
|
368
399
|
bid_last_fill_checkpoint_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
369
400
|
bid_max_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
@@ -380,12 +411,18 @@ export type AuctionPool_Bid_Bool_Exp = {
|
|
|
380
411
|
export type AuctionPool_Bid_Max_Order_By = {
|
|
381
412
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
382
413
|
bid_amount?: InputMaybe<Order_By>;
|
|
414
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
415
|
+
bid_claimed_hash?: InputMaybe<Order_By>;
|
|
416
|
+
bid_claimed_timestamp?: InputMaybe<Order_By>;
|
|
383
417
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
418
|
+
bid_creation_hash?: InputMaybe<Order_By>;
|
|
384
419
|
bid_creation_timestamp?: InputMaybe<Order_By>;
|
|
385
420
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
386
421
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
387
422
|
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
388
423
|
bid_exited_block?: InputMaybe<Order_By>;
|
|
424
|
+
bid_exited_hash?: InputMaybe<Order_By>;
|
|
425
|
+
bid_exited_timestamp?: InputMaybe<Order_By>;
|
|
389
426
|
bid_id?: InputMaybe<Order_By>;
|
|
390
427
|
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
391
428
|
bid_max_price?: InputMaybe<Order_By>;
|
|
@@ -401,12 +438,18 @@ export type AuctionPool_Bid_Max_Order_By = {
|
|
|
401
438
|
export type AuctionPool_Bid_Min_Order_By = {
|
|
402
439
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
403
440
|
bid_amount?: InputMaybe<Order_By>;
|
|
441
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
442
|
+
bid_claimed_hash?: InputMaybe<Order_By>;
|
|
443
|
+
bid_claimed_timestamp?: InputMaybe<Order_By>;
|
|
404
444
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
445
|
+
bid_creation_hash?: InputMaybe<Order_By>;
|
|
405
446
|
bid_creation_timestamp?: InputMaybe<Order_By>;
|
|
406
447
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
407
448
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
408
449
|
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
409
450
|
bid_exited_block?: InputMaybe<Order_By>;
|
|
451
|
+
bid_exited_hash?: InputMaybe<Order_By>;
|
|
452
|
+
bid_exited_timestamp?: InputMaybe<Order_By>;
|
|
410
453
|
bid_id?: InputMaybe<Order_By>;
|
|
411
454
|
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
412
455
|
bid_max_price?: InputMaybe<Order_By>;
|
|
@@ -423,12 +466,18 @@ export type AuctionPool_Bid_Order_By = {
|
|
|
423
466
|
auction_pool?: InputMaybe<AuctionPool_Order_By>;
|
|
424
467
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
425
468
|
bid_amount?: InputMaybe<Order_By>;
|
|
469
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
470
|
+
bid_claimed_hash?: InputMaybe<Order_By>;
|
|
471
|
+
bid_claimed_timestamp?: InputMaybe<Order_By>;
|
|
426
472
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
473
|
+
bid_creation_hash?: InputMaybe<Order_By>;
|
|
427
474
|
bid_creation_timestamp?: InputMaybe<Order_By>;
|
|
428
475
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
429
476
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
430
477
|
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
431
478
|
bid_exited_block?: InputMaybe<Order_By>;
|
|
479
|
+
bid_exited_hash?: InputMaybe<Order_By>;
|
|
480
|
+
bid_exited_timestamp?: InputMaybe<Order_By>;
|
|
432
481
|
bid_id?: InputMaybe<Order_By>;
|
|
433
482
|
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
434
483
|
bid_max_price?: InputMaybe<Order_By>;
|
|
@@ -445,12 +494,18 @@ export type AuctionPool_Bid_Order_By = {
|
|
|
445
494
|
export declare enum AuctionPool_Bid_Select_Column {
|
|
446
495
|
AuctionPoolId = "auction_pool_id",
|
|
447
496
|
BidAmount = "bid_amount",
|
|
497
|
+
BidClaimedBlock = "bid_claimed_block",
|
|
498
|
+
BidClaimedHash = "bid_claimed_hash",
|
|
499
|
+
BidClaimedTimestamp = "bid_claimed_timestamp",
|
|
448
500
|
BidCreationBlock = "bid_creation_block",
|
|
501
|
+
BidCreationHash = "bid_creation_hash",
|
|
449
502
|
BidCreationTimestamp = "bid_creation_timestamp",
|
|
450
503
|
BidCurrencyRefunded = "bid_currency_refunded",
|
|
451
504
|
BidCurrentAmountSpent = "bid_current_amount_spent",
|
|
452
505
|
BidCurrentTokensFilled = "bid_current_tokens_filled",
|
|
453
506
|
BidExitedBlock = "bid_exited_block",
|
|
507
|
+
BidExitedHash = "bid_exited_hash",
|
|
508
|
+
BidExitedTimestamp = "bid_exited_timestamp",
|
|
454
509
|
BidId = "bid_id",
|
|
455
510
|
BidLastFillCheckpointBlock = "bid_last_fill_checkpoint_block",
|
|
456
511
|
BidMaxPrice = "bid_max_price",
|
|
@@ -466,6 +521,7 @@ export declare enum AuctionPool_Bid_Select_Column {
|
|
|
466
521
|
}
|
|
467
522
|
export type AuctionPool_Bid_Stddev_Order_By = {
|
|
468
523
|
bid_amount?: InputMaybe<Order_By>;
|
|
524
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
469
525
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
470
526
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
471
527
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
@@ -483,6 +539,7 @@ export type AuctionPool_Bid_Stddev_Order_By = {
|
|
|
483
539
|
};
|
|
484
540
|
export type AuctionPool_Bid_Stddev_Pop_Order_By = {
|
|
485
541
|
bid_amount?: InputMaybe<Order_By>;
|
|
542
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
486
543
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
487
544
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
488
545
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
@@ -500,6 +557,7 @@ export type AuctionPool_Bid_Stddev_Pop_Order_By = {
|
|
|
500
557
|
};
|
|
501
558
|
export type AuctionPool_Bid_Stddev_Samp_Order_By = {
|
|
502
559
|
bid_amount?: InputMaybe<Order_By>;
|
|
560
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
503
561
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
504
562
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
505
563
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
@@ -522,12 +580,18 @@ export type AuctionPool_Bid_Stream_Cursor_Input = {
|
|
|
522
580
|
export type AuctionPool_Bid_Stream_Cursor_Value_Input = {
|
|
523
581
|
auction_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
524
582
|
bid_amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
583
|
+
bid_claimed_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
584
|
+
bid_claimed_hash?: InputMaybe<Scalars['String']['input']>;
|
|
585
|
+
bid_claimed_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
525
586
|
bid_creation_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
587
|
+
bid_creation_hash?: InputMaybe<Scalars['String']['input']>;
|
|
526
588
|
bid_creation_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
527
589
|
bid_currency_refunded?: InputMaybe<Scalars['numeric']['input']>;
|
|
528
590
|
bid_current_amount_spent?: InputMaybe<Scalars['numeric']['input']>;
|
|
529
591
|
bid_current_tokens_filled?: InputMaybe<Scalars['numeric']['input']>;
|
|
530
592
|
bid_exited_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
593
|
+
bid_exited_hash?: InputMaybe<Scalars['String']['input']>;
|
|
594
|
+
bid_exited_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
531
595
|
bid_id?: InputMaybe<Scalars['numeric']['input']>;
|
|
532
596
|
bid_last_fill_checkpoint_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
533
597
|
bid_max_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
@@ -543,6 +607,7 @@ export type AuctionPool_Bid_Stream_Cursor_Value_Input = {
|
|
|
543
607
|
};
|
|
544
608
|
export type AuctionPool_Bid_Sum_Order_By = {
|
|
545
609
|
bid_amount?: InputMaybe<Order_By>;
|
|
610
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
546
611
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
547
612
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
548
613
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
@@ -560,6 +625,7 @@ export type AuctionPool_Bid_Sum_Order_By = {
|
|
|
560
625
|
};
|
|
561
626
|
export type AuctionPool_Bid_Var_Pop_Order_By = {
|
|
562
627
|
bid_amount?: InputMaybe<Order_By>;
|
|
628
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
563
629
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
564
630
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
565
631
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
@@ -577,6 +643,7 @@ export type AuctionPool_Bid_Var_Pop_Order_By = {
|
|
|
577
643
|
};
|
|
578
644
|
export type AuctionPool_Bid_Var_Samp_Order_By = {
|
|
579
645
|
bid_amount?: InputMaybe<Order_By>;
|
|
646
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
580
647
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
581
648
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
582
649
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
@@ -594,6 +661,7 @@ export type AuctionPool_Bid_Var_Samp_Order_By = {
|
|
|
594
661
|
};
|
|
595
662
|
export type AuctionPool_Bid_Variance_Order_By = {
|
|
596
663
|
bid_amount?: InputMaybe<Order_By>;
|
|
664
|
+
bid_claimed_block?: InputMaybe<Order_By>;
|
|
597
665
|
bid_creation_block?: InputMaybe<Order_By>;
|
|
598
666
|
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
599
667
|
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
@@ -921,14 +989,13 @@ export type AuctionPool_Bool_Exp = {
|
|
|
921
989
|
pool_config_starting_time?: InputMaybe<Numeric_Comparison_Exp>;
|
|
922
990
|
pool_config_tokens_recipient?: InputMaybe<String_Comparison_Exp>;
|
|
923
991
|
pool_creation_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
992
|
+
pool_creation_hash?: InputMaybe<String_Comparison_Exp>;
|
|
924
993
|
pool_creation_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
925
994
|
pool_current_beneficiaries_data?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
926
995
|
pool_current_fdv?: InputMaybe<Numeric_Comparison_Exp>;
|
|
927
|
-
pool_current_fdv_usd?: InputMaybe<String_Comparison_Exp>;
|
|
928
996
|
pool_current_fees_accrued?: InputMaybe<Numeric_Comparison_Exp>;
|
|
929
997
|
pool_current_liquidity?: InputMaybe<Numeric_Comparison_Exp>;
|
|
930
998
|
pool_current_market_cap?: InputMaybe<Numeric_Comparison_Exp>;
|
|
931
|
-
pool_current_market_cap_usd?: InputMaybe<String_Comparison_Exp>;
|
|
932
999
|
pool_current_min_progress_percentage?: InputMaybe<Float8_Comparison_Exp>;
|
|
933
1000
|
pool_current_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
934
1001
|
pool_current_sale_progress_percentage?: InputMaybe<Float8_Comparison_Exp>;
|
|
@@ -947,6 +1014,7 @@ export type AuctionPool_Bool_Exp = {
|
|
|
947
1014
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Numeric_Comparison_Exp>;
|
|
948
1015
|
pool_last_swap_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
949
1016
|
pool_migration_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1017
|
+
pool_migration_hash?: InputMaybe<String_Comparison_Exp>;
|
|
950
1018
|
pool_migration_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
951
1019
|
pool_type?: InputMaybe<String_Comparison_Exp>;
|
|
952
1020
|
quote_token?: InputMaybe<Token_Bool_Exp>;
|
|
@@ -984,13 +1052,12 @@ export type AuctionPool_Max_Order_By = {
|
|
|
984
1052
|
pool_config_starting_time?: InputMaybe<Order_By>;
|
|
985
1053
|
pool_config_tokens_recipient?: InputMaybe<Order_By>;
|
|
986
1054
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
1055
|
+
pool_creation_hash?: InputMaybe<Order_By>;
|
|
987
1056
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
988
1057
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
989
|
-
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
990
1058
|
pool_current_fees_accrued?: InputMaybe<Order_By>;
|
|
991
1059
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
992
1060
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
993
|
-
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
994
1061
|
pool_current_min_progress_percentage?: InputMaybe<Order_By>;
|
|
995
1062
|
pool_current_price?: InputMaybe<Order_By>;
|
|
996
1063
|
pool_current_sale_progress_percentage?: InputMaybe<Order_By>;
|
|
@@ -1008,6 +1075,7 @@ export type AuctionPool_Max_Order_By = {
|
|
|
1008
1075
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1009
1076
|
pool_last_swap_timestamp?: InputMaybe<Order_By>;
|
|
1010
1077
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1078
|
+
pool_migration_hash?: InputMaybe<Order_By>;
|
|
1011
1079
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
1012
1080
|
pool_type?: InputMaybe<Order_By>;
|
|
1013
1081
|
quote_token_id?: InputMaybe<Order_By>;
|
|
@@ -1043,13 +1111,12 @@ export type AuctionPool_Min_Order_By = {
|
|
|
1043
1111
|
pool_config_starting_time?: InputMaybe<Order_By>;
|
|
1044
1112
|
pool_config_tokens_recipient?: InputMaybe<Order_By>;
|
|
1045
1113
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
1114
|
+
pool_creation_hash?: InputMaybe<Order_By>;
|
|
1046
1115
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
1047
1116
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
1048
|
-
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
1049
1117
|
pool_current_fees_accrued?: InputMaybe<Order_By>;
|
|
1050
1118
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
1051
1119
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
1052
|
-
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
1053
1120
|
pool_current_min_progress_percentage?: InputMaybe<Order_By>;
|
|
1054
1121
|
pool_current_price?: InputMaybe<Order_By>;
|
|
1055
1122
|
pool_current_sale_progress_percentage?: InputMaybe<Order_By>;
|
|
@@ -1067,6 +1134,7 @@ export type AuctionPool_Min_Order_By = {
|
|
|
1067
1134
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1068
1135
|
pool_last_swap_timestamp?: InputMaybe<Order_By>;
|
|
1069
1136
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1137
|
+
pool_migration_hash?: InputMaybe<Order_By>;
|
|
1070
1138
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
1071
1139
|
pool_type?: InputMaybe<Order_By>;
|
|
1072
1140
|
quote_token_id?: InputMaybe<Order_By>;
|
|
@@ -1112,14 +1180,13 @@ export type AuctionPool_Order_By = {
|
|
|
1112
1180
|
pool_config_starting_time?: InputMaybe<Order_By>;
|
|
1113
1181
|
pool_config_tokens_recipient?: InputMaybe<Order_By>;
|
|
1114
1182
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
1183
|
+
pool_creation_hash?: InputMaybe<Order_By>;
|
|
1115
1184
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
1116
1185
|
pool_current_beneficiaries_data?: InputMaybe<Order_By>;
|
|
1117
1186
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
1118
|
-
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
1119
1187
|
pool_current_fees_accrued?: InputMaybe<Order_By>;
|
|
1120
1188
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
1121
1189
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
1122
|
-
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
1123
1190
|
pool_current_min_progress_percentage?: InputMaybe<Order_By>;
|
|
1124
1191
|
pool_current_price?: InputMaybe<Order_By>;
|
|
1125
1192
|
pool_current_sale_progress_percentage?: InputMaybe<Order_By>;
|
|
@@ -1138,6 +1205,7 @@ export type AuctionPool_Order_By = {
|
|
|
1138
1205
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1139
1206
|
pool_last_swap_timestamp?: InputMaybe<Order_By>;
|
|
1140
1207
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1208
|
+
pool_migration_hash?: InputMaybe<Order_By>;
|
|
1141
1209
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
1142
1210
|
pool_type?: InputMaybe<Order_By>;
|
|
1143
1211
|
quote_token?: InputMaybe<Token_Order_By>;
|
|
@@ -1181,14 +1249,13 @@ export declare enum AuctionPool_Select_Column {
|
|
|
1181
1249
|
PoolConfigStartingTime = "pool_config_starting_time",
|
|
1182
1250
|
PoolConfigTokensRecipient = "pool_config_tokens_recipient",
|
|
1183
1251
|
PoolCreationBlock = "pool_creation_block",
|
|
1252
|
+
PoolCreationHash = "pool_creation_hash",
|
|
1184
1253
|
PoolCreationTimestamp = "pool_creation_timestamp",
|
|
1185
1254
|
PoolCurrentBeneficiariesData = "pool_current_beneficiaries_data",
|
|
1186
1255
|
PoolCurrentFdv = "pool_current_fdv",
|
|
1187
|
-
PoolCurrentFdvUsd = "pool_current_fdv_usd",
|
|
1188
1256
|
PoolCurrentFeesAccrued = "pool_current_fees_accrued",
|
|
1189
1257
|
PoolCurrentLiquidity = "pool_current_liquidity",
|
|
1190
1258
|
PoolCurrentMarketCap = "pool_current_market_cap",
|
|
1191
|
-
PoolCurrentMarketCapUsd = "pool_current_market_cap_usd",
|
|
1192
1259
|
PoolCurrentMinProgressPercentage = "pool_current_min_progress_percentage",
|
|
1193
1260
|
PoolCurrentPrice = "pool_current_price",
|
|
1194
1261
|
PoolCurrentSaleProgressPercentage = "pool_current_sale_progress_percentage",
|
|
@@ -1207,6 +1274,7 @@ export declare enum AuctionPool_Select_Column {
|
|
|
1207
1274
|
PoolLastEpochTotalTokensSold = "pool_last_epoch_total_tokens_sold",
|
|
1208
1275
|
PoolLastSwapTimestamp = "pool_last_swap_timestamp",
|
|
1209
1276
|
PoolMigrationBlock = "pool_migration_block",
|
|
1277
|
+
PoolMigrationHash = "pool_migration_hash",
|
|
1210
1278
|
PoolMigrationTimestamp = "pool_migration_timestamp",
|
|
1211
1279
|
PoolType = "pool_type",
|
|
1212
1280
|
QuoteTokenId = "quote_token_id"
|
|
@@ -1375,14 +1443,13 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
1375
1443
|
pool_config_starting_time?: InputMaybe<Scalars['numeric']['input']>;
|
|
1376
1444
|
pool_config_tokens_recipient?: InputMaybe<Scalars['String']['input']>;
|
|
1377
1445
|
pool_creation_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
1446
|
+
pool_creation_hash?: InputMaybe<Scalars['String']['input']>;
|
|
1378
1447
|
pool_creation_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1379
1448
|
pool_current_beneficiaries_data?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1380
1449
|
pool_current_fdv?: InputMaybe<Scalars['numeric']['input']>;
|
|
1381
|
-
pool_current_fdv_usd?: InputMaybe<Scalars['String']['input']>;
|
|
1382
1450
|
pool_current_fees_accrued?: InputMaybe<Scalars['numeric']['input']>;
|
|
1383
1451
|
pool_current_liquidity?: InputMaybe<Scalars['numeric']['input']>;
|
|
1384
1452
|
pool_current_market_cap?: InputMaybe<Scalars['numeric']['input']>;
|
|
1385
|
-
pool_current_market_cap_usd?: InputMaybe<Scalars['String']['input']>;
|
|
1386
1453
|
pool_current_min_progress_percentage?: InputMaybe<Scalars['float8']['input']>;
|
|
1387
1454
|
pool_current_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1388
1455
|
pool_current_sale_progress_percentage?: InputMaybe<Scalars['float8']['input']>;
|
|
@@ -1401,6 +1468,7 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
1401
1468
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Scalars['numeric']['input']>;
|
|
1402
1469
|
pool_last_swap_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1403
1470
|
pool_migration_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
1471
|
+
pool_migration_hash?: InputMaybe<Scalars['String']['input']>;
|
|
1404
1472
|
pool_migration_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1405
1473
|
pool_type?: InputMaybe<Scalars['String']['input']>;
|
|
1406
1474
|
quote_token_id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1587,6 +1655,8 @@ export type Cca_Checkpoint = {
|
|
|
1587
1655
|
chain_id: Scalars['Int']['output'];
|
|
1588
1656
|
checkpoint_block_number: Scalars['numeric']['output'];
|
|
1589
1657
|
checkpoint_clearing_price: Scalars['numeric']['output'];
|
|
1658
|
+
checkpoint_creation_block: Scalars['numeric']['output'];
|
|
1659
|
+
checkpoint_creation_hash: Scalars['String']['output'];
|
|
1590
1660
|
checkpoint_creation_timestamp: Scalars['timestamptz']['output'];
|
|
1591
1661
|
checkpoint_cumulative_mps: Scalars['Int']['output'];
|
|
1592
1662
|
checkpoint_cumulative_mps_per_price: Scalars['numeric']['output'];
|
|
@@ -1610,6 +1680,7 @@ export type Cca_Checkpoint_Avg_Order_By = {
|
|
|
1610
1680
|
chain_id?: InputMaybe<Order_By>;
|
|
1611
1681
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1612
1682
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1683
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1613
1684
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1614
1685
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1615
1686
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
@@ -1623,6 +1694,8 @@ export type Cca_Checkpoint_Bool_Exp = {
|
|
|
1623
1694
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
1624
1695
|
checkpoint_block_number?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1625
1696
|
checkpoint_clearing_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1697
|
+
checkpoint_creation_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1698
|
+
checkpoint_creation_hash?: InputMaybe<String_Comparison_Exp>;
|
|
1626
1699
|
checkpoint_creation_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1627
1700
|
checkpoint_cumulative_mps?: InputMaybe<Int_Comparison_Exp>;
|
|
1628
1701
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
@@ -1634,6 +1707,8 @@ export type Cca_Checkpoint_Max_Order_By = {
|
|
|
1634
1707
|
chain_id?: InputMaybe<Order_By>;
|
|
1635
1708
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1636
1709
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1710
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1711
|
+
checkpoint_creation_hash?: InputMaybe<Order_By>;
|
|
1637
1712
|
checkpoint_creation_timestamp?: InputMaybe<Order_By>;
|
|
1638
1713
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1639
1714
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
@@ -1645,6 +1720,8 @@ export type Cca_Checkpoint_Min_Order_By = {
|
|
|
1645
1720
|
chain_id?: InputMaybe<Order_By>;
|
|
1646
1721
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1647
1722
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1723
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1724
|
+
checkpoint_creation_hash?: InputMaybe<Order_By>;
|
|
1648
1725
|
checkpoint_creation_timestamp?: InputMaybe<Order_By>;
|
|
1649
1726
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1650
1727
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
@@ -1657,6 +1734,8 @@ export type Cca_Checkpoint_Order_By = {
|
|
|
1657
1734
|
chain_id?: InputMaybe<Order_By>;
|
|
1658
1735
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1659
1736
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1737
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1738
|
+
checkpoint_creation_hash?: InputMaybe<Order_By>;
|
|
1660
1739
|
checkpoint_creation_timestamp?: InputMaybe<Order_By>;
|
|
1661
1740
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1662
1741
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
@@ -1668,6 +1747,8 @@ export declare enum Cca_Checkpoint_Select_Column {
|
|
|
1668
1747
|
ChainId = "chain_id",
|
|
1669
1748
|
CheckpointBlockNumber = "checkpoint_block_number",
|
|
1670
1749
|
CheckpointClearingPrice = "checkpoint_clearing_price",
|
|
1750
|
+
CheckpointCreationBlock = "checkpoint_creation_block",
|
|
1751
|
+
CheckpointCreationHash = "checkpoint_creation_hash",
|
|
1671
1752
|
CheckpointCreationTimestamp = "checkpoint_creation_timestamp",
|
|
1672
1753
|
CheckpointCumulativeMps = "checkpoint_cumulative_mps",
|
|
1673
1754
|
CheckpointCumulativeMpsPerPrice = "checkpoint_cumulative_mps_per_price",
|
|
@@ -1678,6 +1759,7 @@ export type Cca_Checkpoint_Stddev_Order_By = {
|
|
|
1678
1759
|
chain_id?: InputMaybe<Order_By>;
|
|
1679
1760
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1680
1761
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1762
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1681
1763
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1682
1764
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1683
1765
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
@@ -1686,6 +1768,7 @@ export type Cca_Checkpoint_Stddev_Pop_Order_By = {
|
|
|
1686
1768
|
chain_id?: InputMaybe<Order_By>;
|
|
1687
1769
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1688
1770
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1771
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1689
1772
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1690
1773
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1691
1774
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
@@ -1694,6 +1777,7 @@ export type Cca_Checkpoint_Stddev_Samp_Order_By = {
|
|
|
1694
1777
|
chain_id?: InputMaybe<Order_By>;
|
|
1695
1778
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1696
1779
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1780
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1697
1781
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1698
1782
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1699
1783
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
@@ -1707,6 +1791,8 @@ export type Cca_Checkpoint_Stream_Cursor_Value_Input = {
|
|
|
1707
1791
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1708
1792
|
checkpoint_block_number?: InputMaybe<Scalars['numeric']['input']>;
|
|
1709
1793
|
checkpoint_clearing_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1794
|
+
checkpoint_creation_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
1795
|
+
checkpoint_creation_hash?: InputMaybe<Scalars['String']['input']>;
|
|
1710
1796
|
checkpoint_creation_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1711
1797
|
checkpoint_cumulative_mps?: InputMaybe<Scalars['Int']['input']>;
|
|
1712
1798
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
@@ -1717,6 +1803,7 @@ export type Cca_Checkpoint_Sum_Order_By = {
|
|
|
1717
1803
|
chain_id?: InputMaybe<Order_By>;
|
|
1718
1804
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1719
1805
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1806
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1720
1807
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1721
1808
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1722
1809
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
@@ -1725,6 +1812,7 @@ export type Cca_Checkpoint_Var_Pop_Order_By = {
|
|
|
1725
1812
|
chain_id?: InputMaybe<Order_By>;
|
|
1726
1813
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1727
1814
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1815
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1728
1816
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1729
1817
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1730
1818
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
@@ -1733,6 +1821,7 @@ export type Cca_Checkpoint_Var_Samp_Order_By = {
|
|
|
1733
1821
|
chain_id?: InputMaybe<Order_By>;
|
|
1734
1822
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1735
1823
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1824
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1736
1825
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1737
1826
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1738
1827
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
@@ -1741,10 +1830,71 @@ export type Cca_Checkpoint_Variance_Order_By = {
|
|
|
1741
1830
|
chain_id?: InputMaybe<Order_By>;
|
|
1742
1831
|
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1743
1832
|
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1833
|
+
checkpoint_creation_block?: InputMaybe<Order_By>;
|
|
1744
1834
|
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1745
1835
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1746
1836
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1747
1837
|
};
|
|
1838
|
+
export type EnhancedToken = {
|
|
1839
|
+
__typename?: 'EnhancedToken';
|
|
1840
|
+
address: Scalars['String']['output'];
|
|
1841
|
+
circulatingSupply?: Maybe<Scalars['String']['output']>;
|
|
1842
|
+
cmcId?: Maybe<Scalars['Int']['output']>;
|
|
1843
|
+
createBlockNumber?: Maybe<Scalars['Int']['output']>;
|
|
1844
|
+
createTransactionHash?: Maybe<Scalars['String']['output']>;
|
|
1845
|
+
createdAt?: Maybe<Scalars['Int']['output']>;
|
|
1846
|
+
creatorAddress?: Maybe<Scalars['String']['output']>;
|
|
1847
|
+
decimals: Scalars['Int']['output'];
|
|
1848
|
+
exchanges?: Maybe<Array<Exchange>>;
|
|
1849
|
+
explorerData?: Maybe<ExplorerTokenData>;
|
|
1850
|
+
freezable?: Maybe<Scalars['String']['output']>;
|
|
1851
|
+
id: Scalars['String']['output'];
|
|
1852
|
+
imageLargeUrl?: Maybe<Scalars['String']['output']>;
|
|
1853
|
+
imageSmallUrl?: Maybe<Scalars['String']['output']>;
|
|
1854
|
+
imageThumbUrl?: Maybe<Scalars['String']['output']>;
|
|
1855
|
+
info?: Maybe<TokenInfo>;
|
|
1856
|
+
isFreezableValid?: Maybe<Scalars['Boolean']['output']>;
|
|
1857
|
+
isMintableValid?: Maybe<Scalars['Boolean']['output']>;
|
|
1858
|
+
isScam?: Maybe<Scalars['Boolean']['output']>;
|
|
1859
|
+
launchpad?: Maybe<LaunchpadData>;
|
|
1860
|
+
mintable?: Maybe<Scalars['String']['output']>;
|
|
1861
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1862
|
+
networkId: Scalars['Int']['output'];
|
|
1863
|
+
pooled?: Maybe<Scalars['String']['output']>;
|
|
1864
|
+
socialLinks?: Maybe<SocialLinks>;
|
|
1865
|
+
symbol?: Maybe<Scalars['String']['output']>;
|
|
1866
|
+
totalSupply?: Maybe<Scalars['String']['output']>;
|
|
1867
|
+
};
|
|
1868
|
+
export type Exchange = {
|
|
1869
|
+
__typename?: 'Exchange';
|
|
1870
|
+
address: Scalars['String']['output'];
|
|
1871
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
1872
|
+
exchangeVersion?: Maybe<Scalars['String']['output']>;
|
|
1873
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
1874
|
+
id: Scalars['String']['output'];
|
|
1875
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1876
|
+
networkId: Scalars['Int']['output'];
|
|
1877
|
+
tradeUrl?: Maybe<Scalars['String']['output']>;
|
|
1878
|
+
};
|
|
1879
|
+
export type ExplorerTokenData = {
|
|
1880
|
+
__typename?: 'ExplorerTokenData';
|
|
1881
|
+
blueCheckmark?: Maybe<Scalars['Boolean']['output']>;
|
|
1882
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1883
|
+
divisor?: Maybe<Scalars['String']['output']>;
|
|
1884
|
+
id: Scalars['String']['output'];
|
|
1885
|
+
tokenPriceUSD?: Maybe<Scalars['String']['output']>;
|
|
1886
|
+
tokenType?: Maybe<Scalars['String']['output']>;
|
|
1887
|
+
};
|
|
1888
|
+
export type FilterExchange = {
|
|
1889
|
+
__typename?: 'FilterExchange';
|
|
1890
|
+
address: Scalars['String']['output'];
|
|
1891
|
+
exchangeVersion?: Maybe<Scalars['String']['output']>;
|
|
1892
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
1893
|
+
id: Scalars['String']['output'];
|
|
1894
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1895
|
+
networkId: Scalars['Int']['output'];
|
|
1896
|
+
tradeUrl?: Maybe<Scalars['String']['output']>;
|
|
1897
|
+
};
|
|
1748
1898
|
export type GraduationPool = {
|
|
1749
1899
|
__typename?: 'GraduationPool';
|
|
1750
1900
|
asset_id: Scalars['String']['output'];
|
|
@@ -1758,10 +1908,8 @@ export type GraduationPool = {
|
|
|
1758
1908
|
pool_address: Scalars['String']['output'];
|
|
1759
1909
|
pool_config_is_token_0: Scalars['Boolean']['output'];
|
|
1760
1910
|
pool_current_fdv?: Maybe<Scalars['numeric']['output']>;
|
|
1761
|
-
pool_current_fdv_usd?: Maybe<Scalars['String']['output']>;
|
|
1762
1911
|
pool_current_liquidity: Scalars['numeric']['output'];
|
|
1763
1912
|
pool_current_market_cap?: Maybe<Scalars['numeric']['output']>;
|
|
1764
|
-
pool_current_market_cap_usd?: Maybe<Scalars['String']['output']>;
|
|
1765
1913
|
pool_current_price: Scalars['numeric']['output'];
|
|
1766
1914
|
pool_current_reserve_base_token: Scalars['numeric']['output'];
|
|
1767
1915
|
pool_current_reserve_quote_token: Scalars['numeric']['output'];
|
|
@@ -1769,7 +1917,9 @@ export type GraduationPool = {
|
|
|
1769
1917
|
pool_current_tick: Scalars['Int']['output'];
|
|
1770
1918
|
pool_current_total_fee_base_token: Scalars['numeric']['output'];
|
|
1771
1919
|
pool_current_total_fee_quote_token: Scalars['numeric']['output'];
|
|
1920
|
+
pool_market_data?: Maybe<PairFilterResult>;
|
|
1772
1921
|
pool_migration_block?: Maybe<Scalars['numeric']['output']>;
|
|
1922
|
+
pool_migration_hash?: Maybe<Scalars['String']['output']>;
|
|
1773
1923
|
pool_migration_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
1774
1924
|
pool_type: Scalars['String']['output'];
|
|
1775
1925
|
quote_token?: Maybe<Token>;
|
|
@@ -2039,10 +2189,8 @@ export type GraduationPool_Bool_Exp = {
|
|
|
2039
2189
|
pool_address?: InputMaybe<String_Comparison_Exp>;
|
|
2040
2190
|
pool_config_is_token_0?: InputMaybe<Boolean_Comparison_Exp>;
|
|
2041
2191
|
pool_current_fdv?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2042
|
-
pool_current_fdv_usd?: InputMaybe<String_Comparison_Exp>;
|
|
2043
2192
|
pool_current_liquidity?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2044
2193
|
pool_current_market_cap?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2045
|
-
pool_current_market_cap_usd?: InputMaybe<String_Comparison_Exp>;
|
|
2046
2194
|
pool_current_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2047
2195
|
pool_current_reserve_base_token?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2048
2196
|
pool_current_reserve_quote_token?: InputMaybe<Numeric_Comparison_Exp>;
|
|
@@ -2051,6 +2199,7 @@ export type GraduationPool_Bool_Exp = {
|
|
|
2051
2199
|
pool_current_total_fee_base_token?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2052
2200
|
pool_current_total_fee_quote_token?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2053
2201
|
pool_migration_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2202
|
+
pool_migration_hash?: InputMaybe<String_Comparison_Exp>;
|
|
2054
2203
|
pool_migration_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2055
2204
|
pool_type?: InputMaybe<String_Comparison_Exp>;
|
|
2056
2205
|
quote_token?: InputMaybe<Token_Bool_Exp>;
|
|
@@ -2066,10 +2215,8 @@ export type GraduationPool_Max_Order_By = {
|
|
|
2066
2215
|
integrator_address?: InputMaybe<Order_By>;
|
|
2067
2216
|
pool_address?: InputMaybe<Order_By>;
|
|
2068
2217
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
2069
|
-
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
2070
2218
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
2071
2219
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
2072
|
-
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
2073
2220
|
pool_current_price?: InputMaybe<Order_By>;
|
|
2074
2221
|
pool_current_reserve_base_token?: InputMaybe<Order_By>;
|
|
2075
2222
|
pool_current_reserve_quote_token?: InputMaybe<Order_By>;
|
|
@@ -2078,6 +2225,7 @@ export type GraduationPool_Max_Order_By = {
|
|
|
2078
2225
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2079
2226
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2080
2227
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2228
|
+
pool_migration_hash?: InputMaybe<Order_By>;
|
|
2081
2229
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
2082
2230
|
pool_type?: InputMaybe<Order_By>;
|
|
2083
2231
|
quote_token_id?: InputMaybe<Order_By>;
|
|
@@ -2091,10 +2239,8 @@ export type GraduationPool_Min_Order_By = {
|
|
|
2091
2239
|
integrator_address?: InputMaybe<Order_By>;
|
|
2092
2240
|
pool_address?: InputMaybe<Order_By>;
|
|
2093
2241
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
2094
|
-
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
2095
2242
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
2096
2243
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
2097
|
-
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
2098
2244
|
pool_current_price?: InputMaybe<Order_By>;
|
|
2099
2245
|
pool_current_reserve_base_token?: InputMaybe<Order_By>;
|
|
2100
2246
|
pool_current_reserve_quote_token?: InputMaybe<Order_By>;
|
|
@@ -2103,6 +2249,7 @@ export type GraduationPool_Min_Order_By = {
|
|
|
2103
2249
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2104
2250
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2105
2251
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2252
|
+
pool_migration_hash?: InputMaybe<Order_By>;
|
|
2106
2253
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
2107
2254
|
pool_type?: InputMaybe<Order_By>;
|
|
2108
2255
|
quote_token_id?: InputMaybe<Order_By>;
|
|
@@ -2119,10 +2266,8 @@ export type GraduationPool_Order_By = {
|
|
|
2119
2266
|
pool_address?: InputMaybe<Order_By>;
|
|
2120
2267
|
pool_config_is_token_0?: InputMaybe<Order_By>;
|
|
2121
2268
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
2122
|
-
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
2123
2269
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
2124
2270
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
2125
|
-
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
2126
2271
|
pool_current_price?: InputMaybe<Order_By>;
|
|
2127
2272
|
pool_current_reserve_base_token?: InputMaybe<Order_By>;
|
|
2128
2273
|
pool_current_reserve_quote_token?: InputMaybe<Order_By>;
|
|
@@ -2131,6 +2276,7 @@ export type GraduationPool_Order_By = {
|
|
|
2131
2276
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2132
2277
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2133
2278
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2279
|
+
pool_migration_hash?: InputMaybe<Order_By>;
|
|
2134
2280
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
2135
2281
|
pool_type?: InputMaybe<Order_By>;
|
|
2136
2282
|
quote_token?: InputMaybe<Token_Order_By>;
|
|
@@ -2147,10 +2293,8 @@ export declare enum GraduationPool_Select_Column {
|
|
|
2147
2293
|
PoolAddress = "pool_address",
|
|
2148
2294
|
PoolConfigIsToken_0 = "pool_config_is_token_0",
|
|
2149
2295
|
PoolCurrentFdv = "pool_current_fdv",
|
|
2150
|
-
PoolCurrentFdvUsd = "pool_current_fdv_usd",
|
|
2151
2296
|
PoolCurrentLiquidity = "pool_current_liquidity",
|
|
2152
2297
|
PoolCurrentMarketCap = "pool_current_market_cap",
|
|
2153
|
-
PoolCurrentMarketCapUsd = "pool_current_market_cap_usd",
|
|
2154
2298
|
PoolCurrentPrice = "pool_current_price",
|
|
2155
2299
|
PoolCurrentReserveBaseToken = "pool_current_reserve_base_token",
|
|
2156
2300
|
PoolCurrentReserveQuoteToken = "pool_current_reserve_quote_token",
|
|
@@ -2159,6 +2303,7 @@ export declare enum GraduationPool_Select_Column {
|
|
|
2159
2303
|
PoolCurrentTotalFeeBaseToken = "pool_current_total_fee_base_token",
|
|
2160
2304
|
PoolCurrentTotalFeeQuoteToken = "pool_current_total_fee_quote_token",
|
|
2161
2305
|
PoolMigrationBlock = "pool_migration_block",
|
|
2306
|
+
PoolMigrationHash = "pool_migration_hash",
|
|
2162
2307
|
PoolMigrationTimestamp = "pool_migration_timestamp",
|
|
2163
2308
|
PoolType = "pool_type",
|
|
2164
2309
|
QuoteTokenId = "quote_token_id"
|
|
@@ -2219,10 +2364,8 @@ export type GraduationPool_Stream_Cursor_Value_Input = {
|
|
|
2219
2364
|
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
2220
2365
|
pool_config_is_token_0?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2221
2366
|
pool_current_fdv?: InputMaybe<Scalars['numeric']['input']>;
|
|
2222
|
-
pool_current_fdv_usd?: InputMaybe<Scalars['String']['input']>;
|
|
2223
2367
|
pool_current_liquidity?: InputMaybe<Scalars['numeric']['input']>;
|
|
2224
2368
|
pool_current_market_cap?: InputMaybe<Scalars['numeric']['input']>;
|
|
2225
|
-
pool_current_market_cap_usd?: InputMaybe<Scalars['String']['input']>;
|
|
2226
2369
|
pool_current_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
2227
2370
|
pool_current_reserve_base_token?: InputMaybe<Scalars['numeric']['input']>;
|
|
2228
2371
|
pool_current_reserve_quote_token?: InputMaybe<Scalars['numeric']['input']>;
|
|
@@ -2231,6 +2374,7 @@ export type GraduationPool_Stream_Cursor_Value_Input = {
|
|
|
2231
2374
|
pool_current_total_fee_base_token?: InputMaybe<Scalars['numeric']['input']>;
|
|
2232
2375
|
pool_current_total_fee_quote_token?: InputMaybe<Scalars['numeric']['input']>;
|
|
2233
2376
|
pool_migration_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
2377
|
+
pool_migration_hash?: InputMaybe<Scalars['String']['input']>;
|
|
2234
2378
|
pool_migration_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2235
2379
|
pool_type?: InputMaybe<Scalars['String']['input']>;
|
|
2236
2380
|
quote_token_id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2302,63 +2446,453 @@ export type Int_Comparison_Exp = {
|
|
|
2302
2446
|
_neq?: InputMaybe<Scalars['Int']['input']>;
|
|
2303
2447
|
_nin?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
2304
2448
|
};
|
|
2305
|
-
export type
|
|
2306
|
-
__typename?: '
|
|
2307
|
-
|
|
2449
|
+
export type LaunchpadData = {
|
|
2450
|
+
__typename?: 'LaunchpadData';
|
|
2451
|
+
completed?: Maybe<Scalars['Boolean']['output']>;
|
|
2452
|
+
completedAt?: Maybe<Scalars['Int']['output']>;
|
|
2453
|
+
completedSlot?: Maybe<Scalars['Int']['output']>;
|
|
2454
|
+
graduationPercent?: Maybe<Scalars['Float']['output']>;
|
|
2455
|
+
launchpadIconUrl?: Maybe<Scalars['String']['output']>;
|
|
2456
|
+
launchpadName?: Maybe<Scalars['String']['output']>;
|
|
2457
|
+
launchpadProtocol?: Maybe<Scalars['String']['output']>;
|
|
2458
|
+
migrated?: Maybe<Scalars['Boolean']['output']>;
|
|
2459
|
+
migratedAt?: Maybe<Scalars['Int']['output']>;
|
|
2460
|
+
migratedPoolAddress?: Maybe<Scalars['String']['output']>;
|
|
2461
|
+
migratedSlot?: Maybe<Scalars['Int']['output']>;
|
|
2462
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2463
|
+
poolAddress?: Maybe<Scalars['String']['output']>;
|
|
2464
|
+
};
|
|
2465
|
+
export type NumberFilter = {
|
|
2466
|
+
gt?: InputMaybe<Scalars['Float']['input']>;
|
|
2467
|
+
gte?: InputMaybe<Scalars['Float']['input']>;
|
|
2468
|
+
lt?: InputMaybe<Scalars['Float']['input']>;
|
|
2469
|
+
lte?: InputMaybe<Scalars['Float']['input']>;
|
|
2470
|
+
};
|
|
2471
|
+
export type Pair = {
|
|
2472
|
+
__typename?: 'Pair';
|
|
2473
|
+
address: Scalars['String']['output'];
|
|
2474
|
+
createdAt?: Maybe<Scalars['Int']['output']>;
|
|
2475
|
+
exchangeHash: Scalars['String']['output'];
|
|
2476
|
+
fee?: Maybe<Scalars['Int']['output']>;
|
|
2308
2477
|
id: Scalars['String']['output'];
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2478
|
+
networkId: Scalars['Int']['output'];
|
|
2479
|
+
pooled?: Maybe<PooledTokenValues>;
|
|
2480
|
+
protocol?: Maybe<Scalars['String']['output']>;
|
|
2481
|
+
protocolCustomData?: Maybe<PairProtocolCustomData>;
|
|
2482
|
+
protocolData?: Maybe<ProtocolData>;
|
|
2483
|
+
tickSpacing?: Maybe<Scalars['Int']['output']>;
|
|
2484
|
+
token0: Scalars['String']['output'];
|
|
2485
|
+
token0Data?: Maybe<EnhancedToken>;
|
|
2486
|
+
token1: Scalars['String']['output'];
|
|
2487
|
+
token1Data?: Maybe<EnhancedToken>;
|
|
2488
|
+
};
|
|
2489
|
+
export type PairFilterConnection = {
|
|
2490
|
+
__typename?: 'PairFilterConnection';
|
|
2491
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
2492
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
2493
|
+
results?: Maybe<Array<Maybe<PairFilterResult>>>;
|
|
2494
|
+
};
|
|
2495
|
+
export type PairFilterMatchTokens = {
|
|
2496
|
+
token0?: InputMaybe<Scalars['String']['input']>;
|
|
2497
|
+
token1?: InputMaybe<Scalars['String']['input']>;
|
|
2498
|
+
};
|
|
2499
|
+
export type PairFilterResult = {
|
|
2500
|
+
__typename?: 'PairFilterResult';
|
|
2501
|
+
buyCount1?: Maybe<Scalars['Int']['output']>;
|
|
2502
|
+
buyCount4?: Maybe<Scalars['Int']['output']>;
|
|
2503
|
+
buyCount12?: Maybe<Scalars['Int']['output']>;
|
|
2504
|
+
buyCount24?: Maybe<Scalars['Int']['output']>;
|
|
2505
|
+
buyVolumeUSD1?: Maybe<Scalars['String']['output']>;
|
|
2506
|
+
buyVolumeUSD4?: Maybe<Scalars['String']['output']>;
|
|
2507
|
+
buyVolumeUSD12?: Maybe<Scalars['String']['output']>;
|
|
2508
|
+
buyVolumeUSD24?: Maybe<Scalars['String']['output']>;
|
|
2509
|
+
createdAt?: Maybe<Scalars['Int']['output']>;
|
|
2510
|
+
exchange?: Maybe<FilterExchange>;
|
|
2511
|
+
highPrice1?: Maybe<Scalars['String']['output']>;
|
|
2512
|
+
highPrice4?: Maybe<Scalars['String']['output']>;
|
|
2513
|
+
highPrice12?: Maybe<Scalars['String']['output']>;
|
|
2514
|
+
highPrice24?: Maybe<Scalars['String']['output']>;
|
|
2515
|
+
lastTransaction?: Maybe<Scalars['Int']['output']>;
|
|
2516
|
+
liquidity?: Maybe<Scalars['String']['output']>;
|
|
2517
|
+
liquidityToken?: Maybe<Scalars['String']['output']>;
|
|
2518
|
+
lockedLiquidityPercentage: Scalars['Float']['output'];
|
|
2519
|
+
lowPrice1?: Maybe<Scalars['String']['output']>;
|
|
2520
|
+
lowPrice4?: Maybe<Scalars['String']['output']>;
|
|
2521
|
+
lowPrice12?: Maybe<Scalars['String']['output']>;
|
|
2522
|
+
lowPrice24?: Maybe<Scalars['String']['output']>;
|
|
2523
|
+
marketCap?: Maybe<Scalars['String']['output']>;
|
|
2524
|
+
pair?: Maybe<Pair>;
|
|
2525
|
+
price?: Maybe<Scalars['String']['output']>;
|
|
2526
|
+
priceChange1?: Maybe<Scalars['String']['output']>;
|
|
2527
|
+
priceChange4?: Maybe<Scalars['String']['output']>;
|
|
2528
|
+
priceChange12?: Maybe<Scalars['String']['output']>;
|
|
2529
|
+
priceChange24?: Maybe<Scalars['String']['output']>;
|
|
2530
|
+
priceScale?: Maybe<Scalars['String']['output']>;
|
|
2531
|
+
quoteToken?: Maybe<Scalars['String']['output']>;
|
|
2532
|
+
sellCount1?: Maybe<Scalars['Int']['output']>;
|
|
2533
|
+
sellCount4?: Maybe<Scalars['Int']['output']>;
|
|
2534
|
+
sellCount12?: Maybe<Scalars['Int']['output']>;
|
|
2535
|
+
sellCount24?: Maybe<Scalars['Int']['output']>;
|
|
2536
|
+
sellVolumeUSD1?: Maybe<Scalars['String']['output']>;
|
|
2537
|
+
sellVolumeUSD4?: Maybe<Scalars['String']['output']>;
|
|
2538
|
+
sellVolumeUSD12?: Maybe<Scalars['String']['output']>;
|
|
2539
|
+
sellVolumeUSD24?: Maybe<Scalars['String']['output']>;
|
|
2540
|
+
swapPct1dOldWallet?: Maybe<Scalars['String']['output']>;
|
|
2541
|
+
swapPct7dOldWallet?: Maybe<Scalars['String']['output']>;
|
|
2542
|
+
token0?: Maybe<EnhancedToken>;
|
|
2543
|
+
token1?: Maybe<EnhancedToken>;
|
|
2544
|
+
txnCount1?: Maybe<Scalars['Int']['output']>;
|
|
2545
|
+
txnCount4?: Maybe<Scalars['Int']['output']>;
|
|
2546
|
+
txnCount12?: Maybe<Scalars['Int']['output']>;
|
|
2547
|
+
txnCount24?: Maybe<Scalars['Int']['output']>;
|
|
2548
|
+
uniqueBuys1?: Maybe<Scalars['Int']['output']>;
|
|
2549
|
+
uniqueBuys4?: Maybe<Scalars['Int']['output']>;
|
|
2550
|
+
uniqueBuys12?: Maybe<Scalars['Int']['output']>;
|
|
2551
|
+
uniqueBuys24?: Maybe<Scalars['Int']['output']>;
|
|
2552
|
+
uniqueSells1?: Maybe<Scalars['Int']['output']>;
|
|
2553
|
+
uniqueSells4?: Maybe<Scalars['Int']['output']>;
|
|
2554
|
+
uniqueSells12?: Maybe<Scalars['Int']['output']>;
|
|
2555
|
+
uniqueSells24?: Maybe<Scalars['Int']['output']>;
|
|
2556
|
+
uniqueTransactions1?: Maybe<Scalars['Int']['output']>;
|
|
2557
|
+
uniqueTransactions4?: Maybe<Scalars['Int']['output']>;
|
|
2558
|
+
uniqueTransactions12?: Maybe<Scalars['Int']['output']>;
|
|
2559
|
+
uniqueTransactions24?: Maybe<Scalars['Int']['output']>;
|
|
2560
|
+
volumeChange1?: Maybe<Scalars['String']['output']>;
|
|
2561
|
+
volumeChange4?: Maybe<Scalars['String']['output']>;
|
|
2562
|
+
volumeChange12?: Maybe<Scalars['String']['output']>;
|
|
2563
|
+
volumeChange24?: Maybe<Scalars['String']['output']>;
|
|
2564
|
+
volumeUSD1?: Maybe<Scalars['String']['output']>;
|
|
2565
|
+
volumeUSD4?: Maybe<Scalars['String']['output']>;
|
|
2566
|
+
volumeUSD12?: Maybe<Scalars['String']['output']>;
|
|
2567
|
+
volumeUSD24?: Maybe<Scalars['String']['output']>;
|
|
2568
|
+
walletAgeAvg?: Maybe<Scalars['String']['output']>;
|
|
2569
|
+
walletAgeStd?: Maybe<Scalars['String']['output']>;
|
|
2570
|
+
};
|
|
2571
|
+
export type PairFilters = {
|
|
2572
|
+
buyCount1?: InputMaybe<NumberFilter>;
|
|
2573
|
+
buyCount4?: InputMaybe<NumberFilter>;
|
|
2574
|
+
buyCount12?: InputMaybe<NumberFilter>;
|
|
2575
|
+
buyCount24?: InputMaybe<NumberFilter>;
|
|
2576
|
+
buyVolumeUSD1?: InputMaybe<NumberFilter>;
|
|
2577
|
+
buyVolumeUSD4?: InputMaybe<NumberFilter>;
|
|
2578
|
+
buyVolumeUSD12?: InputMaybe<NumberFilter>;
|
|
2579
|
+
buyVolumeUSD24?: InputMaybe<NumberFilter>;
|
|
2580
|
+
createdAt?: InputMaybe<NumberFilter>;
|
|
2581
|
+
exchangeAddress?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2582
|
+
highPrice1?: InputMaybe<NumberFilter>;
|
|
2583
|
+
highPrice4?: InputMaybe<NumberFilter>;
|
|
2584
|
+
highPrice12?: InputMaybe<NumberFilter>;
|
|
2585
|
+
highPrice24?: InputMaybe<NumberFilter>;
|
|
2586
|
+
hookAddress?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2587
|
+
isTestnet?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2588
|
+
lastTransaction?: InputMaybe<NumberFilter>;
|
|
2589
|
+
liquidity?: InputMaybe<NumberFilter>;
|
|
2590
|
+
lockedLiquidityPercentage?: InputMaybe<NumberFilter>;
|
|
2591
|
+
lowPrice1?: InputMaybe<NumberFilter>;
|
|
2592
|
+
lowPrice4?: InputMaybe<NumberFilter>;
|
|
2593
|
+
lowPrice12?: InputMaybe<NumberFilter>;
|
|
2594
|
+
lowPrice24?: InputMaybe<NumberFilter>;
|
|
2595
|
+
network?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
2596
|
+
potentialScam?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2597
|
+
price?: InputMaybe<NumberFilter>;
|
|
2598
|
+
priceChange1?: InputMaybe<NumberFilter>;
|
|
2599
|
+
priceChange4?: InputMaybe<NumberFilter>;
|
|
2600
|
+
priceChange12?: InputMaybe<NumberFilter>;
|
|
2601
|
+
priceChange24?: InputMaybe<NumberFilter>;
|
|
2602
|
+
sellCount1?: InputMaybe<NumberFilter>;
|
|
2603
|
+
sellCount4?: InputMaybe<NumberFilter>;
|
|
2604
|
+
sellCount12?: InputMaybe<NumberFilter>;
|
|
2605
|
+
sellCount24?: InputMaybe<NumberFilter>;
|
|
2606
|
+
sellVolumeUSD1?: InputMaybe<NumberFilter>;
|
|
2607
|
+
sellVolumeUSD4?: InputMaybe<NumberFilter>;
|
|
2608
|
+
sellVolumeUSD12?: InputMaybe<NumberFilter>;
|
|
2609
|
+
sellVolumeUSD24?: InputMaybe<NumberFilter>;
|
|
2610
|
+
swapPct1dOldWallet?: InputMaybe<NumberFilter>;
|
|
2611
|
+
swapPct7dOldWallet?: InputMaybe<NumberFilter>;
|
|
2612
|
+
tokenAddress?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2613
|
+
trendingIgnored?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2614
|
+
txnCount1?: InputMaybe<NumberFilter>;
|
|
2615
|
+
txnCount4?: InputMaybe<NumberFilter>;
|
|
2616
|
+
txnCount12?: InputMaybe<NumberFilter>;
|
|
2617
|
+
txnCount24?: InputMaybe<NumberFilter>;
|
|
2618
|
+
uniqueBuys1?: InputMaybe<NumberFilter>;
|
|
2619
|
+
uniqueBuys4?: InputMaybe<NumberFilter>;
|
|
2620
|
+
uniqueBuys12?: InputMaybe<NumberFilter>;
|
|
2621
|
+
uniqueBuys24?: InputMaybe<NumberFilter>;
|
|
2622
|
+
uniqueSells1?: InputMaybe<NumberFilter>;
|
|
2623
|
+
uniqueSells4?: InputMaybe<NumberFilter>;
|
|
2624
|
+
uniqueSells12?: InputMaybe<NumberFilter>;
|
|
2625
|
+
uniqueSells24?: InputMaybe<NumberFilter>;
|
|
2626
|
+
uniqueTransactions1?: InputMaybe<NumberFilter>;
|
|
2627
|
+
uniqueTransactions4?: InputMaybe<NumberFilter>;
|
|
2628
|
+
uniqueTransactions12?: InputMaybe<NumberFilter>;
|
|
2629
|
+
uniqueTransactions24?: InputMaybe<NumberFilter>;
|
|
2630
|
+
volumeChange1?: InputMaybe<NumberFilter>;
|
|
2631
|
+
volumeChange4?: InputMaybe<NumberFilter>;
|
|
2632
|
+
volumeChange12?: InputMaybe<NumberFilter>;
|
|
2633
|
+
volumeChange24?: InputMaybe<NumberFilter>;
|
|
2634
|
+
volumeUSD1?: InputMaybe<NumberFilter>;
|
|
2635
|
+
volumeUSD4?: InputMaybe<NumberFilter>;
|
|
2636
|
+
volumeUSD12?: InputMaybe<NumberFilter>;
|
|
2637
|
+
volumeUSD24?: InputMaybe<NumberFilter>;
|
|
2638
|
+
walletAgeAvg?: InputMaybe<NumberFilter>;
|
|
2639
|
+
walletAgeStd?: InputMaybe<NumberFilter>;
|
|
2640
|
+
};
|
|
2641
|
+
export type PairProtocolCustomData = {
|
|
2642
|
+
__typename?: 'PairProtocolCustomData';
|
|
2643
|
+
uniswapV4HookAddress?: Maybe<Scalars['String']['output']>;
|
|
2644
|
+
};
|
|
2645
|
+
export type PairRanking = {
|
|
2646
|
+
attribute?: InputMaybe<PairRankingAttribute>;
|
|
2647
|
+
direction?: InputMaybe<RankingDirection>;
|
|
2648
|
+
};
|
|
2649
|
+
export declare enum PairRankingAttribute {
|
|
2650
|
+
BuyCount1 = "buyCount1",
|
|
2651
|
+
BuyCount4 = "buyCount4",
|
|
2652
|
+
BuyCount12 = "buyCount12",
|
|
2653
|
+
BuyCount24 = "buyCount24",
|
|
2654
|
+
BuyVolumeUsd1 = "buyVolumeUSD1",
|
|
2655
|
+
BuyVolumeUsd4 = "buyVolumeUSD4",
|
|
2656
|
+
BuyVolumeUsd12 = "buyVolumeUSD12",
|
|
2657
|
+
BuyVolumeUsd24 = "buyVolumeUSD24",
|
|
2658
|
+
CreatedAt = "createdAt",
|
|
2659
|
+
HighPrice1 = "highPrice1",
|
|
2660
|
+
HighPrice4 = "highPrice4",
|
|
2661
|
+
HighPrice12 = "highPrice12",
|
|
2662
|
+
HighPrice24 = "highPrice24",
|
|
2663
|
+
LastTransaction = "lastTransaction",
|
|
2664
|
+
Liquidity = "liquidity",
|
|
2665
|
+
LockedLiquidityPercentage = "lockedLiquidityPercentage",
|
|
2666
|
+
LowPrice1 = "lowPrice1",
|
|
2667
|
+
LowPrice4 = "lowPrice4",
|
|
2668
|
+
LowPrice12 = "lowPrice12",
|
|
2669
|
+
LowPrice24 = "lowPrice24",
|
|
2670
|
+
MarketCap = "marketCap",
|
|
2671
|
+
Price = "price",
|
|
2672
|
+
PriceChange1 = "priceChange1",
|
|
2673
|
+
PriceChange4 = "priceChange4",
|
|
2674
|
+
PriceChange12 = "priceChange12",
|
|
2675
|
+
PriceChange24 = "priceChange24",
|
|
2676
|
+
SellCount1 = "sellCount1",
|
|
2677
|
+
SellCount4 = "sellCount4",
|
|
2678
|
+
SellCount12 = "sellCount12",
|
|
2679
|
+
SellCount24 = "sellCount24",
|
|
2680
|
+
SellVolumeUsd1 = "sellVolumeUSD1",
|
|
2681
|
+
SellVolumeUsd4 = "sellVolumeUSD4",
|
|
2682
|
+
SellVolumeUsd12 = "sellVolumeUSD12",
|
|
2683
|
+
SellVolumeUsd24 = "sellVolumeUSD24",
|
|
2684
|
+
SwapPct1dOldWallet = "swapPct1dOldWallet",
|
|
2685
|
+
SwapPct7dOldWallet = "swapPct7dOldWallet",
|
|
2686
|
+
TrendingScore = "trendingScore",
|
|
2687
|
+
TrendingScore1 = "trendingScore1",
|
|
2688
|
+
TrendingScore4 = "trendingScore4",
|
|
2689
|
+
TrendingScore5m = "trendingScore5m",
|
|
2690
|
+
TrendingScore12 = "trendingScore12",
|
|
2691
|
+
TrendingScore24 = "trendingScore24",
|
|
2692
|
+
TxnCount1 = "txnCount1",
|
|
2693
|
+
TxnCount4 = "txnCount4",
|
|
2694
|
+
TxnCount12 = "txnCount12",
|
|
2695
|
+
TxnCount24 = "txnCount24",
|
|
2696
|
+
UniqueBuys1 = "uniqueBuys1",
|
|
2697
|
+
UniqueBuys4 = "uniqueBuys4",
|
|
2698
|
+
UniqueBuys12 = "uniqueBuys12",
|
|
2699
|
+
UniqueBuys24 = "uniqueBuys24",
|
|
2700
|
+
UniqueSells1 = "uniqueSells1",
|
|
2701
|
+
UniqueSells4 = "uniqueSells4",
|
|
2702
|
+
UniqueSells12 = "uniqueSells12",
|
|
2703
|
+
UniqueSells24 = "uniqueSells24",
|
|
2704
|
+
UniqueTransactions1 = "uniqueTransactions1",
|
|
2705
|
+
UniqueTransactions4 = "uniqueTransactions4",
|
|
2706
|
+
UniqueTransactions12 = "uniqueTransactions12",
|
|
2707
|
+
UniqueTransactions24 = "uniqueTransactions24",
|
|
2708
|
+
VolumeChange1 = "volumeChange1",
|
|
2709
|
+
VolumeChange4 = "volumeChange4",
|
|
2710
|
+
VolumeChange12 = "volumeChange12",
|
|
2711
|
+
VolumeChange24 = "volumeChange24",
|
|
2712
|
+
VolumeUsd1 = "volumeUSD1",
|
|
2713
|
+
VolumeUsd4 = "volumeUSD4",
|
|
2714
|
+
VolumeUsd12 = "volumeUSD12",
|
|
2715
|
+
VolumeUsd24 = "volumeUSD24",
|
|
2716
|
+
WalletAgeAvg = "walletAgeAvg",
|
|
2717
|
+
WalletAgeStd = "walletAgeStd"
|
|
2348
2718
|
}
|
|
2349
|
-
export type
|
|
2350
|
-
|
|
2351
|
-
|
|
2719
|
+
export type PooledTokenValues = {
|
|
2720
|
+
__typename?: 'PooledTokenValues';
|
|
2721
|
+
token0?: Maybe<Scalars['String']['output']>;
|
|
2722
|
+
token1?: Maybe<Scalars['String']['output']>;
|
|
2723
|
+
};
|
|
2724
|
+
export type ProtocolData = ArenaTradeData | UniswapV4Data;
|
|
2725
|
+
export type Query = {
|
|
2726
|
+
__typename?: 'Query';
|
|
2727
|
+
Asset: Array<Asset>;
|
|
2728
|
+
Asset_by_pk?: Maybe<Asset>;
|
|
2729
|
+
AuctionPool: Array<AuctionPool>;
|
|
2730
|
+
AuctionPool_Bid: Array<AuctionPool_Bid>;
|
|
2731
|
+
AuctionPool_Bid_by_pk?: Maybe<AuctionPool_Bid>;
|
|
2732
|
+
AuctionPool_Swap: Array<AuctionPool_Swap>;
|
|
2733
|
+
AuctionPool_Swap_by_pk?: Maybe<AuctionPool_Swap>;
|
|
2734
|
+
AuctionPool_by_pk?: Maybe<AuctionPool>;
|
|
2735
|
+
CCA_Checkpoint: Array<Cca_Checkpoint>;
|
|
2736
|
+
CCA_Checkpoint_by_pk?: Maybe<Cca_Checkpoint>;
|
|
2737
|
+
GraduationPool: Array<GraduationPool>;
|
|
2738
|
+
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
2739
|
+
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
2740
|
+
GraduationPool_by_pk?: Maybe<GraduationPool>;
|
|
2741
|
+
Token: Array<Token>;
|
|
2742
|
+
Token_aggregate: Token_Aggregate;
|
|
2743
|
+
Token_by_pk?: Maybe<Token>;
|
|
2744
|
+
_meta: Array<_Meta>;
|
|
2745
|
+
chain_metadata: Array<Chain_Metadata>;
|
|
2746
|
+
filterPairs?: Maybe<PairFilterConnection>;
|
|
2747
|
+
raw_events: Array<Raw_Events>;
|
|
2748
|
+
raw_events_by_pk?: Maybe<Raw_Events>;
|
|
2352
2749
|
};
|
|
2353
|
-
export type
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2750
|
+
export type QueryAssetArgs = {
|
|
2751
|
+
distinct_on?: InputMaybe<Array<Asset_Select_Column>>;
|
|
2752
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2753
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2754
|
+
order_by?: InputMaybe<Array<Asset_Order_By>>;
|
|
2755
|
+
where?: InputMaybe<Asset_Bool_Exp>;
|
|
2756
|
+
};
|
|
2757
|
+
export type QueryAsset_By_PkArgs = {
|
|
2758
|
+
id: Scalars['String']['input'];
|
|
2759
|
+
};
|
|
2760
|
+
export type QueryAuctionPoolArgs = {
|
|
2761
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
2762
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2763
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2764
|
+
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
2765
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
2766
|
+
};
|
|
2767
|
+
export type QueryAuctionPool_BidArgs = {
|
|
2768
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Bid_Select_Column>>;
|
|
2769
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2770
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2771
|
+
order_by?: InputMaybe<Array<AuctionPool_Bid_Order_By>>;
|
|
2772
|
+
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
2773
|
+
};
|
|
2774
|
+
export type QueryAuctionPool_Bid_By_PkArgs = {
|
|
2775
|
+
id: Scalars['String']['input'];
|
|
2776
|
+
};
|
|
2777
|
+
export type QueryAuctionPool_SwapArgs = {
|
|
2778
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Swap_Select_Column>>;
|
|
2779
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2780
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2781
|
+
order_by?: InputMaybe<Array<AuctionPool_Swap_Order_By>>;
|
|
2782
|
+
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
2783
|
+
};
|
|
2784
|
+
export type QueryAuctionPool_Swap_By_PkArgs = {
|
|
2785
|
+
id: Scalars['String']['input'];
|
|
2786
|
+
};
|
|
2787
|
+
export type QueryAuctionPool_By_PkArgs = {
|
|
2788
|
+
id: Scalars['String']['input'];
|
|
2789
|
+
};
|
|
2790
|
+
export type QueryCca_CheckpointArgs = {
|
|
2791
|
+
distinct_on?: InputMaybe<Array<Cca_Checkpoint_Select_Column>>;
|
|
2792
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2793
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2794
|
+
order_by?: InputMaybe<Array<Cca_Checkpoint_Order_By>>;
|
|
2795
|
+
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
2796
|
+
};
|
|
2797
|
+
export type QueryCca_Checkpoint_By_PkArgs = {
|
|
2798
|
+
id: Scalars['String']['input'];
|
|
2799
|
+
};
|
|
2800
|
+
export type QueryGraduationPoolArgs = {
|
|
2801
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
2802
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2803
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2804
|
+
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
2805
|
+
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
2806
|
+
};
|
|
2807
|
+
export type QueryGraduationPool_SwapArgs = {
|
|
2808
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Swap_Select_Column>>;
|
|
2809
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2810
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2811
|
+
order_by?: InputMaybe<Array<GraduationPool_Swap_Order_By>>;
|
|
2812
|
+
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
2813
|
+
};
|
|
2814
|
+
export type QueryGraduationPool_Swap_By_PkArgs = {
|
|
2815
|
+
id: Scalars['String']['input'];
|
|
2816
|
+
};
|
|
2817
|
+
export type QueryGraduationPool_By_PkArgs = {
|
|
2818
|
+
id: Scalars['String']['input'];
|
|
2819
|
+
};
|
|
2820
|
+
export type QueryTokenArgs = {
|
|
2821
|
+
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
2822
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2823
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2824
|
+
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
2825
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
2826
|
+
};
|
|
2827
|
+
export type QueryToken_AggregateArgs = {
|
|
2828
|
+
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
2829
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2830
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2831
|
+
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
2832
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
2833
|
+
};
|
|
2834
|
+
export type QueryToken_By_PkArgs = {
|
|
2835
|
+
id: Scalars['String']['input'];
|
|
2836
|
+
};
|
|
2837
|
+
export type Query_MetaArgs = {
|
|
2838
|
+
distinct_on?: InputMaybe<Array<_Meta_Select_Column>>;
|
|
2839
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2840
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2841
|
+
order_by?: InputMaybe<Array<_Meta_Order_By>>;
|
|
2842
|
+
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
2843
|
+
};
|
|
2844
|
+
export type QueryChain_MetadataArgs = {
|
|
2845
|
+
distinct_on?: InputMaybe<Array<Chain_Metadata_Select_Column>>;
|
|
2846
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2847
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2848
|
+
order_by?: InputMaybe<Array<Chain_Metadata_Order_By>>;
|
|
2849
|
+
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
2850
|
+
};
|
|
2851
|
+
export type QueryFilterPairsArgs = {
|
|
2852
|
+
filters?: InputMaybe<PairFilters>;
|
|
2853
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2854
|
+
matchTokens?: InputMaybe<PairFilterMatchTokens>;
|
|
2855
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2856
|
+
pairs?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2857
|
+
phrase?: InputMaybe<Scalars['String']['input']>;
|
|
2858
|
+
rankings?: InputMaybe<Array<InputMaybe<PairRanking>>>;
|
|
2859
|
+
statsType?: InputMaybe<TokenPairStatisticsType>;
|
|
2860
|
+
};
|
|
2861
|
+
export type QueryRaw_EventsArgs = {
|
|
2862
|
+
distinct_on?: InputMaybe<Array<Raw_Events_Select_Column>>;
|
|
2863
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2864
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2865
|
+
order_by?: InputMaybe<Array<Raw_Events_Order_By>>;
|
|
2866
|
+
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
2867
|
+
};
|
|
2868
|
+
export type QueryRaw_Events_By_PkArgs = {
|
|
2869
|
+
serial: Scalars['Int']['input'];
|
|
2870
|
+
};
|
|
2871
|
+
export declare enum RankingDirection {
|
|
2872
|
+
Asc = "ASC",
|
|
2873
|
+
Desc = "DESC"
|
|
2874
|
+
}
|
|
2875
|
+
export type SocialLinks = {
|
|
2876
|
+
__typename?: 'SocialLinks';
|
|
2877
|
+
bitcointalk?: Maybe<Scalars['String']['output']>;
|
|
2878
|
+
blog?: Maybe<Scalars['String']['output']>;
|
|
2879
|
+
coingecko?: Maybe<Scalars['String']['output']>;
|
|
2880
|
+
coinmarketcap?: Maybe<Scalars['String']['output']>;
|
|
2881
|
+
discord?: Maybe<Scalars['String']['output']>;
|
|
2882
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2883
|
+
facebook?: Maybe<Scalars['String']['output']>;
|
|
2884
|
+
github?: Maybe<Scalars['String']['output']>;
|
|
2885
|
+
instagram?: Maybe<Scalars['String']['output']>;
|
|
2886
|
+
linkedin?: Maybe<Scalars['String']['output']>;
|
|
2887
|
+
reddit?: Maybe<Scalars['String']['output']>;
|
|
2888
|
+
slack?: Maybe<Scalars['String']['output']>;
|
|
2889
|
+
telegram?: Maybe<Scalars['String']['output']>;
|
|
2890
|
+
twitch?: Maybe<Scalars['String']['output']>;
|
|
2891
|
+
twitter?: Maybe<Scalars['String']['output']>;
|
|
2892
|
+
website?: Maybe<Scalars['String']['output']>;
|
|
2893
|
+
wechat?: Maybe<Scalars['String']['output']>;
|
|
2894
|
+
whitepaper?: Maybe<Scalars['String']['output']>;
|
|
2895
|
+
youtube?: Maybe<Scalars['String']['output']>;
|
|
2362
2896
|
};
|
|
2363
2897
|
export type String_Array_Comparison_Exp = {
|
|
2364
2898
|
_contained_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -2394,72 +2928,296 @@ export type String_Comparison_Exp = {
|
|
|
2394
2928
|
_regex?: InputMaybe<Scalars['String']['input']>;
|
|
2395
2929
|
_similar?: InputMaybe<Scalars['String']['input']>;
|
|
2396
2930
|
};
|
|
2397
|
-
export type
|
|
2398
|
-
__typename?: '
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2931
|
+
export type Subscription = {
|
|
2932
|
+
__typename?: 'Subscription';
|
|
2933
|
+
Asset: Array<Asset>;
|
|
2934
|
+
Asset_by_pk?: Maybe<Asset>;
|
|
2935
|
+
Asset_stream: Array<Asset>;
|
|
2936
|
+
AuctionPool: Array<AuctionPool>;
|
|
2937
|
+
AuctionPool_Bid: Array<AuctionPool_Bid>;
|
|
2938
|
+
AuctionPool_Bid_by_pk?: Maybe<AuctionPool_Bid>;
|
|
2939
|
+
AuctionPool_Bid_stream: Array<AuctionPool_Bid>;
|
|
2940
|
+
AuctionPool_Swap: Array<AuctionPool_Swap>;
|
|
2941
|
+
AuctionPool_Swap_by_pk?: Maybe<AuctionPool_Swap>;
|
|
2942
|
+
AuctionPool_Swap_stream: Array<AuctionPool_Swap>;
|
|
2943
|
+
AuctionPool_by_pk?: Maybe<AuctionPool>;
|
|
2944
|
+
AuctionPool_stream: Array<AuctionPool>;
|
|
2945
|
+
CCA_Checkpoint: Array<Cca_Checkpoint>;
|
|
2946
|
+
CCA_Checkpoint_by_pk?: Maybe<Cca_Checkpoint>;
|
|
2947
|
+
CCA_Checkpoint_stream: Array<Cca_Checkpoint>;
|
|
2948
|
+
GraduationPool: Array<GraduationPool>;
|
|
2949
|
+
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
2950
|
+
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
2951
|
+
GraduationPool_Swap_stream: Array<GraduationPool_Swap>;
|
|
2952
|
+
GraduationPool_by_pk?: Maybe<GraduationPool>;
|
|
2953
|
+
GraduationPool_stream: Array<GraduationPool>;
|
|
2954
|
+
Token: Array<Token>;
|
|
2955
|
+
Token_aggregate: Token_Aggregate;
|
|
2956
|
+
Token_by_pk?: Maybe<Token>;
|
|
2957
|
+
Token_stream: Array<Token>;
|
|
2958
|
+
_meta: Array<_Meta>;
|
|
2959
|
+
_meta_stream: Array<_Meta>;
|
|
2960
|
+
chain_metadata: Array<Chain_Metadata>;
|
|
2961
|
+
chain_metadata_stream: Array<Chain_Metadata>;
|
|
2962
|
+
raw_events: Array<Raw_Events>;
|
|
2963
|
+
raw_events_by_pk?: Maybe<Raw_Events>;
|
|
2964
|
+
raw_events_stream: Array<Raw_Events>;
|
|
2423
2965
|
};
|
|
2424
|
-
export type
|
|
2425
|
-
distinct_on?: InputMaybe<Array<
|
|
2966
|
+
export type SubscriptionAssetArgs = {
|
|
2967
|
+
distinct_on?: InputMaybe<Array<Asset_Select_Column>>;
|
|
2426
2968
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2427
2969
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2428
|
-
order_by?: InputMaybe<Array<
|
|
2429
|
-
where?: InputMaybe<
|
|
2970
|
+
order_by?: InputMaybe<Array<Asset_Order_By>>;
|
|
2971
|
+
where?: InputMaybe<Asset_Bool_Exp>;
|
|
2430
2972
|
};
|
|
2431
|
-
export type
|
|
2973
|
+
export type SubscriptionAsset_By_PkArgs = {
|
|
2974
|
+
id: Scalars['String']['input'];
|
|
2975
|
+
};
|
|
2976
|
+
export type SubscriptionAsset_StreamArgs = {
|
|
2977
|
+
batch_size: Scalars['Int']['input'];
|
|
2978
|
+
cursor: Array<InputMaybe<Asset_Stream_Cursor_Input>>;
|
|
2979
|
+
where?: InputMaybe<Asset_Bool_Exp>;
|
|
2980
|
+
};
|
|
2981
|
+
export type SubscriptionAuctionPoolArgs = {
|
|
2432
2982
|
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
2433
2983
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2434
2984
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2435
2985
|
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
2436
2986
|
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
2437
2987
|
};
|
|
2438
|
-
export type
|
|
2439
|
-
distinct_on?: InputMaybe<Array<
|
|
2988
|
+
export type SubscriptionAuctionPool_BidArgs = {
|
|
2989
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Bid_Select_Column>>;
|
|
2440
2990
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2441
2991
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2442
|
-
order_by?: InputMaybe<Array<
|
|
2443
|
-
where?: InputMaybe<
|
|
2992
|
+
order_by?: InputMaybe<Array<AuctionPool_Bid_Order_By>>;
|
|
2993
|
+
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
2444
2994
|
};
|
|
2445
|
-
export type
|
|
2446
|
-
|
|
2995
|
+
export type SubscriptionAuctionPool_Bid_By_PkArgs = {
|
|
2996
|
+
id: Scalars['String']['input'];
|
|
2997
|
+
};
|
|
2998
|
+
export type SubscriptionAuctionPool_Bid_StreamArgs = {
|
|
2999
|
+
batch_size: Scalars['Int']['input'];
|
|
3000
|
+
cursor: Array<InputMaybe<AuctionPool_Bid_Stream_Cursor_Input>>;
|
|
3001
|
+
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
3002
|
+
};
|
|
3003
|
+
export type SubscriptionAuctionPool_SwapArgs = {
|
|
3004
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Swap_Select_Column>>;
|
|
2447
3005
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2448
3006
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2449
|
-
order_by?: InputMaybe<Array<
|
|
2450
|
-
where?: InputMaybe<
|
|
3007
|
+
order_by?: InputMaybe<Array<AuctionPool_Swap_Order_By>>;
|
|
3008
|
+
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
2451
3009
|
};
|
|
2452
|
-
export type
|
|
2453
|
-
|
|
3010
|
+
export type SubscriptionAuctionPool_Swap_By_PkArgs = {
|
|
3011
|
+
id: Scalars['String']['input'];
|
|
2454
3012
|
};
|
|
2455
|
-
export type
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
3013
|
+
export type SubscriptionAuctionPool_Swap_StreamArgs = {
|
|
3014
|
+
batch_size: Scalars['Int']['input'];
|
|
3015
|
+
cursor: Array<InputMaybe<AuctionPool_Swap_Stream_Cursor_Input>>;
|
|
3016
|
+
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
2459
3017
|
};
|
|
2460
|
-
export type
|
|
2461
|
-
|
|
2462
|
-
|
|
3018
|
+
export type SubscriptionAuctionPool_By_PkArgs = {
|
|
3019
|
+
id: Scalars['String']['input'];
|
|
3020
|
+
};
|
|
3021
|
+
export type SubscriptionAuctionPool_StreamArgs = {
|
|
3022
|
+
batch_size: Scalars['Int']['input'];
|
|
3023
|
+
cursor: Array<InputMaybe<AuctionPool_Stream_Cursor_Input>>;
|
|
3024
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3025
|
+
};
|
|
3026
|
+
export type SubscriptionCca_CheckpointArgs = {
|
|
3027
|
+
distinct_on?: InputMaybe<Array<Cca_Checkpoint_Select_Column>>;
|
|
3028
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3029
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3030
|
+
order_by?: InputMaybe<Array<Cca_Checkpoint_Order_By>>;
|
|
3031
|
+
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
3032
|
+
};
|
|
3033
|
+
export type SubscriptionCca_Checkpoint_By_PkArgs = {
|
|
3034
|
+
id: Scalars['String']['input'];
|
|
3035
|
+
};
|
|
3036
|
+
export type SubscriptionCca_Checkpoint_StreamArgs = {
|
|
3037
|
+
batch_size: Scalars['Int']['input'];
|
|
3038
|
+
cursor: Array<InputMaybe<Cca_Checkpoint_Stream_Cursor_Input>>;
|
|
3039
|
+
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
3040
|
+
};
|
|
3041
|
+
export type SubscriptionGraduationPoolArgs = {
|
|
3042
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
3043
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3044
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3045
|
+
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
3046
|
+
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3047
|
+
};
|
|
3048
|
+
export type SubscriptionGraduationPool_SwapArgs = {
|
|
3049
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Swap_Select_Column>>;
|
|
3050
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3051
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3052
|
+
order_by?: InputMaybe<Array<GraduationPool_Swap_Order_By>>;
|
|
3053
|
+
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
3054
|
+
};
|
|
3055
|
+
export type SubscriptionGraduationPool_Swap_By_PkArgs = {
|
|
3056
|
+
id: Scalars['String']['input'];
|
|
3057
|
+
};
|
|
3058
|
+
export type SubscriptionGraduationPool_Swap_StreamArgs = {
|
|
3059
|
+
batch_size: Scalars['Int']['input'];
|
|
3060
|
+
cursor: Array<InputMaybe<GraduationPool_Swap_Stream_Cursor_Input>>;
|
|
3061
|
+
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
3062
|
+
};
|
|
3063
|
+
export type SubscriptionGraduationPool_By_PkArgs = {
|
|
3064
|
+
id: Scalars['String']['input'];
|
|
3065
|
+
};
|
|
3066
|
+
export type SubscriptionGraduationPool_StreamArgs = {
|
|
3067
|
+
batch_size: Scalars['Int']['input'];
|
|
3068
|
+
cursor: Array<InputMaybe<GraduationPool_Stream_Cursor_Input>>;
|
|
3069
|
+
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3070
|
+
};
|
|
3071
|
+
export type SubscriptionTokenArgs = {
|
|
3072
|
+
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3073
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3074
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3075
|
+
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3076
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
3077
|
+
};
|
|
3078
|
+
export type SubscriptionToken_AggregateArgs = {
|
|
3079
|
+
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3080
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3081
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3082
|
+
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3083
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
3084
|
+
};
|
|
3085
|
+
export type SubscriptionToken_By_PkArgs = {
|
|
3086
|
+
id: Scalars['String']['input'];
|
|
3087
|
+
};
|
|
3088
|
+
export type SubscriptionToken_StreamArgs = {
|
|
3089
|
+
batch_size: Scalars['Int']['input'];
|
|
3090
|
+
cursor: Array<InputMaybe<Token_Stream_Cursor_Input>>;
|
|
3091
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
3092
|
+
};
|
|
3093
|
+
export type Subscription_MetaArgs = {
|
|
3094
|
+
distinct_on?: InputMaybe<Array<_Meta_Select_Column>>;
|
|
3095
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3096
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3097
|
+
order_by?: InputMaybe<Array<_Meta_Order_By>>;
|
|
3098
|
+
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
3099
|
+
};
|
|
3100
|
+
export type Subscription_Meta_StreamArgs = {
|
|
3101
|
+
batch_size: Scalars['Int']['input'];
|
|
3102
|
+
cursor: Array<InputMaybe<_Meta_Stream_Cursor_Input>>;
|
|
3103
|
+
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
3104
|
+
};
|
|
3105
|
+
export type SubscriptionChain_MetadataArgs = {
|
|
3106
|
+
distinct_on?: InputMaybe<Array<Chain_Metadata_Select_Column>>;
|
|
3107
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3108
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3109
|
+
order_by?: InputMaybe<Array<Chain_Metadata_Order_By>>;
|
|
3110
|
+
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
3111
|
+
};
|
|
3112
|
+
export type SubscriptionChain_Metadata_StreamArgs = {
|
|
3113
|
+
batch_size: Scalars['Int']['input'];
|
|
3114
|
+
cursor: Array<InputMaybe<Chain_Metadata_Stream_Cursor_Input>>;
|
|
3115
|
+
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
3116
|
+
};
|
|
3117
|
+
export type SubscriptionRaw_EventsArgs = {
|
|
3118
|
+
distinct_on?: InputMaybe<Array<Raw_Events_Select_Column>>;
|
|
3119
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3120
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3121
|
+
order_by?: InputMaybe<Array<Raw_Events_Order_By>>;
|
|
3122
|
+
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
3123
|
+
};
|
|
3124
|
+
export type SubscriptionRaw_Events_By_PkArgs = {
|
|
3125
|
+
serial: Scalars['Int']['input'];
|
|
3126
|
+
};
|
|
3127
|
+
export type SubscriptionRaw_Events_StreamArgs = {
|
|
3128
|
+
batch_size: Scalars['Int']['input'];
|
|
3129
|
+
cursor: Array<InputMaybe<Raw_Events_Stream_Cursor_Input>>;
|
|
3130
|
+
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
3131
|
+
};
|
|
3132
|
+
export type Token = {
|
|
3133
|
+
__typename?: 'Token';
|
|
3134
|
+
auction_pools_as_base: Array<AuctionPool>;
|
|
3135
|
+
auction_pools_as_quote: Array<AuctionPool>;
|
|
3136
|
+
chain_id: Scalars['Int']['output'];
|
|
3137
|
+
graduation_pools_as_base: Array<GraduationPool>;
|
|
3138
|
+
graduation_pools_as_quote: Array<GraduationPool>;
|
|
3139
|
+
id: Scalars['String']['output'];
|
|
3140
|
+
integrator_address: Scalars['String']['output'];
|
|
3141
|
+
token_address: Scalars['String']['output'];
|
|
3142
|
+
token_creation_block: Scalars['numeric']['output'];
|
|
3143
|
+
token_creation_timestamp: Scalars['timestamptz']['output'];
|
|
3144
|
+
token_creator_address: Scalars['String']['output'];
|
|
3145
|
+
token_decimals: Scalars['Int']['output'];
|
|
3146
|
+
token_description?: Maybe<Scalars['String']['output']>;
|
|
3147
|
+
token_fee_receiver_address?: Maybe<Scalars['String']['output']>;
|
|
3148
|
+
token_image_public_url?: Maybe<Scalars['String']['output']>;
|
|
3149
|
+
token_image_uri?: Maybe<Scalars['String']['output']>;
|
|
3150
|
+
token_name: Scalars['String']['output'];
|
|
3151
|
+
token_numeraire_address: Scalars['String']['output'];
|
|
3152
|
+
token_symbol: Scalars['String']['output'];
|
|
3153
|
+
token_total_supply: Scalars['numeric']['output'];
|
|
3154
|
+
token_type: Scalars['String']['output'];
|
|
3155
|
+
token_uri: Scalars['String']['output'];
|
|
3156
|
+
token_uri_data?: Maybe<Scalars['jsonb']['output']>;
|
|
3157
|
+
token_vesting_recipient_addresses: Array<Scalars['String']['output']>;
|
|
3158
|
+
};
|
|
3159
|
+
export type TokenAuction_Pools_As_BaseArgs = {
|
|
3160
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
3161
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3162
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3163
|
+
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
3164
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3165
|
+
};
|
|
3166
|
+
export type TokenAuction_Pools_As_QuoteArgs = {
|
|
3167
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
3168
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3169
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3170
|
+
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
3171
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3172
|
+
};
|
|
3173
|
+
export type TokenGraduation_Pools_As_BaseArgs = {
|
|
3174
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
3175
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3176
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3177
|
+
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
3178
|
+
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3179
|
+
};
|
|
3180
|
+
export type TokenGraduation_Pools_As_QuoteArgs = {
|
|
3181
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
3182
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3183
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3184
|
+
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
3185
|
+
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3186
|
+
};
|
|
3187
|
+
export type TokenToken_Uri_DataArgs = {
|
|
3188
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
3189
|
+
};
|
|
3190
|
+
export type TokenInfo = {
|
|
3191
|
+
__typename?: 'TokenInfo';
|
|
3192
|
+
address: Scalars['String']['output'];
|
|
3193
|
+
circulatingSupply?: Maybe<Scalars['String']['output']>;
|
|
3194
|
+
cmcId?: Maybe<Scalars['Int']['output']>;
|
|
3195
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3196
|
+
id: Scalars['String']['output'];
|
|
3197
|
+
imageBannerUrl?: Maybe<Scalars['String']['output']>;
|
|
3198
|
+
imageLargeUrl?: Maybe<Scalars['String']['output']>;
|
|
3199
|
+
imageSmallUrl?: Maybe<Scalars['String']['output']>;
|
|
3200
|
+
imageThumbHash?: Maybe<Scalars['String']['output']>;
|
|
3201
|
+
imageThumbUrl?: Maybe<Scalars['String']['output']>;
|
|
3202
|
+
isScam?: Maybe<Scalars['Boolean']['output']>;
|
|
3203
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3204
|
+
networkId: Scalars['Int']['output'];
|
|
3205
|
+
symbol: Scalars['String']['output'];
|
|
3206
|
+
totalSupply?: Maybe<Scalars['String']['output']>;
|
|
3207
|
+
videoExternalUrl?: Maybe<Scalars['String']['output']>;
|
|
3208
|
+
};
|
|
3209
|
+
export declare enum TokenPairStatisticsType {
|
|
3210
|
+
Filtered = "FILTERED",
|
|
3211
|
+
Unfiltered = "UNFILTERED"
|
|
3212
|
+
}
|
|
3213
|
+
export type Token_Aggregate = {
|
|
3214
|
+
__typename?: 'Token_aggregate';
|
|
3215
|
+
aggregate?: Maybe<Token_Aggregate_Fields>;
|
|
3216
|
+
nodes: Array<Token>;
|
|
3217
|
+
};
|
|
3218
|
+
export type Token_Aggregate_Fields = {
|
|
3219
|
+
__typename?: 'Token_aggregate_fields';
|
|
3220
|
+
avg?: Maybe<Token_Avg_Fields>;
|
|
2463
3221
|
count: Scalars['Int']['output'];
|
|
2464
3222
|
max?: Maybe<Token_Max_Fields>;
|
|
2465
3223
|
min?: Maybe<Token_Min_Fields>;
|
|
@@ -2678,51 +3436,12 @@ export type Token_Variance_Fields = {
|
|
|
2678
3436
|
token_decimals?: Maybe<Scalars['Float']['output']>;
|
|
2679
3437
|
token_total_supply?: Maybe<Scalars['Float']['output']>;
|
|
2680
3438
|
};
|
|
2681
|
-
export type
|
|
2682
|
-
__typename?: '
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
chain_id: Scalars['Int']['output'];
|
|
2688
|
-
id: Scalars['String']['output'];
|
|
2689
|
-
};
|
|
2690
|
-
export type UserAsset_Bool_Exp = {
|
|
2691
|
-
_and?: InputMaybe<Array<UserAsset_Bool_Exp>>;
|
|
2692
|
-
_not?: InputMaybe<UserAsset_Bool_Exp>;
|
|
2693
|
-
_or?: InputMaybe<Array<UserAsset_Bool_Exp>>;
|
|
2694
|
-
address?: InputMaybe<String_Comparison_Exp>;
|
|
2695
|
-
asset?: InputMaybe<Asset_Bool_Exp>;
|
|
2696
|
-
asset_id?: InputMaybe<String_Comparison_Exp>;
|
|
2697
|
-
balance?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2698
|
-
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
2699
|
-
id?: InputMaybe<String_Comparison_Exp>;
|
|
2700
|
-
};
|
|
2701
|
-
export type UserAsset_Order_By = {
|
|
2702
|
-
address?: InputMaybe<Order_By>;
|
|
2703
|
-
asset?: InputMaybe<Asset_Order_By>;
|
|
2704
|
-
asset_id?: InputMaybe<Order_By>;
|
|
2705
|
-
balance?: InputMaybe<Order_By>;
|
|
2706
|
-
chain_id?: InputMaybe<Order_By>;
|
|
2707
|
-
id?: InputMaybe<Order_By>;
|
|
2708
|
-
};
|
|
2709
|
-
export declare enum UserAsset_Select_Column {
|
|
2710
|
-
Address = "address",
|
|
2711
|
-
AssetId = "asset_id",
|
|
2712
|
-
Balance = "balance",
|
|
2713
|
-
ChainId = "chain_id",
|
|
2714
|
-
Id = "id"
|
|
2715
|
-
}
|
|
2716
|
-
export type UserAsset_Stream_Cursor_Input = {
|
|
2717
|
-
initial_value: UserAsset_Stream_Cursor_Value_Input;
|
|
2718
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
2719
|
-
};
|
|
2720
|
-
export type UserAsset_Stream_Cursor_Value_Input = {
|
|
2721
|
-
address?: InputMaybe<Scalars['String']['input']>;
|
|
2722
|
-
asset_id?: InputMaybe<Scalars['String']['input']>;
|
|
2723
|
-
balance?: InputMaybe<Scalars['numeric']['input']>;
|
|
2724
|
-
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
2725
|
-
id?: InputMaybe<Scalars['String']['input']>;
|
|
3439
|
+
export type UniswapV4Data = {
|
|
3440
|
+
__typename?: 'UniswapV4Data';
|
|
3441
|
+
isDynamicFee?: Maybe<Scalars['Boolean']['output']>;
|
|
3442
|
+
isToken0NetworkToken?: Maybe<Scalars['Boolean']['output']>;
|
|
3443
|
+
type: Scalars['String']['output'];
|
|
3444
|
+
uniswapV4HookAddress?: Maybe<Scalars['String']['output']>;
|
|
2726
3445
|
};
|
|
2727
3446
|
export type _Meta = {
|
|
2728
3447
|
__typename?: '_meta';
|
|
@@ -2880,6 +3599,10 @@ export type Float8_Comparison_Exp = {
|
|
|
2880
3599
|
_neq?: InputMaybe<Scalars['float8']['input']>;
|
|
2881
3600
|
_nin?: InputMaybe<Array<Scalars['float8']['input']>>;
|
|
2882
3601
|
};
|
|
3602
|
+
export declare enum Join__Graph {
|
|
3603
|
+
Codex = "CODEX",
|
|
3604
|
+
Indexer = "INDEXER"
|
|
3605
|
+
}
|
|
2883
3606
|
export type Jsonb_Cast_Exp = {
|
|
2884
3607
|
String?: InputMaybe<String_Comparison_Exp>;
|
|
2885
3608
|
};
|
|
@@ -2900,6 +3623,10 @@ export type Jsonb_Comparison_Exp = {
|
|
|
2900
3623
|
_neq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2901
3624
|
_nin?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
2902
3625
|
};
|
|
3626
|
+
export declare enum Link__Purpose {
|
|
3627
|
+
Execution = "EXECUTION",
|
|
3628
|
+
Security = "SECURITY"
|
|
3629
|
+
}
|
|
2903
3630
|
export type Numeric_Comparison_Exp = {
|
|
2904
3631
|
_eq?: InputMaybe<Scalars['numeric']['input']>;
|
|
2905
3632
|
_gt?: InputMaybe<Scalars['numeric']['input']>;
|
|
@@ -2919,165 +3646,6 @@ export declare enum Order_By {
|
|
|
2919
3646
|
DescNullsFirst = "desc_nulls_first",
|
|
2920
3647
|
DescNullsLast = "desc_nulls_last"
|
|
2921
3648
|
}
|
|
2922
|
-
export type Query_Root = {
|
|
2923
|
-
__typename?: 'query_root';
|
|
2924
|
-
Asset: Array<Asset>;
|
|
2925
|
-
Asset_by_pk?: Maybe<Asset>;
|
|
2926
|
-
AuctionPool: Array<AuctionPool>;
|
|
2927
|
-
AuctionPool_Bid: Array<AuctionPool_Bid>;
|
|
2928
|
-
AuctionPool_Bid_by_pk?: Maybe<AuctionPool_Bid>;
|
|
2929
|
-
AuctionPool_Swap: Array<AuctionPool_Swap>;
|
|
2930
|
-
AuctionPool_Swap_by_pk?: Maybe<AuctionPool_Swap>;
|
|
2931
|
-
AuctionPool_by_pk?: Maybe<AuctionPool>;
|
|
2932
|
-
CCA_Checkpoint: Array<Cca_Checkpoint>;
|
|
2933
|
-
CCA_Checkpoint_by_pk?: Maybe<Cca_Checkpoint>;
|
|
2934
|
-
GraduationPool: Array<GraduationPool>;
|
|
2935
|
-
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
2936
|
-
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
2937
|
-
GraduationPool_by_pk?: Maybe<GraduationPool>;
|
|
2938
|
-
NumeraireMarketData: Array<NumeraireMarketData>;
|
|
2939
|
-
NumeraireMarketData_by_pk?: Maybe<NumeraireMarketData>;
|
|
2940
|
-
Token: Array<Token>;
|
|
2941
|
-
Token_aggregate: Token_Aggregate;
|
|
2942
|
-
Token_by_pk?: Maybe<Token>;
|
|
2943
|
-
UserAsset: Array<UserAsset>;
|
|
2944
|
-
UserAsset_by_pk?: Maybe<UserAsset>;
|
|
2945
|
-
_meta: Array<_Meta>;
|
|
2946
|
-
chain_metadata: Array<Chain_Metadata>;
|
|
2947
|
-
raw_events: Array<Raw_Events>;
|
|
2948
|
-
raw_events_by_pk?: Maybe<Raw_Events>;
|
|
2949
|
-
};
|
|
2950
|
-
export type Query_RootAssetArgs = {
|
|
2951
|
-
distinct_on?: InputMaybe<Array<Asset_Select_Column>>;
|
|
2952
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2953
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2954
|
-
order_by?: InputMaybe<Array<Asset_Order_By>>;
|
|
2955
|
-
where?: InputMaybe<Asset_Bool_Exp>;
|
|
2956
|
-
};
|
|
2957
|
-
export type Query_RootAsset_By_PkArgs = {
|
|
2958
|
-
id: Scalars['String']['input'];
|
|
2959
|
-
};
|
|
2960
|
-
export type Query_RootAuctionPoolArgs = {
|
|
2961
|
-
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
2962
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2963
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2964
|
-
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
2965
|
-
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
2966
|
-
};
|
|
2967
|
-
export type Query_RootAuctionPool_BidArgs = {
|
|
2968
|
-
distinct_on?: InputMaybe<Array<AuctionPool_Bid_Select_Column>>;
|
|
2969
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2970
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2971
|
-
order_by?: InputMaybe<Array<AuctionPool_Bid_Order_By>>;
|
|
2972
|
-
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
2973
|
-
};
|
|
2974
|
-
export type Query_RootAuctionPool_Bid_By_PkArgs = {
|
|
2975
|
-
id: Scalars['String']['input'];
|
|
2976
|
-
};
|
|
2977
|
-
export type Query_RootAuctionPool_SwapArgs = {
|
|
2978
|
-
distinct_on?: InputMaybe<Array<AuctionPool_Swap_Select_Column>>;
|
|
2979
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2980
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2981
|
-
order_by?: InputMaybe<Array<AuctionPool_Swap_Order_By>>;
|
|
2982
|
-
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
2983
|
-
};
|
|
2984
|
-
export type Query_RootAuctionPool_Swap_By_PkArgs = {
|
|
2985
|
-
id: Scalars['String']['input'];
|
|
2986
|
-
};
|
|
2987
|
-
export type Query_RootAuctionPool_By_PkArgs = {
|
|
2988
|
-
id: Scalars['String']['input'];
|
|
2989
|
-
};
|
|
2990
|
-
export type Query_RootCca_CheckpointArgs = {
|
|
2991
|
-
distinct_on?: InputMaybe<Array<Cca_Checkpoint_Select_Column>>;
|
|
2992
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2993
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2994
|
-
order_by?: InputMaybe<Array<Cca_Checkpoint_Order_By>>;
|
|
2995
|
-
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
2996
|
-
};
|
|
2997
|
-
export type Query_RootCca_Checkpoint_By_PkArgs = {
|
|
2998
|
-
id: Scalars['String']['input'];
|
|
2999
|
-
};
|
|
3000
|
-
export type Query_RootGraduationPoolArgs = {
|
|
3001
|
-
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
3002
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3003
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3004
|
-
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
3005
|
-
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3006
|
-
};
|
|
3007
|
-
export type Query_RootGraduationPool_SwapArgs = {
|
|
3008
|
-
distinct_on?: InputMaybe<Array<GraduationPool_Swap_Select_Column>>;
|
|
3009
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3010
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3011
|
-
order_by?: InputMaybe<Array<GraduationPool_Swap_Order_By>>;
|
|
3012
|
-
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
3013
|
-
};
|
|
3014
|
-
export type Query_RootGraduationPool_Swap_By_PkArgs = {
|
|
3015
|
-
id: Scalars['String']['input'];
|
|
3016
|
-
};
|
|
3017
|
-
export type Query_RootGraduationPool_By_PkArgs = {
|
|
3018
|
-
id: Scalars['String']['input'];
|
|
3019
|
-
};
|
|
3020
|
-
export type Query_RootNumeraireMarketDataArgs = {
|
|
3021
|
-
distinct_on?: InputMaybe<Array<NumeraireMarketData_Select_Column>>;
|
|
3022
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3023
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3024
|
-
order_by?: InputMaybe<Array<NumeraireMarketData_Order_By>>;
|
|
3025
|
-
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
3026
|
-
};
|
|
3027
|
-
export type Query_RootNumeraireMarketData_By_PkArgs = {
|
|
3028
|
-
id: Scalars['String']['input'];
|
|
3029
|
-
};
|
|
3030
|
-
export type Query_RootTokenArgs = {
|
|
3031
|
-
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3032
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3033
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3034
|
-
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3035
|
-
where?: InputMaybe<Token_Bool_Exp>;
|
|
3036
|
-
};
|
|
3037
|
-
export type Query_RootToken_AggregateArgs = {
|
|
3038
|
-
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3039
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3040
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3041
|
-
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3042
|
-
where?: InputMaybe<Token_Bool_Exp>;
|
|
3043
|
-
};
|
|
3044
|
-
export type Query_RootToken_By_PkArgs = {
|
|
3045
|
-
id: Scalars['String']['input'];
|
|
3046
|
-
};
|
|
3047
|
-
export type Query_RootUserAssetArgs = {
|
|
3048
|
-
distinct_on?: InputMaybe<Array<UserAsset_Select_Column>>;
|
|
3049
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3050
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3051
|
-
order_by?: InputMaybe<Array<UserAsset_Order_By>>;
|
|
3052
|
-
where?: InputMaybe<UserAsset_Bool_Exp>;
|
|
3053
|
-
};
|
|
3054
|
-
export type Query_RootUserAsset_By_PkArgs = {
|
|
3055
|
-
id: Scalars['String']['input'];
|
|
3056
|
-
};
|
|
3057
|
-
export type Query_Root_MetaArgs = {
|
|
3058
|
-
distinct_on?: InputMaybe<Array<_Meta_Select_Column>>;
|
|
3059
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3060
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3061
|
-
order_by?: InputMaybe<Array<_Meta_Order_By>>;
|
|
3062
|
-
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
3063
|
-
};
|
|
3064
|
-
export type Query_RootChain_MetadataArgs = {
|
|
3065
|
-
distinct_on?: InputMaybe<Array<Chain_Metadata_Select_Column>>;
|
|
3066
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3067
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3068
|
-
order_by?: InputMaybe<Array<Chain_Metadata_Order_By>>;
|
|
3069
|
-
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
3070
|
-
};
|
|
3071
|
-
export type Query_RootRaw_EventsArgs = {
|
|
3072
|
-
distinct_on?: InputMaybe<Array<Raw_Events_Select_Column>>;
|
|
3073
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3074
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3075
|
-
order_by?: InputMaybe<Array<Raw_Events_Order_By>>;
|
|
3076
|
-
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
3077
|
-
};
|
|
3078
|
-
export type Query_RootRaw_Events_By_PkArgs = {
|
|
3079
|
-
serial: Scalars['Int']['input'];
|
|
3080
|
-
};
|
|
3081
3649
|
export type Raw_Events = {
|
|
3082
3650
|
__typename?: 'raw_events';
|
|
3083
3651
|
block_fields: Scalars['jsonb']['output'];
|
|
@@ -3170,243 +3738,6 @@ export type Raw_Events_Stream_Cursor_Value_Input = {
|
|
|
3170
3738
|
src_address?: InputMaybe<Scalars['String']['input']>;
|
|
3171
3739
|
transaction_fields?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3172
3740
|
};
|
|
3173
|
-
export type Subscription_Root = {
|
|
3174
|
-
__typename?: 'subscription_root';
|
|
3175
|
-
Asset: Array<Asset>;
|
|
3176
|
-
Asset_by_pk?: Maybe<Asset>;
|
|
3177
|
-
Asset_stream: Array<Asset>;
|
|
3178
|
-
AuctionPool: Array<AuctionPool>;
|
|
3179
|
-
AuctionPool_Bid: Array<AuctionPool_Bid>;
|
|
3180
|
-
AuctionPool_Bid_by_pk?: Maybe<AuctionPool_Bid>;
|
|
3181
|
-
AuctionPool_Bid_stream: Array<AuctionPool_Bid>;
|
|
3182
|
-
AuctionPool_Swap: Array<AuctionPool_Swap>;
|
|
3183
|
-
AuctionPool_Swap_by_pk?: Maybe<AuctionPool_Swap>;
|
|
3184
|
-
AuctionPool_Swap_stream: Array<AuctionPool_Swap>;
|
|
3185
|
-
AuctionPool_by_pk?: Maybe<AuctionPool>;
|
|
3186
|
-
AuctionPool_stream: Array<AuctionPool>;
|
|
3187
|
-
CCA_Checkpoint: Array<Cca_Checkpoint>;
|
|
3188
|
-
CCA_Checkpoint_by_pk?: Maybe<Cca_Checkpoint>;
|
|
3189
|
-
CCA_Checkpoint_stream: Array<Cca_Checkpoint>;
|
|
3190
|
-
GraduationPool: Array<GraduationPool>;
|
|
3191
|
-
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
3192
|
-
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
3193
|
-
GraduationPool_Swap_stream: Array<GraduationPool_Swap>;
|
|
3194
|
-
GraduationPool_by_pk?: Maybe<GraduationPool>;
|
|
3195
|
-
GraduationPool_stream: Array<GraduationPool>;
|
|
3196
|
-
NumeraireMarketData: Array<NumeraireMarketData>;
|
|
3197
|
-
NumeraireMarketData_by_pk?: Maybe<NumeraireMarketData>;
|
|
3198
|
-
NumeraireMarketData_stream: Array<NumeraireMarketData>;
|
|
3199
|
-
Token: Array<Token>;
|
|
3200
|
-
Token_aggregate: Token_Aggregate;
|
|
3201
|
-
Token_by_pk?: Maybe<Token>;
|
|
3202
|
-
Token_stream: Array<Token>;
|
|
3203
|
-
UserAsset: Array<UserAsset>;
|
|
3204
|
-
UserAsset_by_pk?: Maybe<UserAsset>;
|
|
3205
|
-
UserAsset_stream: Array<UserAsset>;
|
|
3206
|
-
_meta: Array<_Meta>;
|
|
3207
|
-
_meta_stream: Array<_Meta>;
|
|
3208
|
-
chain_metadata: Array<Chain_Metadata>;
|
|
3209
|
-
chain_metadata_stream: Array<Chain_Metadata>;
|
|
3210
|
-
raw_events: Array<Raw_Events>;
|
|
3211
|
-
raw_events_by_pk?: Maybe<Raw_Events>;
|
|
3212
|
-
raw_events_stream: Array<Raw_Events>;
|
|
3213
|
-
};
|
|
3214
|
-
export type Subscription_RootAssetArgs = {
|
|
3215
|
-
distinct_on?: InputMaybe<Array<Asset_Select_Column>>;
|
|
3216
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3217
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3218
|
-
order_by?: InputMaybe<Array<Asset_Order_By>>;
|
|
3219
|
-
where?: InputMaybe<Asset_Bool_Exp>;
|
|
3220
|
-
};
|
|
3221
|
-
export type Subscription_RootAsset_By_PkArgs = {
|
|
3222
|
-
id: Scalars['String']['input'];
|
|
3223
|
-
};
|
|
3224
|
-
export type Subscription_RootAsset_StreamArgs = {
|
|
3225
|
-
batch_size: Scalars['Int']['input'];
|
|
3226
|
-
cursor: Array<InputMaybe<Asset_Stream_Cursor_Input>>;
|
|
3227
|
-
where?: InputMaybe<Asset_Bool_Exp>;
|
|
3228
|
-
};
|
|
3229
|
-
export type Subscription_RootAuctionPoolArgs = {
|
|
3230
|
-
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
3231
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3232
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3233
|
-
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
3234
|
-
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3235
|
-
};
|
|
3236
|
-
export type Subscription_RootAuctionPool_BidArgs = {
|
|
3237
|
-
distinct_on?: InputMaybe<Array<AuctionPool_Bid_Select_Column>>;
|
|
3238
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3239
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3240
|
-
order_by?: InputMaybe<Array<AuctionPool_Bid_Order_By>>;
|
|
3241
|
-
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
3242
|
-
};
|
|
3243
|
-
export type Subscription_RootAuctionPool_Bid_By_PkArgs = {
|
|
3244
|
-
id: Scalars['String']['input'];
|
|
3245
|
-
};
|
|
3246
|
-
export type Subscription_RootAuctionPool_Bid_StreamArgs = {
|
|
3247
|
-
batch_size: Scalars['Int']['input'];
|
|
3248
|
-
cursor: Array<InputMaybe<AuctionPool_Bid_Stream_Cursor_Input>>;
|
|
3249
|
-
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
3250
|
-
};
|
|
3251
|
-
export type Subscription_RootAuctionPool_SwapArgs = {
|
|
3252
|
-
distinct_on?: InputMaybe<Array<AuctionPool_Swap_Select_Column>>;
|
|
3253
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3254
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3255
|
-
order_by?: InputMaybe<Array<AuctionPool_Swap_Order_By>>;
|
|
3256
|
-
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
3257
|
-
};
|
|
3258
|
-
export type Subscription_RootAuctionPool_Swap_By_PkArgs = {
|
|
3259
|
-
id: Scalars['String']['input'];
|
|
3260
|
-
};
|
|
3261
|
-
export type Subscription_RootAuctionPool_Swap_StreamArgs = {
|
|
3262
|
-
batch_size: Scalars['Int']['input'];
|
|
3263
|
-
cursor: Array<InputMaybe<AuctionPool_Swap_Stream_Cursor_Input>>;
|
|
3264
|
-
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
3265
|
-
};
|
|
3266
|
-
export type Subscription_RootAuctionPool_By_PkArgs = {
|
|
3267
|
-
id: Scalars['String']['input'];
|
|
3268
|
-
};
|
|
3269
|
-
export type Subscription_RootAuctionPool_StreamArgs = {
|
|
3270
|
-
batch_size: Scalars['Int']['input'];
|
|
3271
|
-
cursor: Array<InputMaybe<AuctionPool_Stream_Cursor_Input>>;
|
|
3272
|
-
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3273
|
-
};
|
|
3274
|
-
export type Subscription_RootCca_CheckpointArgs = {
|
|
3275
|
-
distinct_on?: InputMaybe<Array<Cca_Checkpoint_Select_Column>>;
|
|
3276
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3277
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3278
|
-
order_by?: InputMaybe<Array<Cca_Checkpoint_Order_By>>;
|
|
3279
|
-
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
3280
|
-
};
|
|
3281
|
-
export type Subscription_RootCca_Checkpoint_By_PkArgs = {
|
|
3282
|
-
id: Scalars['String']['input'];
|
|
3283
|
-
};
|
|
3284
|
-
export type Subscription_RootCca_Checkpoint_StreamArgs = {
|
|
3285
|
-
batch_size: Scalars['Int']['input'];
|
|
3286
|
-
cursor: Array<InputMaybe<Cca_Checkpoint_Stream_Cursor_Input>>;
|
|
3287
|
-
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
3288
|
-
};
|
|
3289
|
-
export type Subscription_RootGraduationPoolArgs = {
|
|
3290
|
-
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
3291
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3292
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3293
|
-
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
3294
|
-
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3295
|
-
};
|
|
3296
|
-
export type Subscription_RootGraduationPool_SwapArgs = {
|
|
3297
|
-
distinct_on?: InputMaybe<Array<GraduationPool_Swap_Select_Column>>;
|
|
3298
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3299
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3300
|
-
order_by?: InputMaybe<Array<GraduationPool_Swap_Order_By>>;
|
|
3301
|
-
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
3302
|
-
};
|
|
3303
|
-
export type Subscription_RootGraduationPool_Swap_By_PkArgs = {
|
|
3304
|
-
id: Scalars['String']['input'];
|
|
3305
|
-
};
|
|
3306
|
-
export type Subscription_RootGraduationPool_Swap_StreamArgs = {
|
|
3307
|
-
batch_size: Scalars['Int']['input'];
|
|
3308
|
-
cursor: Array<InputMaybe<GraduationPool_Swap_Stream_Cursor_Input>>;
|
|
3309
|
-
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
3310
|
-
};
|
|
3311
|
-
export type Subscription_RootGraduationPool_By_PkArgs = {
|
|
3312
|
-
id: Scalars['String']['input'];
|
|
3313
|
-
};
|
|
3314
|
-
export type Subscription_RootGraduationPool_StreamArgs = {
|
|
3315
|
-
batch_size: Scalars['Int']['input'];
|
|
3316
|
-
cursor: Array<InputMaybe<GraduationPool_Stream_Cursor_Input>>;
|
|
3317
|
-
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3318
|
-
};
|
|
3319
|
-
export type Subscription_RootNumeraireMarketDataArgs = {
|
|
3320
|
-
distinct_on?: InputMaybe<Array<NumeraireMarketData_Select_Column>>;
|
|
3321
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3322
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3323
|
-
order_by?: InputMaybe<Array<NumeraireMarketData_Order_By>>;
|
|
3324
|
-
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
3325
|
-
};
|
|
3326
|
-
export type Subscription_RootNumeraireMarketData_By_PkArgs = {
|
|
3327
|
-
id: Scalars['String']['input'];
|
|
3328
|
-
};
|
|
3329
|
-
export type Subscription_RootNumeraireMarketData_StreamArgs = {
|
|
3330
|
-
batch_size: Scalars['Int']['input'];
|
|
3331
|
-
cursor: Array<InputMaybe<NumeraireMarketData_Stream_Cursor_Input>>;
|
|
3332
|
-
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
3333
|
-
};
|
|
3334
|
-
export type Subscription_RootTokenArgs = {
|
|
3335
|
-
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3336
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3337
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3338
|
-
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3339
|
-
where?: InputMaybe<Token_Bool_Exp>;
|
|
3340
|
-
};
|
|
3341
|
-
export type Subscription_RootToken_AggregateArgs = {
|
|
3342
|
-
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3343
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3344
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3345
|
-
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3346
|
-
where?: InputMaybe<Token_Bool_Exp>;
|
|
3347
|
-
};
|
|
3348
|
-
export type Subscription_RootToken_By_PkArgs = {
|
|
3349
|
-
id: Scalars['String']['input'];
|
|
3350
|
-
};
|
|
3351
|
-
export type Subscription_RootToken_StreamArgs = {
|
|
3352
|
-
batch_size: Scalars['Int']['input'];
|
|
3353
|
-
cursor: Array<InputMaybe<Token_Stream_Cursor_Input>>;
|
|
3354
|
-
where?: InputMaybe<Token_Bool_Exp>;
|
|
3355
|
-
};
|
|
3356
|
-
export type Subscription_RootUserAssetArgs = {
|
|
3357
|
-
distinct_on?: InputMaybe<Array<UserAsset_Select_Column>>;
|
|
3358
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3359
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3360
|
-
order_by?: InputMaybe<Array<UserAsset_Order_By>>;
|
|
3361
|
-
where?: InputMaybe<UserAsset_Bool_Exp>;
|
|
3362
|
-
};
|
|
3363
|
-
export type Subscription_RootUserAsset_By_PkArgs = {
|
|
3364
|
-
id: Scalars['String']['input'];
|
|
3365
|
-
};
|
|
3366
|
-
export type Subscription_RootUserAsset_StreamArgs = {
|
|
3367
|
-
batch_size: Scalars['Int']['input'];
|
|
3368
|
-
cursor: Array<InputMaybe<UserAsset_Stream_Cursor_Input>>;
|
|
3369
|
-
where?: InputMaybe<UserAsset_Bool_Exp>;
|
|
3370
|
-
};
|
|
3371
|
-
export type Subscription_Root_MetaArgs = {
|
|
3372
|
-
distinct_on?: InputMaybe<Array<_Meta_Select_Column>>;
|
|
3373
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3374
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3375
|
-
order_by?: InputMaybe<Array<_Meta_Order_By>>;
|
|
3376
|
-
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
3377
|
-
};
|
|
3378
|
-
export type Subscription_Root_Meta_StreamArgs = {
|
|
3379
|
-
batch_size: Scalars['Int']['input'];
|
|
3380
|
-
cursor: Array<InputMaybe<_Meta_Stream_Cursor_Input>>;
|
|
3381
|
-
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
3382
|
-
};
|
|
3383
|
-
export type Subscription_RootChain_MetadataArgs = {
|
|
3384
|
-
distinct_on?: InputMaybe<Array<Chain_Metadata_Select_Column>>;
|
|
3385
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3386
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3387
|
-
order_by?: InputMaybe<Array<Chain_Metadata_Order_By>>;
|
|
3388
|
-
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
3389
|
-
};
|
|
3390
|
-
export type Subscription_RootChain_Metadata_StreamArgs = {
|
|
3391
|
-
batch_size: Scalars['Int']['input'];
|
|
3392
|
-
cursor: Array<InputMaybe<Chain_Metadata_Stream_Cursor_Input>>;
|
|
3393
|
-
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
3394
|
-
};
|
|
3395
|
-
export type Subscription_RootRaw_EventsArgs = {
|
|
3396
|
-
distinct_on?: InputMaybe<Array<Raw_Events_Select_Column>>;
|
|
3397
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3398
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3399
|
-
order_by?: InputMaybe<Array<Raw_Events_Order_By>>;
|
|
3400
|
-
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
3401
|
-
};
|
|
3402
|
-
export type Subscription_RootRaw_Events_By_PkArgs = {
|
|
3403
|
-
serial: Scalars['Int']['input'];
|
|
3404
|
-
};
|
|
3405
|
-
export type Subscription_RootRaw_Events_StreamArgs = {
|
|
3406
|
-
batch_size: Scalars['Int']['input'];
|
|
3407
|
-
cursor: Array<InputMaybe<Raw_Events_Stream_Cursor_Input>>;
|
|
3408
|
-
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
3409
|
-
};
|
|
3410
3741
|
export type Timestamptz_Comparison_Exp = {
|
|
3411
3742
|
_eq?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
3412
3743
|
_gt?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
@@ -3437,12 +3768,10 @@ export type AuctionPoolFieldsFragment = {
|
|
|
3437
3768
|
pool_current_price: any;
|
|
3438
3769
|
pool_current_sqrt_price: any;
|
|
3439
3770
|
pool_current_fdv: any;
|
|
3440
|
-
pool_current_fdv_usd?: string | null;
|
|
3441
3771
|
pool_current_liquidity: any;
|
|
3442
3772
|
pool_current_tick: number;
|
|
3443
3773
|
pool_last_epoch?: number | null;
|
|
3444
3774
|
pool_current_market_cap: any;
|
|
3445
|
-
pool_current_market_cap_usd?: string | null;
|
|
3446
3775
|
pool_current_fees_accrued: any;
|
|
3447
3776
|
pool_current_total_proceeds: any;
|
|
3448
3777
|
pool_current_total_tokens_sold: any;
|
|
@@ -3457,6 +3786,16 @@ export type AuctionPoolFieldsFragment = {
|
|
|
3457
3786
|
pool_config_ending_time: any;
|
|
3458
3787
|
pool_migration_timestamp?: any | null;
|
|
3459
3788
|
pool_type: string;
|
|
3789
|
+
pool_market_data?: {
|
|
3790
|
+
__typename?: 'PairFilterResult';
|
|
3791
|
+
liquidity?: string | null;
|
|
3792
|
+
marketCap?: string | null;
|
|
3793
|
+
price?: string | null;
|
|
3794
|
+
priceScale?: string | null;
|
|
3795
|
+
priceChange24?: string | null;
|
|
3796
|
+
volumeChange24?: string | null;
|
|
3797
|
+
volumeUSD24?: string | null;
|
|
3798
|
+
} | null;
|
|
3460
3799
|
base_token?: {
|
|
3461
3800
|
__typename?: 'Token';
|
|
3462
3801
|
token_address: string;
|
|
@@ -3477,14 +3816,22 @@ export type GraduationPoolFieldsFragment = {
|
|
|
3477
3816
|
pool_current_price: any;
|
|
3478
3817
|
pool_current_sqrt_price: any;
|
|
3479
3818
|
pool_current_fdv?: any | null;
|
|
3480
|
-
pool_current_fdv_usd?: string | null;
|
|
3481
3819
|
pool_current_liquidity: any;
|
|
3482
3820
|
pool_current_tick: number;
|
|
3483
3821
|
pool_current_market_cap?: any | null;
|
|
3484
|
-
pool_current_market_cap_usd?: string | null;
|
|
3485
3822
|
pool_address: string;
|
|
3486
3823
|
pool_migration_timestamp?: any | null;
|
|
3487
3824
|
pool_type: string;
|
|
3825
|
+
pool_market_data?: {
|
|
3826
|
+
__typename?: 'PairFilterResult';
|
|
3827
|
+
liquidity?: string | null;
|
|
3828
|
+
marketCap?: string | null;
|
|
3829
|
+
price?: string | null;
|
|
3830
|
+
priceScale?: string | null;
|
|
3831
|
+
priceChange24?: string | null;
|
|
3832
|
+
volumeChange24?: string | null;
|
|
3833
|
+
volumeUSD24?: string | null;
|
|
3834
|
+
} | null;
|
|
3488
3835
|
base_token?: {
|
|
3489
3836
|
__typename?: 'Token';
|
|
3490
3837
|
token_address: string;
|
|
@@ -3512,12 +3859,10 @@ export type AssetFieldsFragment = {
|
|
|
3512
3859
|
pool_current_price: any;
|
|
3513
3860
|
pool_current_sqrt_price: any;
|
|
3514
3861
|
pool_current_fdv: any;
|
|
3515
|
-
pool_current_fdv_usd?: string | null;
|
|
3516
3862
|
pool_current_liquidity: any;
|
|
3517
3863
|
pool_current_tick: number;
|
|
3518
3864
|
pool_last_epoch?: number | null;
|
|
3519
3865
|
pool_current_market_cap: any;
|
|
3520
|
-
pool_current_market_cap_usd?: string | null;
|
|
3521
3866
|
pool_current_fees_accrued: any;
|
|
3522
3867
|
pool_current_total_proceeds: any;
|
|
3523
3868
|
pool_current_total_tokens_sold: any;
|
|
@@ -3532,6 +3877,16 @@ export type AssetFieldsFragment = {
|
|
|
3532
3877
|
pool_config_ending_time: any;
|
|
3533
3878
|
pool_migration_timestamp?: any | null;
|
|
3534
3879
|
pool_type: string;
|
|
3880
|
+
pool_market_data?: {
|
|
3881
|
+
__typename?: 'PairFilterResult';
|
|
3882
|
+
liquidity?: string | null;
|
|
3883
|
+
marketCap?: string | null;
|
|
3884
|
+
price?: string | null;
|
|
3885
|
+
priceScale?: string | null;
|
|
3886
|
+
priceChange24?: string | null;
|
|
3887
|
+
volumeChange24?: string | null;
|
|
3888
|
+
volumeUSD24?: string | null;
|
|
3889
|
+
} | null;
|
|
3535
3890
|
base_token?: {
|
|
3536
3891
|
__typename?: 'Token';
|
|
3537
3892
|
token_address: string;
|
|
@@ -3552,14 +3907,22 @@ export type AssetFieldsFragment = {
|
|
|
3552
3907
|
pool_current_price: any;
|
|
3553
3908
|
pool_current_sqrt_price: any;
|
|
3554
3909
|
pool_current_fdv?: any | null;
|
|
3555
|
-
pool_current_fdv_usd?: string | null;
|
|
3556
3910
|
pool_current_liquidity: any;
|
|
3557
3911
|
pool_current_tick: number;
|
|
3558
3912
|
pool_current_market_cap?: any | null;
|
|
3559
|
-
pool_current_market_cap_usd?: string | null;
|
|
3560
3913
|
pool_address: string;
|
|
3561
3914
|
pool_migration_timestamp?: any | null;
|
|
3562
3915
|
pool_type: string;
|
|
3916
|
+
pool_market_data?: {
|
|
3917
|
+
__typename?: 'PairFilterResult';
|
|
3918
|
+
liquidity?: string | null;
|
|
3919
|
+
marketCap?: string | null;
|
|
3920
|
+
price?: string | null;
|
|
3921
|
+
priceScale?: string | null;
|
|
3922
|
+
priceChange24?: string | null;
|
|
3923
|
+
volumeChange24?: string | null;
|
|
3924
|
+
volumeUSD24?: string | null;
|
|
3925
|
+
} | null;
|
|
3563
3926
|
base_token?: {
|
|
3564
3927
|
__typename?: 'Token';
|
|
3565
3928
|
token_address: string;
|
|
@@ -3587,7 +3950,7 @@ export type ListLiveAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3587
3950
|
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3588
3951
|
}>;
|
|
3589
3952
|
export type ListLiveAssetsForIntegratorQuery = {
|
|
3590
|
-
__typename?: '
|
|
3953
|
+
__typename?: 'Query';
|
|
3591
3954
|
assets: Array<{
|
|
3592
3955
|
__typename?: 'Asset';
|
|
3593
3956
|
asset_address: string;
|
|
@@ -3600,12 +3963,10 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
3600
3963
|
pool_current_price: any;
|
|
3601
3964
|
pool_current_sqrt_price: any;
|
|
3602
3965
|
pool_current_fdv: any;
|
|
3603
|
-
pool_current_fdv_usd?: string | null;
|
|
3604
3966
|
pool_current_liquidity: any;
|
|
3605
3967
|
pool_current_tick: number;
|
|
3606
3968
|
pool_last_epoch?: number | null;
|
|
3607
3969
|
pool_current_market_cap: any;
|
|
3608
|
-
pool_current_market_cap_usd?: string | null;
|
|
3609
3970
|
pool_current_fees_accrued: any;
|
|
3610
3971
|
pool_current_total_proceeds: any;
|
|
3611
3972
|
pool_current_total_tokens_sold: any;
|
|
@@ -3620,6 +3981,16 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
3620
3981
|
pool_config_ending_time: any;
|
|
3621
3982
|
pool_migration_timestamp?: any | null;
|
|
3622
3983
|
pool_type: string;
|
|
3984
|
+
pool_market_data?: {
|
|
3985
|
+
__typename?: 'PairFilterResult';
|
|
3986
|
+
liquidity?: string | null;
|
|
3987
|
+
marketCap?: string | null;
|
|
3988
|
+
price?: string | null;
|
|
3989
|
+
priceScale?: string | null;
|
|
3990
|
+
priceChange24?: string | null;
|
|
3991
|
+
volumeChange24?: string | null;
|
|
3992
|
+
volumeUSD24?: string | null;
|
|
3993
|
+
} | null;
|
|
3623
3994
|
base_token?: {
|
|
3624
3995
|
__typename?: 'Token';
|
|
3625
3996
|
token_address: string;
|
|
@@ -3640,14 +4011,22 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
3640
4011
|
pool_current_price: any;
|
|
3641
4012
|
pool_current_sqrt_price: any;
|
|
3642
4013
|
pool_current_fdv?: any | null;
|
|
3643
|
-
pool_current_fdv_usd?: string | null;
|
|
3644
4014
|
pool_current_liquidity: any;
|
|
3645
4015
|
pool_current_tick: number;
|
|
3646
4016
|
pool_current_market_cap?: any | null;
|
|
3647
|
-
pool_current_market_cap_usd?: string | null;
|
|
3648
4017
|
pool_address: string;
|
|
3649
4018
|
pool_migration_timestamp?: any | null;
|
|
3650
4019
|
pool_type: string;
|
|
4020
|
+
pool_market_data?: {
|
|
4021
|
+
__typename?: 'PairFilterResult';
|
|
4022
|
+
liquidity?: string | null;
|
|
4023
|
+
marketCap?: string | null;
|
|
4024
|
+
price?: string | null;
|
|
4025
|
+
priceScale?: string | null;
|
|
4026
|
+
priceChange24?: string | null;
|
|
4027
|
+
volumeChange24?: string | null;
|
|
4028
|
+
volumeUSD24?: string | null;
|
|
4029
|
+
} | null;
|
|
3651
4030
|
base_token?: {
|
|
3652
4031
|
__typename?: 'Token';
|
|
3653
4032
|
token_address: string;
|
|
@@ -3675,7 +4054,7 @@ export type ListIncomingAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3675
4054
|
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3676
4055
|
}>;
|
|
3677
4056
|
export type ListIncomingAssetsForIntegratorQuery = {
|
|
3678
|
-
__typename?: '
|
|
4057
|
+
__typename?: 'Query';
|
|
3679
4058
|
assets: Array<{
|
|
3680
4059
|
__typename?: 'Asset';
|
|
3681
4060
|
asset_address: string;
|
|
@@ -3688,12 +4067,10 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
3688
4067
|
pool_current_price: any;
|
|
3689
4068
|
pool_current_sqrt_price: any;
|
|
3690
4069
|
pool_current_fdv: any;
|
|
3691
|
-
pool_current_fdv_usd?: string | null;
|
|
3692
4070
|
pool_current_liquidity: any;
|
|
3693
4071
|
pool_current_tick: number;
|
|
3694
4072
|
pool_last_epoch?: number | null;
|
|
3695
4073
|
pool_current_market_cap: any;
|
|
3696
|
-
pool_current_market_cap_usd?: string | null;
|
|
3697
4074
|
pool_current_fees_accrued: any;
|
|
3698
4075
|
pool_current_total_proceeds: any;
|
|
3699
4076
|
pool_current_total_tokens_sold: any;
|
|
@@ -3708,6 +4085,16 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
3708
4085
|
pool_config_ending_time: any;
|
|
3709
4086
|
pool_migration_timestamp?: any | null;
|
|
3710
4087
|
pool_type: string;
|
|
4088
|
+
pool_market_data?: {
|
|
4089
|
+
__typename?: 'PairFilterResult';
|
|
4090
|
+
liquidity?: string | null;
|
|
4091
|
+
marketCap?: string | null;
|
|
4092
|
+
price?: string | null;
|
|
4093
|
+
priceScale?: string | null;
|
|
4094
|
+
priceChange24?: string | null;
|
|
4095
|
+
volumeChange24?: string | null;
|
|
4096
|
+
volumeUSD24?: string | null;
|
|
4097
|
+
} | null;
|
|
3711
4098
|
base_token?: {
|
|
3712
4099
|
__typename?: 'Token';
|
|
3713
4100
|
token_address: string;
|
|
@@ -3728,14 +4115,22 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
3728
4115
|
pool_current_price: any;
|
|
3729
4116
|
pool_current_sqrt_price: any;
|
|
3730
4117
|
pool_current_fdv?: any | null;
|
|
3731
|
-
pool_current_fdv_usd?: string | null;
|
|
3732
4118
|
pool_current_liquidity: any;
|
|
3733
4119
|
pool_current_tick: number;
|
|
3734
4120
|
pool_current_market_cap?: any | null;
|
|
3735
|
-
pool_current_market_cap_usd?: string | null;
|
|
3736
4121
|
pool_address: string;
|
|
3737
4122
|
pool_migration_timestamp?: any | null;
|
|
3738
4123
|
pool_type: string;
|
|
4124
|
+
pool_market_data?: {
|
|
4125
|
+
__typename?: 'PairFilterResult';
|
|
4126
|
+
liquidity?: string | null;
|
|
4127
|
+
marketCap?: string | null;
|
|
4128
|
+
price?: string | null;
|
|
4129
|
+
priceScale?: string | null;
|
|
4130
|
+
priceChange24?: string | null;
|
|
4131
|
+
volumeChange24?: string | null;
|
|
4132
|
+
volumeUSD24?: string | null;
|
|
4133
|
+
} | null;
|
|
3739
4134
|
base_token?: {
|
|
3740
4135
|
__typename?: 'Token';
|
|
3741
4136
|
token_address: string;
|
|
@@ -3762,7 +4157,7 @@ export type ListGraduatedAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3762
4157
|
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3763
4158
|
}>;
|
|
3764
4159
|
export type ListGraduatedAssetsForIntegratorQuery = {
|
|
3765
|
-
__typename?: '
|
|
4160
|
+
__typename?: 'Query';
|
|
3766
4161
|
assets: Array<{
|
|
3767
4162
|
__typename?: 'Asset';
|
|
3768
4163
|
asset_address: string;
|
|
@@ -3775,12 +4170,10 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
3775
4170
|
pool_current_price: any;
|
|
3776
4171
|
pool_current_sqrt_price: any;
|
|
3777
4172
|
pool_current_fdv: any;
|
|
3778
|
-
pool_current_fdv_usd?: string | null;
|
|
3779
4173
|
pool_current_liquidity: any;
|
|
3780
4174
|
pool_current_tick: number;
|
|
3781
4175
|
pool_last_epoch?: number | null;
|
|
3782
4176
|
pool_current_market_cap: any;
|
|
3783
|
-
pool_current_market_cap_usd?: string | null;
|
|
3784
4177
|
pool_current_fees_accrued: any;
|
|
3785
4178
|
pool_current_total_proceeds: any;
|
|
3786
4179
|
pool_current_total_tokens_sold: any;
|
|
@@ -3795,6 +4188,16 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
3795
4188
|
pool_config_ending_time: any;
|
|
3796
4189
|
pool_migration_timestamp?: any | null;
|
|
3797
4190
|
pool_type: string;
|
|
4191
|
+
pool_market_data?: {
|
|
4192
|
+
__typename?: 'PairFilterResult';
|
|
4193
|
+
liquidity?: string | null;
|
|
4194
|
+
marketCap?: string | null;
|
|
4195
|
+
price?: string | null;
|
|
4196
|
+
priceScale?: string | null;
|
|
4197
|
+
priceChange24?: string | null;
|
|
4198
|
+
volumeChange24?: string | null;
|
|
4199
|
+
volumeUSD24?: string | null;
|
|
4200
|
+
} | null;
|
|
3798
4201
|
base_token?: {
|
|
3799
4202
|
__typename?: 'Token';
|
|
3800
4203
|
token_address: string;
|
|
@@ -3815,14 +4218,22 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
3815
4218
|
pool_current_price: any;
|
|
3816
4219
|
pool_current_sqrt_price: any;
|
|
3817
4220
|
pool_current_fdv?: any | null;
|
|
3818
|
-
pool_current_fdv_usd?: string | null;
|
|
3819
4221
|
pool_current_liquidity: any;
|
|
3820
4222
|
pool_current_tick: number;
|
|
3821
4223
|
pool_current_market_cap?: any | null;
|
|
3822
|
-
pool_current_market_cap_usd?: string | null;
|
|
3823
4224
|
pool_address: string;
|
|
3824
4225
|
pool_migration_timestamp?: any | null;
|
|
3825
4226
|
pool_type: string;
|
|
4227
|
+
pool_market_data?: {
|
|
4228
|
+
__typename?: 'PairFilterResult';
|
|
4229
|
+
liquidity?: string | null;
|
|
4230
|
+
marketCap?: string | null;
|
|
4231
|
+
price?: string | null;
|
|
4232
|
+
priceScale?: string | null;
|
|
4233
|
+
priceChange24?: string | null;
|
|
4234
|
+
volumeChange24?: string | null;
|
|
4235
|
+
volumeUSD24?: string | null;
|
|
4236
|
+
} | null;
|
|
3826
4237
|
base_token?: {
|
|
3827
4238
|
__typename?: 'Token';
|
|
3828
4239
|
token_address: string;
|
|
@@ -3849,7 +4260,7 @@ export type ListAllAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3849
4260
|
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3850
4261
|
}>;
|
|
3851
4262
|
export type ListAllAssetsForIntegratorQuery = {
|
|
3852
|
-
__typename?: '
|
|
4263
|
+
__typename?: 'Query';
|
|
3853
4264
|
assets: Array<{
|
|
3854
4265
|
__typename?: 'Asset';
|
|
3855
4266
|
asset_address: string;
|
|
@@ -3862,12 +4273,10 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
3862
4273
|
pool_current_price: any;
|
|
3863
4274
|
pool_current_sqrt_price: any;
|
|
3864
4275
|
pool_current_fdv: any;
|
|
3865
|
-
pool_current_fdv_usd?: string | null;
|
|
3866
4276
|
pool_current_liquidity: any;
|
|
3867
4277
|
pool_current_tick: number;
|
|
3868
4278
|
pool_last_epoch?: number | null;
|
|
3869
4279
|
pool_current_market_cap: any;
|
|
3870
|
-
pool_current_market_cap_usd?: string | null;
|
|
3871
4280
|
pool_current_fees_accrued: any;
|
|
3872
4281
|
pool_current_total_proceeds: any;
|
|
3873
4282
|
pool_current_total_tokens_sold: any;
|
|
@@ -3882,6 +4291,16 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
3882
4291
|
pool_config_ending_time: any;
|
|
3883
4292
|
pool_migration_timestamp?: any | null;
|
|
3884
4293
|
pool_type: string;
|
|
4294
|
+
pool_market_data?: {
|
|
4295
|
+
__typename?: 'PairFilterResult';
|
|
4296
|
+
liquidity?: string | null;
|
|
4297
|
+
marketCap?: string | null;
|
|
4298
|
+
price?: string | null;
|
|
4299
|
+
priceScale?: string | null;
|
|
4300
|
+
priceChange24?: string | null;
|
|
4301
|
+
volumeChange24?: string | null;
|
|
4302
|
+
volumeUSD24?: string | null;
|
|
4303
|
+
} | null;
|
|
3885
4304
|
base_token?: {
|
|
3886
4305
|
__typename?: 'Token';
|
|
3887
4306
|
token_address: string;
|
|
@@ -3902,14 +4321,22 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
3902
4321
|
pool_current_price: any;
|
|
3903
4322
|
pool_current_sqrt_price: any;
|
|
3904
4323
|
pool_current_fdv?: any | null;
|
|
3905
|
-
pool_current_fdv_usd?: string | null;
|
|
3906
4324
|
pool_current_liquidity: any;
|
|
3907
4325
|
pool_current_tick: number;
|
|
3908
4326
|
pool_current_market_cap?: any | null;
|
|
3909
|
-
pool_current_market_cap_usd?: string | null;
|
|
3910
4327
|
pool_address: string;
|
|
3911
4328
|
pool_migration_timestamp?: any | null;
|
|
3912
4329
|
pool_type: string;
|
|
4330
|
+
pool_market_data?: {
|
|
4331
|
+
__typename?: 'PairFilterResult';
|
|
4332
|
+
liquidity?: string | null;
|
|
4333
|
+
marketCap?: string | null;
|
|
4334
|
+
price?: string | null;
|
|
4335
|
+
priceScale?: string | null;
|
|
4336
|
+
priceChange24?: string | null;
|
|
4337
|
+
volumeChange24?: string | null;
|
|
4338
|
+
volumeUSD24?: string | null;
|
|
4339
|
+
} | null;
|
|
3913
4340
|
base_token?: {
|
|
3914
4341
|
__typename?: 'Token';
|
|
3915
4342
|
token_address: string;
|
|
@@ -3934,7 +4361,7 @@ export type SearchAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3934
4361
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3935
4362
|
}>;
|
|
3936
4363
|
export type SearchAssetsForIntegratorQuery = {
|
|
3937
|
-
__typename?: '
|
|
4364
|
+
__typename?: 'Query';
|
|
3938
4365
|
assets: Array<{
|
|
3939
4366
|
__typename?: 'Asset';
|
|
3940
4367
|
asset_address: string;
|
|
@@ -3947,12 +4374,10 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
3947
4374
|
pool_current_price: any;
|
|
3948
4375
|
pool_current_sqrt_price: any;
|
|
3949
4376
|
pool_current_fdv: any;
|
|
3950
|
-
pool_current_fdv_usd?: string | null;
|
|
3951
4377
|
pool_current_liquidity: any;
|
|
3952
4378
|
pool_current_tick: number;
|
|
3953
4379
|
pool_last_epoch?: number | null;
|
|
3954
4380
|
pool_current_market_cap: any;
|
|
3955
|
-
pool_current_market_cap_usd?: string | null;
|
|
3956
4381
|
pool_current_fees_accrued: any;
|
|
3957
4382
|
pool_current_total_proceeds: any;
|
|
3958
4383
|
pool_current_total_tokens_sold: any;
|
|
@@ -3967,6 +4392,16 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
3967
4392
|
pool_config_ending_time: any;
|
|
3968
4393
|
pool_migration_timestamp?: any | null;
|
|
3969
4394
|
pool_type: string;
|
|
4395
|
+
pool_market_data?: {
|
|
4396
|
+
__typename?: 'PairFilterResult';
|
|
4397
|
+
liquidity?: string | null;
|
|
4398
|
+
marketCap?: string | null;
|
|
4399
|
+
price?: string | null;
|
|
4400
|
+
priceScale?: string | null;
|
|
4401
|
+
priceChange24?: string | null;
|
|
4402
|
+
volumeChange24?: string | null;
|
|
4403
|
+
volumeUSD24?: string | null;
|
|
4404
|
+
} | null;
|
|
3970
4405
|
base_token?: {
|
|
3971
4406
|
__typename?: 'Token';
|
|
3972
4407
|
token_address: string;
|
|
@@ -3987,14 +4422,22 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
3987
4422
|
pool_current_price: any;
|
|
3988
4423
|
pool_current_sqrt_price: any;
|
|
3989
4424
|
pool_current_fdv?: any | null;
|
|
3990
|
-
pool_current_fdv_usd?: string | null;
|
|
3991
4425
|
pool_current_liquidity: any;
|
|
3992
4426
|
pool_current_tick: number;
|
|
3993
4427
|
pool_current_market_cap?: any | null;
|
|
3994
|
-
pool_current_market_cap_usd?: string | null;
|
|
3995
4428
|
pool_address: string;
|
|
3996
4429
|
pool_migration_timestamp?: any | null;
|
|
3997
4430
|
pool_type: string;
|
|
4431
|
+
pool_market_data?: {
|
|
4432
|
+
__typename?: 'PairFilterResult';
|
|
4433
|
+
liquidity?: string | null;
|
|
4434
|
+
marketCap?: string | null;
|
|
4435
|
+
price?: string | null;
|
|
4436
|
+
priceScale?: string | null;
|
|
4437
|
+
priceChange24?: string | null;
|
|
4438
|
+
volumeChange24?: string | null;
|
|
4439
|
+
volumeUSD24?: string | null;
|
|
4440
|
+
} | null;
|
|
3998
4441
|
base_token?: {
|
|
3999
4442
|
__typename?: 'Token';
|
|
4000
4443
|
token_address: string;
|
|
@@ -4018,7 +4461,7 @@ export type GetAssetByAddressForIntegratorQueryVariables = Exact<{
|
|
|
4018
4461
|
integratorAddress: Scalars['String']['input'];
|
|
4019
4462
|
}>;
|
|
4020
4463
|
export type GetAssetByAddressForIntegratorQuery = {
|
|
4021
|
-
__typename?: '
|
|
4464
|
+
__typename?: 'Query';
|
|
4022
4465
|
asset: Array<{
|
|
4023
4466
|
__typename?: 'Asset';
|
|
4024
4467
|
asset_address: string;
|
|
@@ -4031,12 +4474,10 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
4031
4474
|
pool_current_price: any;
|
|
4032
4475
|
pool_current_sqrt_price: any;
|
|
4033
4476
|
pool_current_fdv: any;
|
|
4034
|
-
pool_current_fdv_usd?: string | null;
|
|
4035
4477
|
pool_current_liquidity: any;
|
|
4036
4478
|
pool_current_tick: number;
|
|
4037
4479
|
pool_last_epoch?: number | null;
|
|
4038
4480
|
pool_current_market_cap: any;
|
|
4039
|
-
pool_current_market_cap_usd?: string | null;
|
|
4040
4481
|
pool_current_fees_accrued: any;
|
|
4041
4482
|
pool_current_total_proceeds: any;
|
|
4042
4483
|
pool_current_total_tokens_sold: any;
|
|
@@ -4051,6 +4492,16 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
4051
4492
|
pool_config_ending_time: any;
|
|
4052
4493
|
pool_migration_timestamp?: any | null;
|
|
4053
4494
|
pool_type: string;
|
|
4495
|
+
pool_market_data?: {
|
|
4496
|
+
__typename?: 'PairFilterResult';
|
|
4497
|
+
liquidity?: string | null;
|
|
4498
|
+
marketCap?: string | null;
|
|
4499
|
+
price?: string | null;
|
|
4500
|
+
priceScale?: string | null;
|
|
4501
|
+
priceChange24?: string | null;
|
|
4502
|
+
volumeChange24?: string | null;
|
|
4503
|
+
volumeUSD24?: string | null;
|
|
4504
|
+
} | null;
|
|
4054
4505
|
base_token?: {
|
|
4055
4506
|
__typename?: 'Token';
|
|
4056
4507
|
token_address: string;
|
|
@@ -4071,14 +4522,22 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
4071
4522
|
pool_current_price: any;
|
|
4072
4523
|
pool_current_sqrt_price: any;
|
|
4073
4524
|
pool_current_fdv?: any | null;
|
|
4074
|
-
pool_current_fdv_usd?: string | null;
|
|
4075
4525
|
pool_current_liquidity: any;
|
|
4076
4526
|
pool_current_tick: number;
|
|
4077
4527
|
pool_current_market_cap?: any | null;
|
|
4078
|
-
pool_current_market_cap_usd?: string | null;
|
|
4079
4528
|
pool_address: string;
|
|
4080
4529
|
pool_migration_timestamp?: any | null;
|
|
4081
4530
|
pool_type: string;
|
|
4531
|
+
pool_market_data?: {
|
|
4532
|
+
__typename?: 'PairFilterResult';
|
|
4533
|
+
liquidity?: string | null;
|
|
4534
|
+
marketCap?: string | null;
|
|
4535
|
+
price?: string | null;
|
|
4536
|
+
priceScale?: string | null;
|
|
4537
|
+
priceChange24?: string | null;
|
|
4538
|
+
volumeChange24?: string | null;
|
|
4539
|
+
volumeUSD24?: string | null;
|
|
4540
|
+
} | null;
|
|
4082
4541
|
base_token?: {
|
|
4083
4542
|
__typename?: 'Token';
|
|
4084
4543
|
token_address: string;
|
|
@@ -4101,7 +4560,7 @@ export type ListAuctionPoolsForIntegratorQueryVariables = Exact<{
|
|
|
4101
4560
|
integratorAddress: Scalars['String']['input'];
|
|
4102
4561
|
}>;
|
|
4103
4562
|
export type ListAuctionPoolsForIntegratorQuery = {
|
|
4104
|
-
__typename?: '
|
|
4563
|
+
__typename?: 'Query';
|
|
4105
4564
|
pools: Array<{
|
|
4106
4565
|
__typename?: 'AuctionPool';
|
|
4107
4566
|
pool_address: string;
|
|
@@ -4131,7 +4590,7 @@ export type GetAuctionPoolsByAddressAndIntegratorQueryVariables = Exact<{
|
|
|
4131
4590
|
integratorAddress: Scalars['String']['input'];
|
|
4132
4591
|
}>;
|
|
4133
4592
|
export type GetAuctionPoolsByAddressAndIntegratorQuery = {
|
|
4134
|
-
__typename?: '
|
|
4593
|
+
__typename?: 'Query';
|
|
4135
4594
|
pools: Array<{
|
|
4136
4595
|
__typename?: 'AuctionPool';
|
|
4137
4596
|
pool_address: string;
|
|
@@ -4155,28 +4614,27 @@ export type GetAuctionPoolsByAddressAndIntegratorQuery = {
|
|
|
4155
4614
|
} | null;
|
|
4156
4615
|
}>;
|
|
4157
4616
|
};
|
|
4158
|
-
export declare const TokenFieldsFragmentDoc:
|
|
4159
|
-
export declare const AuctionPoolFieldsFragmentDoc:
|
|
4160
|
-
export declare const GraduationPoolFieldsFragmentDoc:
|
|
4161
|
-
export declare const AssetFieldsFragmentDoc:
|
|
4162
|
-
export declare const ListLiveAssetsForIntegratorDocument:
|
|
4163
|
-
export declare const ListIncomingAssetsForIntegratorDocument:
|
|
4164
|
-
export declare const ListGraduatedAssetsForIntegratorDocument:
|
|
4165
|
-
export declare const ListAllAssetsForIntegratorDocument:
|
|
4166
|
-
export declare const SearchAssetsForIntegratorDocument:
|
|
4167
|
-
export declare const GetAssetByAddressForIntegratorDocument:
|
|
4168
|
-
export declare const ListAuctionPoolsForIntegratorDocument:
|
|
4169
|
-
export declare const GetAuctionPoolsByAddressAndIntegratorDocument:
|
|
4170
|
-
export type
|
|
4171
|
-
export declare function getSdk(
|
|
4172
|
-
ListLiveAssetsForIntegrator(variables: ListLiveAssetsForIntegratorQueryVariables,
|
|
4173
|
-
ListIncomingAssetsForIntegrator(variables: ListIncomingAssetsForIntegratorQueryVariables,
|
|
4174
|
-
ListGraduatedAssetsForIntegrator(variables: ListGraduatedAssetsForIntegratorQueryVariables,
|
|
4175
|
-
ListAllAssetsForIntegrator(variables: ListAllAssetsForIntegratorQueryVariables,
|
|
4176
|
-
SearchAssetsForIntegrator(variables: SearchAssetsForIntegratorQueryVariables,
|
|
4177
|
-
GetAssetByAddressForIntegrator(variables: GetAssetByAddressForIntegratorQueryVariables,
|
|
4178
|
-
ListAuctionPoolsForIntegrator(variables: ListAuctionPoolsForIntegratorQueryVariables,
|
|
4179
|
-
GetAuctionPoolsByAddressAndIntegrator(variables: GetAuctionPoolsByAddressAndIntegratorQueryVariables,
|
|
4617
|
+
export declare const TokenFieldsFragmentDoc: DocumentNode;
|
|
4618
|
+
export declare const AuctionPoolFieldsFragmentDoc: DocumentNode;
|
|
4619
|
+
export declare const GraduationPoolFieldsFragmentDoc: DocumentNode;
|
|
4620
|
+
export declare const AssetFieldsFragmentDoc: DocumentNode;
|
|
4621
|
+
export declare const ListLiveAssetsForIntegratorDocument: DocumentNode;
|
|
4622
|
+
export declare const ListIncomingAssetsForIntegratorDocument: DocumentNode;
|
|
4623
|
+
export declare const ListGraduatedAssetsForIntegratorDocument: DocumentNode;
|
|
4624
|
+
export declare const ListAllAssetsForIntegratorDocument: DocumentNode;
|
|
4625
|
+
export declare const SearchAssetsForIntegratorDocument: DocumentNode;
|
|
4626
|
+
export declare const GetAssetByAddressForIntegratorDocument: DocumentNode;
|
|
4627
|
+
export declare const ListAuctionPoolsForIntegratorDocument: DocumentNode;
|
|
4628
|
+
export declare const GetAuctionPoolsByAddressAndIntegratorDocument: DocumentNode;
|
|
4629
|
+
export type Requester<C = {}> = <R, V>(doc: DocumentNode, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
4630
|
+
export declare function getSdk<C>(requester: Requester<C>): {
|
|
4631
|
+
ListLiveAssetsForIntegrator(variables: ListLiveAssetsForIntegratorQueryVariables, options?: C): Promise<ListLiveAssetsForIntegratorQuery>;
|
|
4632
|
+
ListIncomingAssetsForIntegrator(variables: ListIncomingAssetsForIntegratorQueryVariables, options?: C): Promise<ListIncomingAssetsForIntegratorQuery>;
|
|
4633
|
+
ListGraduatedAssetsForIntegrator(variables: ListGraduatedAssetsForIntegratorQueryVariables, options?: C): Promise<ListGraduatedAssetsForIntegratorQuery>;
|
|
4634
|
+
ListAllAssetsForIntegrator(variables: ListAllAssetsForIntegratorQueryVariables, options?: C): Promise<ListAllAssetsForIntegratorQuery>;
|
|
4635
|
+
SearchAssetsForIntegrator(variables: SearchAssetsForIntegratorQueryVariables, options?: C): Promise<SearchAssetsForIntegratorQuery>;
|
|
4636
|
+
GetAssetByAddressForIntegrator(variables: GetAssetByAddressForIntegratorQueryVariables, options?: C): Promise<GetAssetByAddressForIntegratorQuery>;
|
|
4637
|
+
ListAuctionPoolsForIntegrator(variables: ListAuctionPoolsForIntegratorQueryVariables, options?: C): Promise<ListAuctionPoolsForIntegratorQuery>;
|
|
4638
|
+
GetAuctionPoolsByAddressAndIntegrator(variables: GetAuctionPoolsByAddressAndIntegratorQueryVariables, options?: C): Promise<GetAuctionPoolsByAddressAndIntegratorQuery>;
|
|
4180
4639
|
};
|
|
4181
4640
|
export type Sdk = ReturnType<typeof getSdk>;
|
|
4182
|
-
export {};
|