@longdotxyz/shared 0.0.80 → 0.0.82
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 +6 -2
- package/dist/contracts/asset.contract.js +7 -6
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +2 -1
- package/dist/contracts/auction-template.contract.js +4 -1
- package/dist/contracts/auction-template.contract.js.map +1 -1
- package/dist/contracts/auction.contract.d.ts +2 -1
- package/dist/contracts/auction.contract.js +4 -1
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/community.contract.d.ts +2 -1
- package/dist/contracts/community.contract.js +4 -1
- package/dist/contracts/community.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +4 -1
- package/dist/contracts/ipfs.contract.js +4 -1
- package/dist/contracts/ipfs.contract.js.map +1 -1
- package/dist/contracts/pathfinding.contract.js +4 -1
- package/dist/contracts/pathfinding.contract.js.map +1 -1
- package/dist/contracts/sponsorship.contract.js +4 -1
- package/dist/contracts/sponsorship.contract.js.map +1 -1
- package/dist/graphql/generated.d.ts +764 -7
- package/dist/graphql/generated.js +65 -11
- package/dist/graphql/generated.js.map +1 -1
- package/dist/types/bigint.type.js +4 -1
- package/dist/types/bigint.type.js.map +1 -1
- package/dist/types/hex.type.js +4 -1
- package/dist/types/hex.type.js.map +1 -1
- package/dist/types/pool-key.type.js +4 -1
- package/dist/types/pool-key.type.js.map +1 -1
- package/package.json +1 -1
|
@@ -68,7 +68,7 @@ export type Asset = {
|
|
|
68
68
|
asset_current_pool: Scalars['String']['output'];
|
|
69
69
|
asset_far_tick?: Maybe<Scalars['Int']['output']>;
|
|
70
70
|
asset_governance_address: Scalars['String']['output'];
|
|
71
|
-
asset_graduation_pool_address
|
|
71
|
+
asset_graduation_pool_address?: Maybe<Scalars['String']['output']>;
|
|
72
72
|
asset_is_locked: Scalars['Boolean']['output'];
|
|
73
73
|
asset_liquidity_migrator_address: Scalars['String']['output'];
|
|
74
74
|
asset_migration_block?: Maybe<Scalars['numeric']['output']>;
|
|
@@ -81,7 +81,7 @@ export type Asset = {
|
|
|
81
81
|
auction_pool_id: Scalars['String']['output'];
|
|
82
82
|
chain_id: Scalars['Int']['output'];
|
|
83
83
|
graduation_pool?: Maybe<GraduationPool>;
|
|
84
|
-
graduation_pool_id
|
|
84
|
+
graduation_pool_id?: Maybe<Scalars['String']['output']>;
|
|
85
85
|
id: Scalars['String']['output'];
|
|
86
86
|
integrator_address: Scalars['String']['output'];
|
|
87
87
|
numeraire_market_data?: Maybe<NumeraireMarketData>;
|
|
@@ -202,14 +202,31 @@ export type AuctionPool = {
|
|
|
202
202
|
asset_id: Scalars['String']['output'];
|
|
203
203
|
base_token?: Maybe<Token>;
|
|
204
204
|
base_token_id: Scalars['String']['output'];
|
|
205
|
+
bids: Array<AuctionPool_Bid>;
|
|
205
206
|
chain_id: Scalars['Int']['output'];
|
|
207
|
+
checkpoints: Array<Cca_Checkpoint>;
|
|
206
208
|
id: Scalars['String']['output'];
|
|
207
209
|
integrator_address: Scalars['String']['output'];
|
|
208
210
|
pool_address: Scalars['String']['output'];
|
|
211
|
+
pool_cca_clearing_price?: Maybe<Scalars['numeric']['output']>;
|
|
212
|
+
pool_cca_cumulative_mps?: Maybe<Scalars['Int']['output']>;
|
|
213
|
+
pool_cca_cumulative_mps_per_price?: Maybe<Scalars['numeric']['output']>;
|
|
214
|
+
pool_cca_currency_swept?: Maybe<Scalars['Boolean']['output']>;
|
|
215
|
+
pool_cca_current_step_end_block?: Maybe<Scalars['numeric']['output']>;
|
|
216
|
+
pool_cca_current_step_mps?: Maybe<Scalars['Int']['output']>;
|
|
217
|
+
pool_cca_current_step_start_block?: Maybe<Scalars['numeric']['output']>;
|
|
218
|
+
pool_cca_is_graduated?: Maybe<Scalars['Boolean']['output']>;
|
|
219
|
+
pool_cca_last_checkpointed_block?: Maybe<Scalars['numeric']['output']>;
|
|
220
|
+
pool_cca_tokens_swept?: Maybe<Scalars['Boolean']['output']>;
|
|
221
|
+
pool_cca_total_supply?: Maybe<Scalars['numeric']['output']>;
|
|
222
|
+
pool_config_cca_tick_spacing?: Maybe<Scalars['numeric']['output']>;
|
|
223
|
+
pool_config_claim_block?: Maybe<Scalars['numeric']['output']>;
|
|
209
224
|
pool_config_early_exit: Scalars['Boolean']['output'];
|
|
210
225
|
pool_config_ending_tick: Scalars['Int']['output'];
|
|
211
226
|
pool_config_ending_time: Scalars['numeric']['output'];
|
|
212
227
|
pool_config_epoch_length: Scalars['numeric']['output'];
|
|
228
|
+
pool_config_floor_price?: Maybe<Scalars['numeric']['output']>;
|
|
229
|
+
pool_config_funds_recipient?: Maybe<Scalars['String']['output']>;
|
|
213
230
|
pool_config_gamma: Scalars['Int']['output'];
|
|
214
231
|
pool_config_insufficient_proceeds: Scalars['Boolean']['output'];
|
|
215
232
|
pool_config_is_token_0: Scalars['Boolean']['output'];
|
|
@@ -219,6 +236,7 @@ export type AuctionPool = {
|
|
|
219
236
|
pool_config_num_tokens_to_sell: Scalars['numeric']['output'];
|
|
220
237
|
pool_config_starting_tick: Scalars['Int']['output'];
|
|
221
238
|
pool_config_starting_time: Scalars['numeric']['output'];
|
|
239
|
+
pool_config_tokens_recipient?: Maybe<Scalars['String']['output']>;
|
|
222
240
|
pool_creation_block: Scalars['numeric']['output'];
|
|
223
241
|
pool_creation_timestamp: Scalars['timestamptz']['output'];
|
|
224
242
|
pool_current_beneficiaries_data?: Maybe<Scalars['jsonb']['output']>;
|
|
@@ -252,6 +270,20 @@ export type AuctionPool = {
|
|
|
252
270
|
quote_token_id: Scalars['String']['output'];
|
|
253
271
|
swaps: Array<AuctionPool_Swap>;
|
|
254
272
|
};
|
|
273
|
+
export type AuctionPoolBidsArgs = {
|
|
274
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Bid_Select_Column>>;
|
|
275
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
276
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
277
|
+
order_by?: InputMaybe<Array<AuctionPool_Bid_Order_By>>;
|
|
278
|
+
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
279
|
+
};
|
|
280
|
+
export type AuctionPoolCheckpointsArgs = {
|
|
281
|
+
distinct_on?: InputMaybe<Array<Cca_Checkpoint_Select_Column>>;
|
|
282
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
283
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
284
|
+
order_by?: InputMaybe<Array<Cca_Checkpoint_Order_By>>;
|
|
285
|
+
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
286
|
+
};
|
|
255
287
|
export type AuctionPoolPool_Current_Beneficiaries_DataArgs = {
|
|
256
288
|
path?: InputMaybe<Scalars['String']['input']>;
|
|
257
289
|
};
|
|
@@ -265,6 +297,318 @@ export type AuctionPoolSwapsArgs = {
|
|
|
265
297
|
order_by?: InputMaybe<Array<AuctionPool_Swap_Order_By>>;
|
|
266
298
|
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
267
299
|
};
|
|
300
|
+
export type AuctionPool_Bid = {
|
|
301
|
+
__typename?: 'AuctionPool_Bid';
|
|
302
|
+
auction_pool?: Maybe<AuctionPool>;
|
|
303
|
+
auction_pool_id: Scalars['String']['output'];
|
|
304
|
+
bid_amount: Scalars['numeric']['output'];
|
|
305
|
+
bid_creation_block: Scalars['numeric']['output'];
|
|
306
|
+
bid_creation_timestamp: Scalars['timestamptz']['output'];
|
|
307
|
+
bid_currency_refunded?: Maybe<Scalars['numeric']['output']>;
|
|
308
|
+
bid_current_amount_spent: Scalars['numeric']['output'];
|
|
309
|
+
bid_current_tokens_filled: Scalars['numeric']['output'];
|
|
310
|
+
bid_exited_block?: Maybe<Scalars['numeric']['output']>;
|
|
311
|
+
bid_id: Scalars['numeric']['output'];
|
|
312
|
+
bid_last_fill_checkpoint_block?: Maybe<Scalars['numeric']['output']>;
|
|
313
|
+
bid_max_price: Scalars['numeric']['output'];
|
|
314
|
+
bid_outbid_checkpoint_block?: Maybe<Scalars['numeric']['output']>;
|
|
315
|
+
bid_owner: Scalars['String']['output'];
|
|
316
|
+
bid_start_block: Scalars['numeric']['output'];
|
|
317
|
+
bid_start_cumulative_mps: Scalars['Int']['output'];
|
|
318
|
+
bid_start_cumulative_mps_per_price: Scalars['numeric']['output'];
|
|
319
|
+
bid_tokens_claimed: Scalars['Boolean']['output'];
|
|
320
|
+
bid_tokens_filled: Scalars['numeric']['output'];
|
|
321
|
+
chain_id: Scalars['Int']['output'];
|
|
322
|
+
id: Scalars['String']['output'];
|
|
323
|
+
};
|
|
324
|
+
export type AuctionPool_Bid_Aggregate_Order_By = {
|
|
325
|
+
avg?: InputMaybe<AuctionPool_Bid_Avg_Order_By>;
|
|
326
|
+
count?: InputMaybe<Order_By>;
|
|
327
|
+
max?: InputMaybe<AuctionPool_Bid_Max_Order_By>;
|
|
328
|
+
min?: InputMaybe<AuctionPool_Bid_Min_Order_By>;
|
|
329
|
+
stddev?: InputMaybe<AuctionPool_Bid_Stddev_Order_By>;
|
|
330
|
+
stddev_pop?: InputMaybe<AuctionPool_Bid_Stddev_Pop_Order_By>;
|
|
331
|
+
stddev_samp?: InputMaybe<AuctionPool_Bid_Stddev_Samp_Order_By>;
|
|
332
|
+
sum?: InputMaybe<AuctionPool_Bid_Sum_Order_By>;
|
|
333
|
+
var_pop?: InputMaybe<AuctionPool_Bid_Var_Pop_Order_By>;
|
|
334
|
+
var_samp?: InputMaybe<AuctionPool_Bid_Var_Samp_Order_By>;
|
|
335
|
+
variance?: InputMaybe<AuctionPool_Bid_Variance_Order_By>;
|
|
336
|
+
};
|
|
337
|
+
export type AuctionPool_Bid_Avg_Order_By = {
|
|
338
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
339
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
340
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
341
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
342
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
343
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
344
|
+
bid_id?: InputMaybe<Order_By>;
|
|
345
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
346
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
347
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
348
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
349
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
350
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
351
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
352
|
+
chain_id?: InputMaybe<Order_By>;
|
|
353
|
+
};
|
|
354
|
+
export type AuctionPool_Bid_Bool_Exp = {
|
|
355
|
+
_and?: InputMaybe<Array<AuctionPool_Bid_Bool_Exp>>;
|
|
356
|
+
_not?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
357
|
+
_or?: InputMaybe<Array<AuctionPool_Bid_Bool_Exp>>;
|
|
358
|
+
auction_pool?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
359
|
+
auction_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
360
|
+
bid_amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
361
|
+
bid_creation_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
362
|
+
bid_creation_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
363
|
+
bid_currency_refunded?: InputMaybe<Numeric_Comparison_Exp>;
|
|
364
|
+
bid_current_amount_spent?: InputMaybe<Numeric_Comparison_Exp>;
|
|
365
|
+
bid_current_tokens_filled?: InputMaybe<Numeric_Comparison_Exp>;
|
|
366
|
+
bid_exited_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
367
|
+
bid_id?: InputMaybe<Numeric_Comparison_Exp>;
|
|
368
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
369
|
+
bid_max_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
370
|
+
bid_outbid_checkpoint_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
371
|
+
bid_owner?: InputMaybe<String_Comparison_Exp>;
|
|
372
|
+
bid_start_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
373
|
+
bid_start_cumulative_mps?: InputMaybe<Int_Comparison_Exp>;
|
|
374
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
375
|
+
bid_tokens_claimed?: InputMaybe<Boolean_Comparison_Exp>;
|
|
376
|
+
bid_tokens_filled?: InputMaybe<Numeric_Comparison_Exp>;
|
|
377
|
+
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
378
|
+
id?: InputMaybe<String_Comparison_Exp>;
|
|
379
|
+
};
|
|
380
|
+
export type AuctionPool_Bid_Max_Order_By = {
|
|
381
|
+
auction_pool_id?: InputMaybe<Order_By>;
|
|
382
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
383
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
384
|
+
bid_creation_timestamp?: InputMaybe<Order_By>;
|
|
385
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
386
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
387
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
388
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
389
|
+
bid_id?: InputMaybe<Order_By>;
|
|
390
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
391
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
392
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
393
|
+
bid_owner?: InputMaybe<Order_By>;
|
|
394
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
395
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
396
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
397
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
398
|
+
chain_id?: InputMaybe<Order_By>;
|
|
399
|
+
id?: InputMaybe<Order_By>;
|
|
400
|
+
};
|
|
401
|
+
export type AuctionPool_Bid_Min_Order_By = {
|
|
402
|
+
auction_pool_id?: InputMaybe<Order_By>;
|
|
403
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
404
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
405
|
+
bid_creation_timestamp?: InputMaybe<Order_By>;
|
|
406
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
407
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
408
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
409
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
410
|
+
bid_id?: InputMaybe<Order_By>;
|
|
411
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
412
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
413
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
414
|
+
bid_owner?: InputMaybe<Order_By>;
|
|
415
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
416
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
417
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
418
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
419
|
+
chain_id?: InputMaybe<Order_By>;
|
|
420
|
+
id?: InputMaybe<Order_By>;
|
|
421
|
+
};
|
|
422
|
+
export type AuctionPool_Bid_Order_By = {
|
|
423
|
+
auction_pool?: InputMaybe<AuctionPool_Order_By>;
|
|
424
|
+
auction_pool_id?: InputMaybe<Order_By>;
|
|
425
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
426
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
427
|
+
bid_creation_timestamp?: InputMaybe<Order_By>;
|
|
428
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
429
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
430
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
431
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
432
|
+
bid_id?: InputMaybe<Order_By>;
|
|
433
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
434
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
435
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
436
|
+
bid_owner?: InputMaybe<Order_By>;
|
|
437
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
438
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
439
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
440
|
+
bid_tokens_claimed?: InputMaybe<Order_By>;
|
|
441
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
442
|
+
chain_id?: InputMaybe<Order_By>;
|
|
443
|
+
id?: InputMaybe<Order_By>;
|
|
444
|
+
};
|
|
445
|
+
export declare enum AuctionPool_Bid_Select_Column {
|
|
446
|
+
AuctionPoolId = "auction_pool_id",
|
|
447
|
+
BidAmount = "bid_amount",
|
|
448
|
+
BidCreationBlock = "bid_creation_block",
|
|
449
|
+
BidCreationTimestamp = "bid_creation_timestamp",
|
|
450
|
+
BidCurrencyRefunded = "bid_currency_refunded",
|
|
451
|
+
BidCurrentAmountSpent = "bid_current_amount_spent",
|
|
452
|
+
BidCurrentTokensFilled = "bid_current_tokens_filled",
|
|
453
|
+
BidExitedBlock = "bid_exited_block",
|
|
454
|
+
BidId = "bid_id",
|
|
455
|
+
BidLastFillCheckpointBlock = "bid_last_fill_checkpoint_block",
|
|
456
|
+
BidMaxPrice = "bid_max_price",
|
|
457
|
+
BidOutbidCheckpointBlock = "bid_outbid_checkpoint_block",
|
|
458
|
+
BidOwner = "bid_owner",
|
|
459
|
+
BidStartBlock = "bid_start_block",
|
|
460
|
+
BidStartCumulativeMps = "bid_start_cumulative_mps",
|
|
461
|
+
BidStartCumulativeMpsPerPrice = "bid_start_cumulative_mps_per_price",
|
|
462
|
+
BidTokensClaimed = "bid_tokens_claimed",
|
|
463
|
+
BidTokensFilled = "bid_tokens_filled",
|
|
464
|
+
ChainId = "chain_id",
|
|
465
|
+
Id = "id"
|
|
466
|
+
}
|
|
467
|
+
export type AuctionPool_Bid_Stddev_Order_By = {
|
|
468
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
469
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
470
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
471
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
472
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
473
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
474
|
+
bid_id?: InputMaybe<Order_By>;
|
|
475
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
476
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
477
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
478
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
479
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
480
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
481
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
482
|
+
chain_id?: InputMaybe<Order_By>;
|
|
483
|
+
};
|
|
484
|
+
export type AuctionPool_Bid_Stddev_Pop_Order_By = {
|
|
485
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
486
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
487
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
488
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
489
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
490
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
491
|
+
bid_id?: InputMaybe<Order_By>;
|
|
492
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
493
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
494
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
495
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
496
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
497
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
498
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
499
|
+
chain_id?: InputMaybe<Order_By>;
|
|
500
|
+
};
|
|
501
|
+
export type AuctionPool_Bid_Stddev_Samp_Order_By = {
|
|
502
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
503
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
504
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
505
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
506
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
507
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
508
|
+
bid_id?: InputMaybe<Order_By>;
|
|
509
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
510
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
511
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
512
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
513
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
514
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
515
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
516
|
+
chain_id?: InputMaybe<Order_By>;
|
|
517
|
+
};
|
|
518
|
+
export type AuctionPool_Bid_Stream_Cursor_Input = {
|
|
519
|
+
initial_value: AuctionPool_Bid_Stream_Cursor_Value_Input;
|
|
520
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
521
|
+
};
|
|
522
|
+
export type AuctionPool_Bid_Stream_Cursor_Value_Input = {
|
|
523
|
+
auction_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
524
|
+
bid_amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
525
|
+
bid_creation_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
526
|
+
bid_creation_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
527
|
+
bid_currency_refunded?: InputMaybe<Scalars['numeric']['input']>;
|
|
528
|
+
bid_current_amount_spent?: InputMaybe<Scalars['numeric']['input']>;
|
|
529
|
+
bid_current_tokens_filled?: InputMaybe<Scalars['numeric']['input']>;
|
|
530
|
+
bid_exited_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
531
|
+
bid_id?: InputMaybe<Scalars['numeric']['input']>;
|
|
532
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
533
|
+
bid_max_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
534
|
+
bid_outbid_checkpoint_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
535
|
+
bid_owner?: InputMaybe<Scalars['String']['input']>;
|
|
536
|
+
bid_start_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
537
|
+
bid_start_cumulative_mps?: InputMaybe<Scalars['Int']['input']>;
|
|
538
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
539
|
+
bid_tokens_claimed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
540
|
+
bid_tokens_filled?: InputMaybe<Scalars['numeric']['input']>;
|
|
541
|
+
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
542
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
543
|
+
};
|
|
544
|
+
export type AuctionPool_Bid_Sum_Order_By = {
|
|
545
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
546
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
547
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
548
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
549
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
550
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
551
|
+
bid_id?: InputMaybe<Order_By>;
|
|
552
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
553
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
554
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
555
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
556
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
557
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
558
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
559
|
+
chain_id?: InputMaybe<Order_By>;
|
|
560
|
+
};
|
|
561
|
+
export type AuctionPool_Bid_Var_Pop_Order_By = {
|
|
562
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
563
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
564
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
565
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
566
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
567
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
568
|
+
bid_id?: InputMaybe<Order_By>;
|
|
569
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
570
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
571
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
572
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
573
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
574
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
575
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
576
|
+
chain_id?: InputMaybe<Order_By>;
|
|
577
|
+
};
|
|
578
|
+
export type AuctionPool_Bid_Var_Samp_Order_By = {
|
|
579
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
580
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
581
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
582
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
583
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
584
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
585
|
+
bid_id?: InputMaybe<Order_By>;
|
|
586
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
587
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
588
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
589
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
590
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
591
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
592
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
593
|
+
chain_id?: InputMaybe<Order_By>;
|
|
594
|
+
};
|
|
595
|
+
export type AuctionPool_Bid_Variance_Order_By = {
|
|
596
|
+
bid_amount?: InputMaybe<Order_By>;
|
|
597
|
+
bid_creation_block?: InputMaybe<Order_By>;
|
|
598
|
+
bid_currency_refunded?: InputMaybe<Order_By>;
|
|
599
|
+
bid_current_amount_spent?: InputMaybe<Order_By>;
|
|
600
|
+
bid_current_tokens_filled?: InputMaybe<Order_By>;
|
|
601
|
+
bid_exited_block?: InputMaybe<Order_By>;
|
|
602
|
+
bid_id?: InputMaybe<Order_By>;
|
|
603
|
+
bid_last_fill_checkpoint_block?: InputMaybe<Order_By>;
|
|
604
|
+
bid_max_price?: InputMaybe<Order_By>;
|
|
605
|
+
bid_outbid_checkpoint_block?: InputMaybe<Order_By>;
|
|
606
|
+
bid_start_block?: InputMaybe<Order_By>;
|
|
607
|
+
bid_start_cumulative_mps?: InputMaybe<Order_By>;
|
|
608
|
+
bid_start_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
609
|
+
bid_tokens_filled?: InputMaybe<Order_By>;
|
|
610
|
+
chain_id?: InputMaybe<Order_By>;
|
|
611
|
+
};
|
|
268
612
|
export type AuctionPool_Swap = {
|
|
269
613
|
__typename?: 'AuctionPool_Swap';
|
|
270
614
|
auction_pool?: Maybe<AuctionPool>;
|
|
@@ -494,9 +838,20 @@ export type AuctionPool_Aggregate_Order_By = {
|
|
|
494
838
|
};
|
|
495
839
|
export type AuctionPool_Avg_Order_By = {
|
|
496
840
|
chain_id?: InputMaybe<Order_By>;
|
|
841
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
842
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
843
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
844
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
845
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
846
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
847
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
848
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
849
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
850
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
497
851
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
498
852
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
499
853
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
854
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
500
855
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
501
856
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
502
857
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -530,14 +885,31 @@ export type AuctionPool_Bool_Exp = {
|
|
|
530
885
|
asset_id?: InputMaybe<String_Comparison_Exp>;
|
|
531
886
|
base_token?: InputMaybe<Token_Bool_Exp>;
|
|
532
887
|
base_token_id?: InputMaybe<String_Comparison_Exp>;
|
|
888
|
+
bids?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
533
889
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
890
|
+
checkpoints?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
534
891
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
535
892
|
integrator_address?: InputMaybe<String_Comparison_Exp>;
|
|
536
893
|
pool_address?: InputMaybe<String_Comparison_Exp>;
|
|
894
|
+
pool_cca_clearing_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
895
|
+
pool_cca_cumulative_mps?: InputMaybe<Int_Comparison_Exp>;
|
|
896
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
897
|
+
pool_cca_currency_swept?: InputMaybe<Boolean_Comparison_Exp>;
|
|
898
|
+
pool_cca_current_step_end_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
899
|
+
pool_cca_current_step_mps?: InputMaybe<Int_Comparison_Exp>;
|
|
900
|
+
pool_cca_current_step_start_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
901
|
+
pool_cca_is_graduated?: InputMaybe<Boolean_Comparison_Exp>;
|
|
902
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
903
|
+
pool_cca_tokens_swept?: InputMaybe<Boolean_Comparison_Exp>;
|
|
904
|
+
pool_cca_total_supply?: InputMaybe<Numeric_Comparison_Exp>;
|
|
905
|
+
pool_config_cca_tick_spacing?: InputMaybe<Numeric_Comparison_Exp>;
|
|
906
|
+
pool_config_claim_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
537
907
|
pool_config_early_exit?: InputMaybe<Boolean_Comparison_Exp>;
|
|
538
908
|
pool_config_ending_tick?: InputMaybe<Int_Comparison_Exp>;
|
|
539
909
|
pool_config_ending_time?: InputMaybe<Numeric_Comparison_Exp>;
|
|
540
910
|
pool_config_epoch_length?: InputMaybe<Numeric_Comparison_Exp>;
|
|
911
|
+
pool_config_floor_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
912
|
+
pool_config_funds_recipient?: InputMaybe<String_Comparison_Exp>;
|
|
541
913
|
pool_config_gamma?: InputMaybe<Int_Comparison_Exp>;
|
|
542
914
|
pool_config_insufficient_proceeds?: InputMaybe<Boolean_Comparison_Exp>;
|
|
543
915
|
pool_config_is_token_0?: InputMaybe<Boolean_Comparison_Exp>;
|
|
@@ -547,6 +919,7 @@ export type AuctionPool_Bool_Exp = {
|
|
|
547
919
|
pool_config_num_tokens_to_sell?: InputMaybe<Numeric_Comparison_Exp>;
|
|
548
920
|
pool_config_starting_tick?: InputMaybe<Int_Comparison_Exp>;
|
|
549
921
|
pool_config_starting_time?: InputMaybe<Numeric_Comparison_Exp>;
|
|
922
|
+
pool_config_tokens_recipient?: InputMaybe<String_Comparison_Exp>;
|
|
550
923
|
pool_creation_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
551
924
|
pool_creation_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
552
925
|
pool_current_beneficiaries_data?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
@@ -587,9 +960,21 @@ export type AuctionPool_Max_Order_By = {
|
|
|
587
960
|
id?: InputMaybe<Order_By>;
|
|
588
961
|
integrator_address?: InputMaybe<Order_By>;
|
|
589
962
|
pool_address?: InputMaybe<Order_By>;
|
|
963
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
964
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
965
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
966
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
967
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
968
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
969
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
970
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
971
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
972
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
590
973
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
591
974
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
592
975
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
976
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
977
|
+
pool_config_funds_recipient?: InputMaybe<Order_By>;
|
|
593
978
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
594
979
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
595
980
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -597,6 +982,7 @@ export type AuctionPool_Max_Order_By = {
|
|
|
597
982
|
pool_config_num_tokens_to_sell?: InputMaybe<Order_By>;
|
|
598
983
|
pool_config_starting_tick?: InputMaybe<Order_By>;
|
|
599
984
|
pool_config_starting_time?: InputMaybe<Order_By>;
|
|
985
|
+
pool_config_tokens_recipient?: InputMaybe<Order_By>;
|
|
600
986
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
601
987
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
602
988
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
@@ -633,9 +1019,21 @@ export type AuctionPool_Min_Order_By = {
|
|
|
633
1019
|
id?: InputMaybe<Order_By>;
|
|
634
1020
|
integrator_address?: InputMaybe<Order_By>;
|
|
635
1021
|
pool_address?: InputMaybe<Order_By>;
|
|
1022
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1023
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1024
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1025
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1026
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1027
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1028
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1029
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1030
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1031
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
636
1032
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
637
1033
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
638
1034
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1035
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
1036
|
+
pool_config_funds_recipient?: InputMaybe<Order_By>;
|
|
639
1037
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
640
1038
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
641
1039
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -643,6 +1041,7 @@ export type AuctionPool_Min_Order_By = {
|
|
|
643
1041
|
pool_config_num_tokens_to_sell?: InputMaybe<Order_By>;
|
|
644
1042
|
pool_config_starting_tick?: InputMaybe<Order_By>;
|
|
645
1043
|
pool_config_starting_time?: InputMaybe<Order_By>;
|
|
1044
|
+
pool_config_tokens_recipient?: InputMaybe<Order_By>;
|
|
646
1045
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
647
1046
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
648
1047
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
@@ -677,14 +1076,31 @@ export type AuctionPool_Order_By = {
|
|
|
677
1076
|
asset_id?: InputMaybe<Order_By>;
|
|
678
1077
|
base_token?: InputMaybe<Token_Order_By>;
|
|
679
1078
|
base_token_id?: InputMaybe<Order_By>;
|
|
1079
|
+
bids_aggregate?: InputMaybe<AuctionPool_Bid_Aggregate_Order_By>;
|
|
680
1080
|
chain_id?: InputMaybe<Order_By>;
|
|
1081
|
+
checkpoints_aggregate?: InputMaybe<Cca_Checkpoint_Aggregate_Order_By>;
|
|
681
1082
|
id?: InputMaybe<Order_By>;
|
|
682
1083
|
integrator_address?: InputMaybe<Order_By>;
|
|
683
1084
|
pool_address?: InputMaybe<Order_By>;
|
|
1085
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1086
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1087
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1088
|
+
pool_cca_currency_swept?: InputMaybe<Order_By>;
|
|
1089
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1090
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1091
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1092
|
+
pool_cca_is_graduated?: InputMaybe<Order_By>;
|
|
1093
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1094
|
+
pool_cca_tokens_swept?: InputMaybe<Order_By>;
|
|
1095
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1096
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1097
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
684
1098
|
pool_config_early_exit?: InputMaybe<Order_By>;
|
|
685
1099
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
686
1100
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
687
1101
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1102
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
1103
|
+
pool_config_funds_recipient?: InputMaybe<Order_By>;
|
|
688
1104
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
689
1105
|
pool_config_insufficient_proceeds?: InputMaybe<Order_By>;
|
|
690
1106
|
pool_config_is_token_0?: InputMaybe<Order_By>;
|
|
@@ -694,6 +1110,7 @@ export type AuctionPool_Order_By = {
|
|
|
694
1110
|
pool_config_num_tokens_to_sell?: InputMaybe<Order_By>;
|
|
695
1111
|
pool_config_starting_tick?: InputMaybe<Order_By>;
|
|
696
1112
|
pool_config_starting_time?: InputMaybe<Order_By>;
|
|
1113
|
+
pool_config_tokens_recipient?: InputMaybe<Order_By>;
|
|
697
1114
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
698
1115
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
699
1116
|
pool_current_beneficiaries_data?: InputMaybe<Order_By>;
|
|
@@ -734,10 +1151,25 @@ export declare enum AuctionPool_Select_Column {
|
|
|
734
1151
|
Id = "id",
|
|
735
1152
|
IntegratorAddress = "integrator_address",
|
|
736
1153
|
PoolAddress = "pool_address",
|
|
1154
|
+
PoolCcaClearingPrice = "pool_cca_clearing_price",
|
|
1155
|
+
PoolCcaCumulativeMps = "pool_cca_cumulative_mps",
|
|
1156
|
+
PoolCcaCumulativeMpsPerPrice = "pool_cca_cumulative_mps_per_price",
|
|
1157
|
+
PoolCcaCurrencySwept = "pool_cca_currency_swept",
|
|
1158
|
+
PoolCcaCurrentStepEndBlock = "pool_cca_current_step_end_block",
|
|
1159
|
+
PoolCcaCurrentStepMps = "pool_cca_current_step_mps",
|
|
1160
|
+
PoolCcaCurrentStepStartBlock = "pool_cca_current_step_start_block",
|
|
1161
|
+
PoolCcaIsGraduated = "pool_cca_is_graduated",
|
|
1162
|
+
PoolCcaLastCheckpointedBlock = "pool_cca_last_checkpointed_block",
|
|
1163
|
+
PoolCcaTokensSwept = "pool_cca_tokens_swept",
|
|
1164
|
+
PoolCcaTotalSupply = "pool_cca_total_supply",
|
|
1165
|
+
PoolConfigCcaTickSpacing = "pool_config_cca_tick_spacing",
|
|
1166
|
+
PoolConfigClaimBlock = "pool_config_claim_block",
|
|
737
1167
|
PoolConfigEarlyExit = "pool_config_early_exit",
|
|
738
1168
|
PoolConfigEndingTick = "pool_config_ending_tick",
|
|
739
1169
|
PoolConfigEndingTime = "pool_config_ending_time",
|
|
740
1170
|
PoolConfigEpochLength = "pool_config_epoch_length",
|
|
1171
|
+
PoolConfigFloorPrice = "pool_config_floor_price",
|
|
1172
|
+
PoolConfigFundsRecipient = "pool_config_funds_recipient",
|
|
741
1173
|
PoolConfigGamma = "pool_config_gamma",
|
|
742
1174
|
PoolConfigInsufficientProceeds = "pool_config_insufficient_proceeds",
|
|
743
1175
|
PoolConfigIsToken_0 = "pool_config_is_token_0",
|
|
@@ -747,6 +1179,7 @@ export declare enum AuctionPool_Select_Column {
|
|
|
747
1179
|
PoolConfigNumTokensToSell = "pool_config_num_tokens_to_sell",
|
|
748
1180
|
PoolConfigStartingTick = "pool_config_starting_tick",
|
|
749
1181
|
PoolConfigStartingTime = "pool_config_starting_time",
|
|
1182
|
+
PoolConfigTokensRecipient = "pool_config_tokens_recipient",
|
|
750
1183
|
PoolCreationBlock = "pool_creation_block",
|
|
751
1184
|
PoolCreationTimestamp = "pool_creation_timestamp",
|
|
752
1185
|
PoolCurrentBeneficiariesData = "pool_current_beneficiaries_data",
|
|
@@ -780,9 +1213,20 @@ export declare enum AuctionPool_Select_Column {
|
|
|
780
1213
|
}
|
|
781
1214
|
export type AuctionPool_Stddev_Order_By = {
|
|
782
1215
|
chain_id?: InputMaybe<Order_By>;
|
|
1216
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1217
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1218
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1219
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1220
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1221
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1222
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1223
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1224
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1225
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
783
1226
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
784
1227
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
785
1228
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1229
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
786
1230
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
787
1231
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
788
1232
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -810,9 +1254,20 @@ export type AuctionPool_Stddev_Order_By = {
|
|
|
810
1254
|
};
|
|
811
1255
|
export type AuctionPool_Stddev_Pop_Order_By = {
|
|
812
1256
|
chain_id?: InputMaybe<Order_By>;
|
|
1257
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1258
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1259
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1260
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1261
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1262
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1263
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1264
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1265
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1266
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
813
1267
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
814
1268
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
815
1269
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1270
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
816
1271
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
817
1272
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
818
1273
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -840,9 +1295,20 @@ export type AuctionPool_Stddev_Pop_Order_By = {
|
|
|
840
1295
|
};
|
|
841
1296
|
export type AuctionPool_Stddev_Samp_Order_By = {
|
|
842
1297
|
chain_id?: InputMaybe<Order_By>;
|
|
1298
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1299
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1300
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1301
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1302
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1303
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1304
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1305
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1306
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1307
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
843
1308
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
844
1309
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
845
1310
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1311
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
846
1312
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
847
1313
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
848
1314
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -879,10 +1345,25 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
879
1345
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
880
1346
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
881
1347
|
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
1348
|
+
pool_cca_clearing_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1349
|
+
pool_cca_cumulative_mps?: InputMaybe<Scalars['Int']['input']>;
|
|
1350
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1351
|
+
pool_cca_currency_swept?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1352
|
+
pool_cca_current_step_end_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
1353
|
+
pool_cca_current_step_mps?: InputMaybe<Scalars['Int']['input']>;
|
|
1354
|
+
pool_cca_current_step_start_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
1355
|
+
pool_cca_is_graduated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1356
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
1357
|
+
pool_cca_tokens_swept?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1358
|
+
pool_cca_total_supply?: InputMaybe<Scalars['numeric']['input']>;
|
|
1359
|
+
pool_config_cca_tick_spacing?: InputMaybe<Scalars['numeric']['input']>;
|
|
1360
|
+
pool_config_claim_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
882
1361
|
pool_config_early_exit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
883
1362
|
pool_config_ending_tick?: InputMaybe<Scalars['Int']['input']>;
|
|
884
1363
|
pool_config_ending_time?: InputMaybe<Scalars['numeric']['input']>;
|
|
885
1364
|
pool_config_epoch_length?: InputMaybe<Scalars['numeric']['input']>;
|
|
1365
|
+
pool_config_floor_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1366
|
+
pool_config_funds_recipient?: InputMaybe<Scalars['String']['input']>;
|
|
886
1367
|
pool_config_gamma?: InputMaybe<Scalars['Int']['input']>;
|
|
887
1368
|
pool_config_insufficient_proceeds?: InputMaybe<Scalars['Boolean']['input']>;
|
|
888
1369
|
pool_config_is_token_0?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -892,6 +1373,7 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
892
1373
|
pool_config_num_tokens_to_sell?: InputMaybe<Scalars['numeric']['input']>;
|
|
893
1374
|
pool_config_starting_tick?: InputMaybe<Scalars['Int']['input']>;
|
|
894
1375
|
pool_config_starting_time?: InputMaybe<Scalars['numeric']['input']>;
|
|
1376
|
+
pool_config_tokens_recipient?: InputMaybe<Scalars['String']['input']>;
|
|
895
1377
|
pool_creation_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
896
1378
|
pool_creation_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
897
1379
|
pool_current_beneficiaries_data?: InputMaybe<Scalars['jsonb']['input']>;
|
|
@@ -925,9 +1407,20 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
925
1407
|
};
|
|
926
1408
|
export type AuctionPool_Sum_Order_By = {
|
|
927
1409
|
chain_id?: InputMaybe<Order_By>;
|
|
1410
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1411
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1412
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1413
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1414
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1415
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1416
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1417
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1418
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1419
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
928
1420
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
929
1421
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
930
1422
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1423
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
931
1424
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
932
1425
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
933
1426
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -955,9 +1448,20 @@ export type AuctionPool_Sum_Order_By = {
|
|
|
955
1448
|
};
|
|
956
1449
|
export type AuctionPool_Var_Pop_Order_By = {
|
|
957
1450
|
chain_id?: InputMaybe<Order_By>;
|
|
1451
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1452
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1453
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1454
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1455
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1456
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1457
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1458
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1459
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1460
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
958
1461
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
959
1462
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
960
1463
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1464
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
961
1465
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
962
1466
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
963
1467
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -985,9 +1489,20 @@ export type AuctionPool_Var_Pop_Order_By = {
|
|
|
985
1489
|
};
|
|
986
1490
|
export type AuctionPool_Var_Samp_Order_By = {
|
|
987
1491
|
chain_id?: InputMaybe<Order_By>;
|
|
1492
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1493
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1494
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1495
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1496
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1497
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1498
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1499
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1500
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1501
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
988
1502
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
989
1503
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
990
1504
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1505
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
991
1506
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
992
1507
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
993
1508
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -1015,9 +1530,20 @@ export type AuctionPool_Var_Samp_Order_By = {
|
|
|
1015
1530
|
};
|
|
1016
1531
|
export type AuctionPool_Variance_Order_By = {
|
|
1017
1532
|
chain_id?: InputMaybe<Order_By>;
|
|
1533
|
+
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1534
|
+
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
1535
|
+
pool_cca_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1536
|
+
pool_cca_current_step_end_block?: InputMaybe<Order_By>;
|
|
1537
|
+
pool_cca_current_step_mps?: InputMaybe<Order_By>;
|
|
1538
|
+
pool_cca_current_step_start_block?: InputMaybe<Order_By>;
|
|
1539
|
+
pool_cca_last_checkpointed_block?: InputMaybe<Order_By>;
|
|
1540
|
+
pool_cca_total_supply?: InputMaybe<Order_By>;
|
|
1541
|
+
pool_config_cca_tick_spacing?: InputMaybe<Order_By>;
|
|
1542
|
+
pool_config_claim_block?: InputMaybe<Order_By>;
|
|
1018
1543
|
pool_config_ending_tick?: InputMaybe<Order_By>;
|
|
1019
1544
|
pool_config_ending_time?: InputMaybe<Order_By>;
|
|
1020
1545
|
pool_config_epoch_length?: InputMaybe<Order_By>;
|
|
1546
|
+
pool_config_floor_price?: InputMaybe<Order_By>;
|
|
1021
1547
|
pool_config_gamma?: InputMaybe<Order_By>;
|
|
1022
1548
|
pool_config_max_proceeds?: InputMaybe<Order_By>;
|
|
1023
1549
|
pool_config_min_proceeds?: InputMaybe<Order_By>;
|
|
@@ -1054,6 +1580,171 @@ export type Boolean_Comparison_Exp = {
|
|
|
1054
1580
|
_neq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1055
1581
|
_nin?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1056
1582
|
};
|
|
1583
|
+
export type Cca_Checkpoint = {
|
|
1584
|
+
__typename?: 'CCA_Checkpoint';
|
|
1585
|
+
auction_pool?: Maybe<AuctionPool>;
|
|
1586
|
+
auction_pool_id: Scalars['String']['output'];
|
|
1587
|
+
chain_id: Scalars['Int']['output'];
|
|
1588
|
+
checkpoint_block_number: Scalars['numeric']['output'];
|
|
1589
|
+
checkpoint_clearing_price: Scalars['numeric']['output'];
|
|
1590
|
+
checkpoint_creation_timestamp: Scalars['timestamptz']['output'];
|
|
1591
|
+
checkpoint_cumulative_mps: Scalars['Int']['output'];
|
|
1592
|
+
checkpoint_cumulative_mps_per_price: Scalars['numeric']['output'];
|
|
1593
|
+
checkpoint_currency_raised_at_price: Scalars['numeric']['output'];
|
|
1594
|
+
id: Scalars['String']['output'];
|
|
1595
|
+
};
|
|
1596
|
+
export type Cca_Checkpoint_Aggregate_Order_By = {
|
|
1597
|
+
avg?: InputMaybe<Cca_Checkpoint_Avg_Order_By>;
|
|
1598
|
+
count?: InputMaybe<Order_By>;
|
|
1599
|
+
max?: InputMaybe<Cca_Checkpoint_Max_Order_By>;
|
|
1600
|
+
min?: InputMaybe<Cca_Checkpoint_Min_Order_By>;
|
|
1601
|
+
stddev?: InputMaybe<Cca_Checkpoint_Stddev_Order_By>;
|
|
1602
|
+
stddev_pop?: InputMaybe<Cca_Checkpoint_Stddev_Pop_Order_By>;
|
|
1603
|
+
stddev_samp?: InputMaybe<Cca_Checkpoint_Stddev_Samp_Order_By>;
|
|
1604
|
+
sum?: InputMaybe<Cca_Checkpoint_Sum_Order_By>;
|
|
1605
|
+
var_pop?: InputMaybe<Cca_Checkpoint_Var_Pop_Order_By>;
|
|
1606
|
+
var_samp?: InputMaybe<Cca_Checkpoint_Var_Samp_Order_By>;
|
|
1607
|
+
variance?: InputMaybe<Cca_Checkpoint_Variance_Order_By>;
|
|
1608
|
+
};
|
|
1609
|
+
export type Cca_Checkpoint_Avg_Order_By = {
|
|
1610
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1611
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1612
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1613
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1614
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1615
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1616
|
+
};
|
|
1617
|
+
export type Cca_Checkpoint_Bool_Exp = {
|
|
1618
|
+
_and?: InputMaybe<Array<Cca_Checkpoint_Bool_Exp>>;
|
|
1619
|
+
_not?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
1620
|
+
_or?: InputMaybe<Array<Cca_Checkpoint_Bool_Exp>>;
|
|
1621
|
+
auction_pool?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
1622
|
+
auction_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
1623
|
+
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
1624
|
+
checkpoint_block_number?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1625
|
+
checkpoint_clearing_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1626
|
+
checkpoint_creation_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1627
|
+
checkpoint_cumulative_mps?: InputMaybe<Int_Comparison_Exp>;
|
|
1628
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1629
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1630
|
+
id?: InputMaybe<String_Comparison_Exp>;
|
|
1631
|
+
};
|
|
1632
|
+
export type Cca_Checkpoint_Max_Order_By = {
|
|
1633
|
+
auction_pool_id?: InputMaybe<Order_By>;
|
|
1634
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1635
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1636
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1637
|
+
checkpoint_creation_timestamp?: InputMaybe<Order_By>;
|
|
1638
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1639
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1640
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1641
|
+
id?: InputMaybe<Order_By>;
|
|
1642
|
+
};
|
|
1643
|
+
export type Cca_Checkpoint_Min_Order_By = {
|
|
1644
|
+
auction_pool_id?: InputMaybe<Order_By>;
|
|
1645
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1646
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1647
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1648
|
+
checkpoint_creation_timestamp?: InputMaybe<Order_By>;
|
|
1649
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1650
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1651
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1652
|
+
id?: InputMaybe<Order_By>;
|
|
1653
|
+
};
|
|
1654
|
+
export type Cca_Checkpoint_Order_By = {
|
|
1655
|
+
auction_pool?: InputMaybe<AuctionPool_Order_By>;
|
|
1656
|
+
auction_pool_id?: InputMaybe<Order_By>;
|
|
1657
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1658
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1659
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1660
|
+
checkpoint_creation_timestamp?: InputMaybe<Order_By>;
|
|
1661
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1662
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1663
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1664
|
+
id?: InputMaybe<Order_By>;
|
|
1665
|
+
};
|
|
1666
|
+
export declare enum Cca_Checkpoint_Select_Column {
|
|
1667
|
+
AuctionPoolId = "auction_pool_id",
|
|
1668
|
+
ChainId = "chain_id",
|
|
1669
|
+
CheckpointBlockNumber = "checkpoint_block_number",
|
|
1670
|
+
CheckpointClearingPrice = "checkpoint_clearing_price",
|
|
1671
|
+
CheckpointCreationTimestamp = "checkpoint_creation_timestamp",
|
|
1672
|
+
CheckpointCumulativeMps = "checkpoint_cumulative_mps",
|
|
1673
|
+
CheckpointCumulativeMpsPerPrice = "checkpoint_cumulative_mps_per_price",
|
|
1674
|
+
CheckpointCurrencyRaisedAtPrice = "checkpoint_currency_raised_at_price",
|
|
1675
|
+
Id = "id"
|
|
1676
|
+
}
|
|
1677
|
+
export type Cca_Checkpoint_Stddev_Order_By = {
|
|
1678
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1679
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1680
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1681
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1682
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1683
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1684
|
+
};
|
|
1685
|
+
export type Cca_Checkpoint_Stddev_Pop_Order_By = {
|
|
1686
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1687
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1688
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1689
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1690
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1691
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1692
|
+
};
|
|
1693
|
+
export type Cca_Checkpoint_Stddev_Samp_Order_By = {
|
|
1694
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1695
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1696
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1697
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1698
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1699
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1700
|
+
};
|
|
1701
|
+
export type Cca_Checkpoint_Stream_Cursor_Input = {
|
|
1702
|
+
initial_value: Cca_Checkpoint_Stream_Cursor_Value_Input;
|
|
1703
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1704
|
+
};
|
|
1705
|
+
export type Cca_Checkpoint_Stream_Cursor_Value_Input = {
|
|
1706
|
+
auction_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
1707
|
+
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1708
|
+
checkpoint_block_number?: InputMaybe<Scalars['numeric']['input']>;
|
|
1709
|
+
checkpoint_clearing_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1710
|
+
checkpoint_creation_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1711
|
+
checkpoint_cumulative_mps?: InputMaybe<Scalars['Int']['input']>;
|
|
1712
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1713
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1714
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1715
|
+
};
|
|
1716
|
+
export type Cca_Checkpoint_Sum_Order_By = {
|
|
1717
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1718
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1719
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1720
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1721
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1722
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1723
|
+
};
|
|
1724
|
+
export type Cca_Checkpoint_Var_Pop_Order_By = {
|
|
1725
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1726
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1727
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1728
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1729
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1730
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1731
|
+
};
|
|
1732
|
+
export type Cca_Checkpoint_Var_Samp_Order_By = {
|
|
1733
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1734
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1735
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1736
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1737
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1738
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1739
|
+
};
|
|
1740
|
+
export type Cca_Checkpoint_Variance_Order_By = {
|
|
1741
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1742
|
+
checkpoint_block_number?: InputMaybe<Order_By>;
|
|
1743
|
+
checkpoint_clearing_price?: InputMaybe<Order_By>;
|
|
1744
|
+
checkpoint_cumulative_mps?: InputMaybe<Order_By>;
|
|
1745
|
+
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1746
|
+
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1747
|
+
};
|
|
1057
1748
|
export type GraduationPool = {
|
|
1058
1749
|
__typename?: 'GraduationPool';
|
|
1059
1750
|
asset_id: Scalars['String']['output'];
|
|
@@ -1721,11 +2412,11 @@ export type Token = {
|
|
|
1721
2412
|
token_fee_receiver_address?: Maybe<Scalars['String']['output']>;
|
|
1722
2413
|
token_image_public_url?: Maybe<Scalars['String']['output']>;
|
|
1723
2414
|
token_image_uri?: Maybe<Scalars['String']['output']>;
|
|
1724
|
-
token_is_derc_20: Scalars['Boolean']['output'];
|
|
1725
2415
|
token_name: Scalars['String']['output'];
|
|
1726
2416
|
token_numeraire_address: Scalars['String']['output'];
|
|
1727
2417
|
token_symbol: Scalars['String']['output'];
|
|
1728
2418
|
token_total_supply: Scalars['numeric']['output'];
|
|
2419
|
+
token_type: Scalars['String']['output'];
|
|
1729
2420
|
token_uri: Scalars['String']['output'];
|
|
1730
2421
|
token_uri_data?: Maybe<Scalars['jsonb']['output']>;
|
|
1731
2422
|
token_vesting_recipient_addresses: Array<Scalars['String']['output']>;
|
|
@@ -1811,11 +2502,11 @@ export type Token_Bool_Exp = {
|
|
|
1811
2502
|
token_fee_receiver_address?: InputMaybe<String_Comparison_Exp>;
|
|
1812
2503
|
token_image_public_url?: InputMaybe<String_Comparison_Exp>;
|
|
1813
2504
|
token_image_uri?: InputMaybe<String_Comparison_Exp>;
|
|
1814
|
-
token_is_derc_20?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1815
2505
|
token_name?: InputMaybe<String_Comparison_Exp>;
|
|
1816
2506
|
token_numeraire_address?: InputMaybe<String_Comparison_Exp>;
|
|
1817
2507
|
token_symbol?: InputMaybe<String_Comparison_Exp>;
|
|
1818
2508
|
token_total_supply?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2509
|
+
token_type?: InputMaybe<String_Comparison_Exp>;
|
|
1819
2510
|
token_uri?: InputMaybe<String_Comparison_Exp>;
|
|
1820
2511
|
token_uri_data?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1821
2512
|
token_vesting_recipient_addresses?: InputMaybe<String_Array_Comparison_Exp>;
|
|
@@ -1838,6 +2529,7 @@ export type Token_Max_Fields = {
|
|
|
1838
2529
|
token_numeraire_address?: Maybe<Scalars['String']['output']>;
|
|
1839
2530
|
token_symbol?: Maybe<Scalars['String']['output']>;
|
|
1840
2531
|
token_total_supply?: Maybe<Scalars['numeric']['output']>;
|
|
2532
|
+
token_type?: Maybe<Scalars['String']['output']>;
|
|
1841
2533
|
token_uri?: Maybe<Scalars['String']['output']>;
|
|
1842
2534
|
token_vesting_recipient_addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
1843
2535
|
};
|
|
@@ -1859,6 +2551,7 @@ export type Token_Min_Fields = {
|
|
|
1859
2551
|
token_numeraire_address?: Maybe<Scalars['String']['output']>;
|
|
1860
2552
|
token_symbol?: Maybe<Scalars['String']['output']>;
|
|
1861
2553
|
token_total_supply?: Maybe<Scalars['numeric']['output']>;
|
|
2554
|
+
token_type?: Maybe<Scalars['String']['output']>;
|
|
1862
2555
|
token_uri?: Maybe<Scalars['String']['output']>;
|
|
1863
2556
|
token_vesting_recipient_addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
1864
2557
|
};
|
|
@@ -1879,11 +2572,11 @@ export type Token_Order_By = {
|
|
|
1879
2572
|
token_fee_receiver_address?: InputMaybe<Order_By>;
|
|
1880
2573
|
token_image_public_url?: InputMaybe<Order_By>;
|
|
1881
2574
|
token_image_uri?: InputMaybe<Order_By>;
|
|
1882
|
-
token_is_derc_20?: InputMaybe<Order_By>;
|
|
1883
2575
|
token_name?: InputMaybe<Order_By>;
|
|
1884
2576
|
token_numeraire_address?: InputMaybe<Order_By>;
|
|
1885
2577
|
token_symbol?: InputMaybe<Order_By>;
|
|
1886
2578
|
token_total_supply?: InputMaybe<Order_By>;
|
|
2579
|
+
token_type?: InputMaybe<Order_By>;
|
|
1887
2580
|
token_uri?: InputMaybe<Order_By>;
|
|
1888
2581
|
token_uri_data?: InputMaybe<Order_By>;
|
|
1889
2582
|
token_vesting_recipient_addresses?: InputMaybe<Order_By>;
|
|
@@ -1901,11 +2594,11 @@ export declare enum Token_Select_Column {
|
|
|
1901
2594
|
TokenFeeReceiverAddress = "token_fee_receiver_address",
|
|
1902
2595
|
TokenImagePublicUrl = "token_image_public_url",
|
|
1903
2596
|
TokenImageUri = "token_image_uri",
|
|
1904
|
-
TokenIsDerc_20 = "token_is_derc_20",
|
|
1905
2597
|
TokenName = "token_name",
|
|
1906
2598
|
TokenNumeraireAddress = "token_numeraire_address",
|
|
1907
2599
|
TokenSymbol = "token_symbol",
|
|
1908
2600
|
TokenTotalSupply = "token_total_supply",
|
|
2601
|
+
TokenType = "token_type",
|
|
1909
2602
|
TokenUri = "token_uri",
|
|
1910
2603
|
TokenUriData = "token_uri_data",
|
|
1911
2604
|
TokenVestingRecipientAddresses = "token_vesting_recipient_addresses"
|
|
@@ -1948,11 +2641,11 @@ export type Token_Stream_Cursor_Value_Input = {
|
|
|
1948
2641
|
token_fee_receiver_address?: InputMaybe<Scalars['String']['input']>;
|
|
1949
2642
|
token_image_public_url?: InputMaybe<Scalars['String']['input']>;
|
|
1950
2643
|
token_image_uri?: InputMaybe<Scalars['String']['input']>;
|
|
1951
|
-
token_is_derc_20?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1952
2644
|
token_name?: InputMaybe<Scalars['String']['input']>;
|
|
1953
2645
|
token_numeraire_address?: InputMaybe<Scalars['String']['input']>;
|
|
1954
2646
|
token_symbol?: InputMaybe<Scalars['String']['input']>;
|
|
1955
2647
|
token_total_supply?: InputMaybe<Scalars['numeric']['input']>;
|
|
2648
|
+
token_type?: InputMaybe<Scalars['String']['input']>;
|
|
1956
2649
|
token_uri?: InputMaybe<Scalars['String']['input']>;
|
|
1957
2650
|
token_uri_data?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1958
2651
|
token_vesting_recipient_addresses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -2231,9 +2924,13 @@ export type Query_Root = {
|
|
|
2231
2924
|
Asset: Array<Asset>;
|
|
2232
2925
|
Asset_by_pk?: Maybe<Asset>;
|
|
2233
2926
|
AuctionPool: Array<AuctionPool>;
|
|
2927
|
+
AuctionPool_Bid: Array<AuctionPool_Bid>;
|
|
2928
|
+
AuctionPool_Bid_by_pk?: Maybe<AuctionPool_Bid>;
|
|
2234
2929
|
AuctionPool_Swap: Array<AuctionPool_Swap>;
|
|
2235
2930
|
AuctionPool_Swap_by_pk?: Maybe<AuctionPool_Swap>;
|
|
2236
2931
|
AuctionPool_by_pk?: Maybe<AuctionPool>;
|
|
2932
|
+
CCA_Checkpoint: Array<Cca_Checkpoint>;
|
|
2933
|
+
CCA_Checkpoint_by_pk?: Maybe<Cca_Checkpoint>;
|
|
2237
2934
|
GraduationPool: Array<GraduationPool>;
|
|
2238
2935
|
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
2239
2936
|
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
@@ -2267,6 +2964,16 @@ export type Query_RootAuctionPoolArgs = {
|
|
|
2267
2964
|
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
2268
2965
|
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
2269
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
|
+
};
|
|
2270
2977
|
export type Query_RootAuctionPool_SwapArgs = {
|
|
2271
2978
|
distinct_on?: InputMaybe<Array<AuctionPool_Swap_Select_Column>>;
|
|
2272
2979
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2280,6 +2987,16 @@ export type Query_RootAuctionPool_Swap_By_PkArgs = {
|
|
|
2280
2987
|
export type Query_RootAuctionPool_By_PkArgs = {
|
|
2281
2988
|
id: Scalars['String']['input'];
|
|
2282
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
|
+
};
|
|
2283
3000
|
export type Query_RootGraduationPoolArgs = {
|
|
2284
3001
|
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
2285
3002
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2459,11 +3176,17 @@ export type Subscription_Root = {
|
|
|
2459
3176
|
Asset_by_pk?: Maybe<Asset>;
|
|
2460
3177
|
Asset_stream: Array<Asset>;
|
|
2461
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>;
|
|
2462
3182
|
AuctionPool_Swap: Array<AuctionPool_Swap>;
|
|
2463
3183
|
AuctionPool_Swap_by_pk?: Maybe<AuctionPool_Swap>;
|
|
2464
3184
|
AuctionPool_Swap_stream: Array<AuctionPool_Swap>;
|
|
2465
3185
|
AuctionPool_by_pk?: Maybe<AuctionPool>;
|
|
2466
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>;
|
|
2467
3190
|
GraduationPool: Array<GraduationPool>;
|
|
2468
3191
|
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
2469
3192
|
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
@@ -2510,6 +3233,21 @@ export type Subscription_RootAuctionPoolArgs = {
|
|
|
2510
3233
|
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
2511
3234
|
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
2512
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
|
+
};
|
|
2513
3251
|
export type Subscription_RootAuctionPool_SwapArgs = {
|
|
2514
3252
|
distinct_on?: InputMaybe<Array<AuctionPool_Swap_Select_Column>>;
|
|
2515
3253
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2533,6 +3271,21 @@ export type Subscription_RootAuctionPool_StreamArgs = {
|
|
|
2533
3271
|
cursor: Array<InputMaybe<AuctionPool_Stream_Cursor_Input>>;
|
|
2534
3272
|
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
2535
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
|
+
};
|
|
2536
3289
|
export type Subscription_RootGraduationPoolArgs = {
|
|
2537
3290
|
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
2538
3291
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2831,6 +3584,7 @@ export type ListLiveAssetsForIntegratorQueryVariables = Exact<{
|
|
|
2831
3584
|
endingTime?: InputMaybe<Scalars['numeric']['input']>;
|
|
2832
3585
|
startingTime?: InputMaybe<Scalars['numeric']['input']>;
|
|
2833
3586
|
orderBy?: InputMaybe<Array<Asset_Order_By> | Asset_Order_By>;
|
|
3587
|
+
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
2834
3588
|
}>;
|
|
2835
3589
|
export type ListLiveAssetsForIntegratorQuery = {
|
|
2836
3590
|
__typename?: 'query_root';
|
|
@@ -2918,6 +3672,7 @@ export type ListIncomingAssetsForIntegratorQueryVariables = Exact<{
|
|
|
2918
3672
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2919
3673
|
startingTime?: InputMaybe<Scalars['numeric']['input']>;
|
|
2920
3674
|
orderBy?: InputMaybe<Array<Asset_Order_By> | Asset_Order_By>;
|
|
3675
|
+
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
2921
3676
|
}>;
|
|
2922
3677
|
export type ListIncomingAssetsForIntegratorQuery = {
|
|
2923
3678
|
__typename?: 'query_root';
|
|
@@ -3004,6 +3759,7 @@ export type ListGraduatedAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3004
3759
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3005
3760
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3006
3761
|
orderBy?: InputMaybe<Array<Asset_Order_By> | Asset_Order_By>;
|
|
3762
|
+
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3007
3763
|
}>;
|
|
3008
3764
|
export type ListGraduatedAssetsForIntegratorQuery = {
|
|
3009
3765
|
__typename?: 'query_root';
|
|
@@ -3090,6 +3846,7 @@ export type ListAllAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3090
3846
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3091
3847
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3092
3848
|
orderBy?: InputMaybe<Array<Asset_Order_By> | Asset_Order_By>;
|
|
3849
|
+
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3093
3850
|
}>;
|
|
3094
3851
|
export type ListAllAssetsForIntegratorQuery = {
|
|
3095
3852
|
__typename?: 'query_root';
|