@longdotxyz/shared 0.0.82 → 0.0.95
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 +955 -51
- package/dist/contracts/asset.contract.js +51 -16
- 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 +2287 -66
- 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 +1433 -509
- package/dist/graphql/generated.js +162 -19
- 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'];
|
|
@@ -207,6 +227,8 @@ export type AuctionPool = {
|
|
|
207
227
|
checkpoints: Array<Cca_Checkpoint>;
|
|
208
228
|
id: Scalars['String']['output'];
|
|
209
229
|
integrator_address: Scalars['String']['output'];
|
|
230
|
+
numeraire_market_data?: Maybe<NumeraireMarketData>;
|
|
231
|
+
numeraire_market_data_id?: Maybe<Scalars['String']['output']>;
|
|
210
232
|
pool_address: Scalars['String']['output'];
|
|
211
233
|
pool_cca_clearing_price?: Maybe<Scalars['numeric']['output']>;
|
|
212
234
|
pool_cca_cumulative_mps?: Maybe<Scalars['Int']['output']>;
|
|
@@ -263,9 +285,15 @@ export type AuctionPool = {
|
|
|
263
285
|
pool_last_epoch?: Maybe<Scalars['Int']['output']>;
|
|
264
286
|
pool_last_epoch_total_tokens_sold: Scalars['numeric']['output'];
|
|
265
287
|
pool_last_swap_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
288
|
+
pool_market_data?: Maybe<PairFilterResult>;
|
|
266
289
|
pool_migration_block?: Maybe<Scalars['numeric']['output']>;
|
|
267
290
|
pool_migration_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
268
291
|
pool_type: Scalars['String']['output'];
|
|
292
|
+
pool_volume_24h_base?: Maybe<Scalars['numeric']['output']>;
|
|
293
|
+
pool_volume_24h_quote?: Maybe<Scalars['numeric']['output']>;
|
|
294
|
+
pool_volume_24h_swap_count?: Maybe<Scalars['Int']['output']>;
|
|
295
|
+
pool_volume_24h_usd?: Maybe<Scalars['numeric']['output']>;
|
|
296
|
+
pool_volume_last_updated?: Maybe<Scalars['timestamptz']['output']>;
|
|
269
297
|
quote_token?: Maybe<Token>;
|
|
270
298
|
quote_token_id: Scalars['String']['output'];
|
|
271
299
|
swaps: Array<AuctionPool_Swap>;
|
|
@@ -876,6 +904,10 @@ export type AuctionPool_Avg_Order_By = {
|
|
|
876
904
|
pool_last_epoch?: InputMaybe<Order_By>;
|
|
877
905
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
878
906
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
907
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
908
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
909
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
910
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
879
911
|
};
|
|
880
912
|
export type AuctionPool_Bool_Exp = {
|
|
881
913
|
_and?: InputMaybe<Array<AuctionPool_Bool_Exp>>;
|
|
@@ -890,6 +922,8 @@ export type AuctionPool_Bool_Exp = {
|
|
|
890
922
|
checkpoints?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
891
923
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
892
924
|
integrator_address?: InputMaybe<String_Comparison_Exp>;
|
|
925
|
+
numeraire_market_data?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
926
|
+
numeraire_market_data_id?: InputMaybe<String_Comparison_Exp>;
|
|
893
927
|
pool_address?: InputMaybe<String_Comparison_Exp>;
|
|
894
928
|
pool_cca_clearing_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
895
929
|
pool_cca_cumulative_mps?: InputMaybe<Int_Comparison_Exp>;
|
|
@@ -949,6 +983,11 @@ export type AuctionPool_Bool_Exp = {
|
|
|
949
983
|
pool_migration_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
950
984
|
pool_migration_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
951
985
|
pool_type?: InputMaybe<String_Comparison_Exp>;
|
|
986
|
+
pool_volume_24h_base?: InputMaybe<Numeric_Comparison_Exp>;
|
|
987
|
+
pool_volume_24h_quote?: InputMaybe<Numeric_Comparison_Exp>;
|
|
988
|
+
pool_volume_24h_swap_count?: InputMaybe<Int_Comparison_Exp>;
|
|
989
|
+
pool_volume_24h_usd?: InputMaybe<Numeric_Comparison_Exp>;
|
|
990
|
+
pool_volume_last_updated?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
952
991
|
quote_token?: InputMaybe<Token_Bool_Exp>;
|
|
953
992
|
quote_token_id?: InputMaybe<String_Comparison_Exp>;
|
|
954
993
|
swaps?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
@@ -959,6 +998,7 @@ export type AuctionPool_Max_Order_By = {
|
|
|
959
998
|
chain_id?: InputMaybe<Order_By>;
|
|
960
999
|
id?: InputMaybe<Order_By>;
|
|
961
1000
|
integrator_address?: InputMaybe<Order_By>;
|
|
1001
|
+
numeraire_market_data_id?: InputMaybe<Order_By>;
|
|
962
1002
|
pool_address?: InputMaybe<Order_By>;
|
|
963
1003
|
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
964
1004
|
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
@@ -1010,6 +1050,11 @@ export type AuctionPool_Max_Order_By = {
|
|
|
1010
1050
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1011
1051
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
1012
1052
|
pool_type?: InputMaybe<Order_By>;
|
|
1053
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1054
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1055
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1056
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1057
|
+
pool_volume_last_updated?: InputMaybe<Order_By>;
|
|
1013
1058
|
quote_token_id?: InputMaybe<Order_By>;
|
|
1014
1059
|
};
|
|
1015
1060
|
export type AuctionPool_Min_Order_By = {
|
|
@@ -1018,6 +1063,7 @@ export type AuctionPool_Min_Order_By = {
|
|
|
1018
1063
|
chain_id?: InputMaybe<Order_By>;
|
|
1019
1064
|
id?: InputMaybe<Order_By>;
|
|
1020
1065
|
integrator_address?: InputMaybe<Order_By>;
|
|
1066
|
+
numeraire_market_data_id?: InputMaybe<Order_By>;
|
|
1021
1067
|
pool_address?: InputMaybe<Order_By>;
|
|
1022
1068
|
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1023
1069
|
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
@@ -1069,6 +1115,11 @@ export type AuctionPool_Min_Order_By = {
|
|
|
1069
1115
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1070
1116
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
1071
1117
|
pool_type?: InputMaybe<Order_By>;
|
|
1118
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1119
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1120
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1121
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1122
|
+
pool_volume_last_updated?: InputMaybe<Order_By>;
|
|
1072
1123
|
quote_token_id?: InputMaybe<Order_By>;
|
|
1073
1124
|
};
|
|
1074
1125
|
export type AuctionPool_Order_By = {
|
|
@@ -1081,6 +1132,8 @@ export type AuctionPool_Order_By = {
|
|
|
1081
1132
|
checkpoints_aggregate?: InputMaybe<Cca_Checkpoint_Aggregate_Order_By>;
|
|
1082
1133
|
id?: InputMaybe<Order_By>;
|
|
1083
1134
|
integrator_address?: InputMaybe<Order_By>;
|
|
1135
|
+
numeraire_market_data?: InputMaybe<NumeraireMarketData_Order_By>;
|
|
1136
|
+
numeraire_market_data_id?: InputMaybe<Order_By>;
|
|
1084
1137
|
pool_address?: InputMaybe<Order_By>;
|
|
1085
1138
|
pool_cca_clearing_price?: InputMaybe<Order_By>;
|
|
1086
1139
|
pool_cca_cumulative_mps?: InputMaybe<Order_By>;
|
|
@@ -1140,6 +1193,11 @@ export type AuctionPool_Order_By = {
|
|
|
1140
1193
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1141
1194
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
1142
1195
|
pool_type?: InputMaybe<Order_By>;
|
|
1196
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1197
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1198
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1199
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1200
|
+
pool_volume_last_updated?: InputMaybe<Order_By>;
|
|
1143
1201
|
quote_token?: InputMaybe<Token_Order_By>;
|
|
1144
1202
|
quote_token_id?: InputMaybe<Order_By>;
|
|
1145
1203
|
swaps_aggregate?: InputMaybe<AuctionPool_Swap_Aggregate_Order_By>;
|
|
@@ -1150,6 +1208,7 @@ export declare enum AuctionPool_Select_Column {
|
|
|
1150
1208
|
ChainId = "chain_id",
|
|
1151
1209
|
Id = "id",
|
|
1152
1210
|
IntegratorAddress = "integrator_address",
|
|
1211
|
+
NumeraireMarketDataId = "numeraire_market_data_id",
|
|
1153
1212
|
PoolAddress = "pool_address",
|
|
1154
1213
|
PoolCcaClearingPrice = "pool_cca_clearing_price",
|
|
1155
1214
|
PoolCcaCumulativeMps = "pool_cca_cumulative_mps",
|
|
@@ -1209,6 +1268,11 @@ export declare enum AuctionPool_Select_Column {
|
|
|
1209
1268
|
PoolMigrationBlock = "pool_migration_block",
|
|
1210
1269
|
PoolMigrationTimestamp = "pool_migration_timestamp",
|
|
1211
1270
|
PoolType = "pool_type",
|
|
1271
|
+
PoolVolume_24hBase = "pool_volume_24h_base",
|
|
1272
|
+
PoolVolume_24hQuote = "pool_volume_24h_quote",
|
|
1273
|
+
PoolVolume_24hSwapCount = "pool_volume_24h_swap_count",
|
|
1274
|
+
PoolVolume_24hUsd = "pool_volume_24h_usd",
|
|
1275
|
+
PoolVolumeLastUpdated = "pool_volume_last_updated",
|
|
1212
1276
|
QuoteTokenId = "quote_token_id"
|
|
1213
1277
|
}
|
|
1214
1278
|
export type AuctionPool_Stddev_Order_By = {
|
|
@@ -1251,6 +1315,10 @@ export type AuctionPool_Stddev_Order_By = {
|
|
|
1251
1315
|
pool_last_epoch?: InputMaybe<Order_By>;
|
|
1252
1316
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1253
1317
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1318
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1319
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1320
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1321
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1254
1322
|
};
|
|
1255
1323
|
export type AuctionPool_Stddev_Pop_Order_By = {
|
|
1256
1324
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -1292,6 +1360,10 @@ export type AuctionPool_Stddev_Pop_Order_By = {
|
|
|
1292
1360
|
pool_last_epoch?: InputMaybe<Order_By>;
|
|
1293
1361
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1294
1362
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1363
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1364
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1365
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1366
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1295
1367
|
};
|
|
1296
1368
|
export type AuctionPool_Stddev_Samp_Order_By = {
|
|
1297
1369
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -1333,6 +1405,10 @@ export type AuctionPool_Stddev_Samp_Order_By = {
|
|
|
1333
1405
|
pool_last_epoch?: InputMaybe<Order_By>;
|
|
1334
1406
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1335
1407
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1408
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1409
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1410
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1411
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1336
1412
|
};
|
|
1337
1413
|
export type AuctionPool_Stream_Cursor_Input = {
|
|
1338
1414
|
initial_value: AuctionPool_Stream_Cursor_Value_Input;
|
|
@@ -1344,6 +1420,7 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
1344
1420
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1345
1421
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
1346
1422
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
1423
|
+
numeraire_market_data_id?: InputMaybe<Scalars['String']['input']>;
|
|
1347
1424
|
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
1348
1425
|
pool_cca_clearing_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1349
1426
|
pool_cca_cumulative_mps?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1403,6 +1480,11 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
1403
1480
|
pool_migration_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
1404
1481
|
pool_migration_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1405
1482
|
pool_type?: InputMaybe<Scalars['String']['input']>;
|
|
1483
|
+
pool_volume_24h_base?: InputMaybe<Scalars['numeric']['input']>;
|
|
1484
|
+
pool_volume_24h_quote?: InputMaybe<Scalars['numeric']['input']>;
|
|
1485
|
+
pool_volume_24h_swap_count?: InputMaybe<Scalars['Int']['input']>;
|
|
1486
|
+
pool_volume_24h_usd?: InputMaybe<Scalars['numeric']['input']>;
|
|
1487
|
+
pool_volume_last_updated?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1406
1488
|
quote_token_id?: InputMaybe<Scalars['String']['input']>;
|
|
1407
1489
|
};
|
|
1408
1490
|
export type AuctionPool_Sum_Order_By = {
|
|
@@ -1445,6 +1527,10 @@ export type AuctionPool_Sum_Order_By = {
|
|
|
1445
1527
|
pool_last_epoch?: InputMaybe<Order_By>;
|
|
1446
1528
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1447
1529
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1530
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1531
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1532
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1533
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1448
1534
|
};
|
|
1449
1535
|
export type AuctionPool_Var_Pop_Order_By = {
|
|
1450
1536
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -1486,6 +1572,10 @@ export type AuctionPool_Var_Pop_Order_By = {
|
|
|
1486
1572
|
pool_last_epoch?: InputMaybe<Order_By>;
|
|
1487
1573
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1488
1574
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1575
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1576
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1577
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1578
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1489
1579
|
};
|
|
1490
1580
|
export type AuctionPool_Var_Samp_Order_By = {
|
|
1491
1581
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -1527,6 +1617,10 @@ export type AuctionPool_Var_Samp_Order_By = {
|
|
|
1527
1617
|
pool_last_epoch?: InputMaybe<Order_By>;
|
|
1528
1618
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1529
1619
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1620
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1621
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1622
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1623
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1530
1624
|
};
|
|
1531
1625
|
export type AuctionPool_Variance_Order_By = {
|
|
1532
1626
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -1568,6 +1662,10 @@ export type AuctionPool_Variance_Order_By = {
|
|
|
1568
1662
|
pool_last_epoch?: InputMaybe<Order_By>;
|
|
1569
1663
|
pool_last_epoch_total_tokens_sold?: InputMaybe<Order_By>;
|
|
1570
1664
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
1665
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
1666
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
1667
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
1668
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
1571
1669
|
};
|
|
1572
1670
|
export type Boolean_Comparison_Exp = {
|
|
1573
1671
|
_eq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -1745,6 +1843,66 @@ export type Cca_Checkpoint_Variance_Order_By = {
|
|
|
1745
1843
|
checkpoint_cumulative_mps_per_price?: InputMaybe<Order_By>;
|
|
1746
1844
|
checkpoint_currency_raised_at_price?: InputMaybe<Order_By>;
|
|
1747
1845
|
};
|
|
1846
|
+
export type EnhancedToken = {
|
|
1847
|
+
__typename?: 'EnhancedToken';
|
|
1848
|
+
address: Scalars['String']['output'];
|
|
1849
|
+
circulatingSupply?: Maybe<Scalars['String']['output']>;
|
|
1850
|
+
cmcId?: Maybe<Scalars['Int']['output']>;
|
|
1851
|
+
createBlockNumber?: Maybe<Scalars['Int']['output']>;
|
|
1852
|
+
createTransactionHash?: Maybe<Scalars['String']['output']>;
|
|
1853
|
+
createdAt?: Maybe<Scalars['Int']['output']>;
|
|
1854
|
+
creatorAddress?: Maybe<Scalars['String']['output']>;
|
|
1855
|
+
decimals: Scalars['Int']['output'];
|
|
1856
|
+
exchanges?: Maybe<Array<Exchange>>;
|
|
1857
|
+
explorerData?: Maybe<ExplorerTokenData>;
|
|
1858
|
+
freezable?: Maybe<Scalars['String']['output']>;
|
|
1859
|
+
id: Scalars['String']['output'];
|
|
1860
|
+
imageLargeUrl?: Maybe<Scalars['String']['output']>;
|
|
1861
|
+
imageSmallUrl?: Maybe<Scalars['String']['output']>;
|
|
1862
|
+
imageThumbUrl?: Maybe<Scalars['String']['output']>;
|
|
1863
|
+
info?: Maybe<TokenInfo>;
|
|
1864
|
+
isFreezableValid?: Maybe<Scalars['Boolean']['output']>;
|
|
1865
|
+
isMintableValid?: Maybe<Scalars['Boolean']['output']>;
|
|
1866
|
+
isScam?: Maybe<Scalars['Boolean']['output']>;
|
|
1867
|
+
launchpad?: Maybe<LaunchpadData>;
|
|
1868
|
+
mintable?: Maybe<Scalars['String']['output']>;
|
|
1869
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1870
|
+
networkId: Scalars['Int']['output'];
|
|
1871
|
+
pooled?: Maybe<Scalars['String']['output']>;
|
|
1872
|
+
socialLinks?: Maybe<SocialLinks>;
|
|
1873
|
+
symbol?: Maybe<Scalars['String']['output']>;
|
|
1874
|
+
totalSupply?: Maybe<Scalars['String']['output']>;
|
|
1875
|
+
};
|
|
1876
|
+
export type Exchange = {
|
|
1877
|
+
__typename?: 'Exchange';
|
|
1878
|
+
address: Scalars['String']['output'];
|
|
1879
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
1880
|
+
exchangeVersion?: Maybe<Scalars['String']['output']>;
|
|
1881
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
1882
|
+
id: Scalars['String']['output'];
|
|
1883
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1884
|
+
networkId: Scalars['Int']['output'];
|
|
1885
|
+
tradeUrl?: Maybe<Scalars['String']['output']>;
|
|
1886
|
+
};
|
|
1887
|
+
export type ExplorerTokenData = {
|
|
1888
|
+
__typename?: 'ExplorerTokenData';
|
|
1889
|
+
blueCheckmark?: Maybe<Scalars['Boolean']['output']>;
|
|
1890
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1891
|
+
divisor?: Maybe<Scalars['String']['output']>;
|
|
1892
|
+
id: Scalars['String']['output'];
|
|
1893
|
+
tokenPriceUSD?: Maybe<Scalars['String']['output']>;
|
|
1894
|
+
tokenType?: Maybe<Scalars['String']['output']>;
|
|
1895
|
+
};
|
|
1896
|
+
export type FilterExchange = {
|
|
1897
|
+
__typename?: 'FilterExchange';
|
|
1898
|
+
address: Scalars['String']['output'];
|
|
1899
|
+
exchangeVersion?: Maybe<Scalars['String']['output']>;
|
|
1900
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
1901
|
+
id: Scalars['String']['output'];
|
|
1902
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1903
|
+
networkId: Scalars['Int']['output'];
|
|
1904
|
+
tradeUrl?: Maybe<Scalars['String']['output']>;
|
|
1905
|
+
};
|
|
1748
1906
|
export type GraduationPool = {
|
|
1749
1907
|
__typename?: 'GraduationPool';
|
|
1750
1908
|
asset_id: Scalars['String']['output'];
|
|
@@ -1755,6 +1913,8 @@ export type GraduationPool = {
|
|
|
1755
1913
|
chain_id: Scalars['Int']['output'];
|
|
1756
1914
|
id: Scalars['String']['output'];
|
|
1757
1915
|
integrator_address: Scalars['String']['output'];
|
|
1916
|
+
numeraire_market_data?: Maybe<NumeraireMarketData>;
|
|
1917
|
+
numeraire_market_data_id?: Maybe<Scalars['String']['output']>;
|
|
1758
1918
|
pool_address: Scalars['String']['output'];
|
|
1759
1919
|
pool_config_is_token_0: Scalars['Boolean']['output'];
|
|
1760
1920
|
pool_current_fdv?: Maybe<Scalars['numeric']['output']>;
|
|
@@ -1769,9 +1929,15 @@ export type GraduationPool = {
|
|
|
1769
1929
|
pool_current_tick: Scalars['Int']['output'];
|
|
1770
1930
|
pool_current_total_fee_base_token: Scalars['numeric']['output'];
|
|
1771
1931
|
pool_current_total_fee_quote_token: Scalars['numeric']['output'];
|
|
1932
|
+
pool_market_data?: Maybe<PairFilterResult>;
|
|
1772
1933
|
pool_migration_block?: Maybe<Scalars['numeric']['output']>;
|
|
1773
1934
|
pool_migration_timestamp?: Maybe<Scalars['timestamptz']['output']>;
|
|
1774
1935
|
pool_type: Scalars['String']['output'];
|
|
1936
|
+
pool_volume_24h_base?: Maybe<Scalars['numeric']['output']>;
|
|
1937
|
+
pool_volume_24h_quote?: Maybe<Scalars['numeric']['output']>;
|
|
1938
|
+
pool_volume_24h_swap_count?: Maybe<Scalars['Int']['output']>;
|
|
1939
|
+
pool_volume_24h_usd?: Maybe<Scalars['numeric']['output']>;
|
|
1940
|
+
pool_volume_last_updated?: Maybe<Scalars['timestamptz']['output']>;
|
|
1775
1941
|
quote_token?: Maybe<Token>;
|
|
1776
1942
|
quote_token_id: Scalars['String']['output'];
|
|
1777
1943
|
swaps: Array<GraduationPool_Swap>;
|
|
@@ -2023,6 +2189,10 @@ export type GraduationPool_Avg_Order_By = {
|
|
|
2023
2189
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2024
2190
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2025
2191
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2192
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2193
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2194
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2195
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2026
2196
|
};
|
|
2027
2197
|
export type GraduationPool_Bool_Exp = {
|
|
2028
2198
|
_and?: InputMaybe<Array<GraduationPool_Bool_Exp>>;
|
|
@@ -2036,6 +2206,8 @@ export type GraduationPool_Bool_Exp = {
|
|
|
2036
2206
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
2037
2207
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
2038
2208
|
integrator_address?: InputMaybe<String_Comparison_Exp>;
|
|
2209
|
+
numeraire_market_data?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
2210
|
+
numeraire_market_data_id?: InputMaybe<String_Comparison_Exp>;
|
|
2039
2211
|
pool_address?: InputMaybe<String_Comparison_Exp>;
|
|
2040
2212
|
pool_config_is_token_0?: InputMaybe<Boolean_Comparison_Exp>;
|
|
2041
2213
|
pool_current_fdv?: InputMaybe<Numeric_Comparison_Exp>;
|
|
@@ -2053,6 +2225,11 @@ export type GraduationPool_Bool_Exp = {
|
|
|
2053
2225
|
pool_migration_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2054
2226
|
pool_migration_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2055
2227
|
pool_type?: InputMaybe<String_Comparison_Exp>;
|
|
2228
|
+
pool_volume_24h_base?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2229
|
+
pool_volume_24h_quote?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2230
|
+
pool_volume_24h_swap_count?: InputMaybe<Int_Comparison_Exp>;
|
|
2231
|
+
pool_volume_24h_usd?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2232
|
+
pool_volume_last_updated?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2056
2233
|
quote_token?: InputMaybe<Token_Bool_Exp>;
|
|
2057
2234
|
quote_token_id?: InputMaybe<String_Comparison_Exp>;
|
|
2058
2235
|
swaps?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
@@ -2064,6 +2241,7 @@ export type GraduationPool_Max_Order_By = {
|
|
|
2064
2241
|
chain_id?: InputMaybe<Order_By>;
|
|
2065
2242
|
id?: InputMaybe<Order_By>;
|
|
2066
2243
|
integrator_address?: InputMaybe<Order_By>;
|
|
2244
|
+
numeraire_market_data_id?: InputMaybe<Order_By>;
|
|
2067
2245
|
pool_address?: InputMaybe<Order_By>;
|
|
2068
2246
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
2069
2247
|
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
@@ -2080,6 +2258,11 @@ export type GraduationPool_Max_Order_By = {
|
|
|
2080
2258
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2081
2259
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
2082
2260
|
pool_type?: InputMaybe<Order_By>;
|
|
2261
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2262
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2263
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2264
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2265
|
+
pool_volume_last_updated?: InputMaybe<Order_By>;
|
|
2083
2266
|
quote_token_id?: InputMaybe<Order_By>;
|
|
2084
2267
|
};
|
|
2085
2268
|
export type GraduationPool_Min_Order_By = {
|
|
@@ -2089,6 +2272,7 @@ export type GraduationPool_Min_Order_By = {
|
|
|
2089
2272
|
chain_id?: InputMaybe<Order_By>;
|
|
2090
2273
|
id?: InputMaybe<Order_By>;
|
|
2091
2274
|
integrator_address?: InputMaybe<Order_By>;
|
|
2275
|
+
numeraire_market_data_id?: InputMaybe<Order_By>;
|
|
2092
2276
|
pool_address?: InputMaybe<Order_By>;
|
|
2093
2277
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
2094
2278
|
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
@@ -2105,6 +2289,11 @@ export type GraduationPool_Min_Order_By = {
|
|
|
2105
2289
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2106
2290
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
2107
2291
|
pool_type?: InputMaybe<Order_By>;
|
|
2292
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2293
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2294
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2295
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2296
|
+
pool_volume_last_updated?: InputMaybe<Order_By>;
|
|
2108
2297
|
quote_token_id?: InputMaybe<Order_By>;
|
|
2109
2298
|
};
|
|
2110
2299
|
export type GraduationPool_Order_By = {
|
|
@@ -2116,6 +2305,8 @@ export type GraduationPool_Order_By = {
|
|
|
2116
2305
|
chain_id?: InputMaybe<Order_By>;
|
|
2117
2306
|
id?: InputMaybe<Order_By>;
|
|
2118
2307
|
integrator_address?: InputMaybe<Order_By>;
|
|
2308
|
+
numeraire_market_data?: InputMaybe<NumeraireMarketData_Order_By>;
|
|
2309
|
+
numeraire_market_data_id?: InputMaybe<Order_By>;
|
|
2119
2310
|
pool_address?: InputMaybe<Order_By>;
|
|
2120
2311
|
pool_config_is_token_0?: InputMaybe<Order_By>;
|
|
2121
2312
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
@@ -2133,6 +2324,11 @@ export type GraduationPool_Order_By = {
|
|
|
2133
2324
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2134
2325
|
pool_migration_timestamp?: InputMaybe<Order_By>;
|
|
2135
2326
|
pool_type?: InputMaybe<Order_By>;
|
|
2327
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2328
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2329
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2330
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2331
|
+
pool_volume_last_updated?: InputMaybe<Order_By>;
|
|
2136
2332
|
quote_token?: InputMaybe<Token_Order_By>;
|
|
2137
2333
|
quote_token_id?: InputMaybe<Order_By>;
|
|
2138
2334
|
swaps_aggregate?: InputMaybe<GraduationPool_Swap_Aggregate_Order_By>;
|
|
@@ -2144,6 +2340,7 @@ export declare enum GraduationPool_Select_Column {
|
|
|
2144
2340
|
ChainId = "chain_id",
|
|
2145
2341
|
Id = "id",
|
|
2146
2342
|
IntegratorAddress = "integrator_address",
|
|
2343
|
+
NumeraireMarketDataId = "numeraire_market_data_id",
|
|
2147
2344
|
PoolAddress = "pool_address",
|
|
2148
2345
|
PoolConfigIsToken_0 = "pool_config_is_token_0",
|
|
2149
2346
|
PoolCurrentFdv = "pool_current_fdv",
|
|
@@ -2161,6 +2358,11 @@ export declare enum GraduationPool_Select_Column {
|
|
|
2161
2358
|
PoolMigrationBlock = "pool_migration_block",
|
|
2162
2359
|
PoolMigrationTimestamp = "pool_migration_timestamp",
|
|
2163
2360
|
PoolType = "pool_type",
|
|
2361
|
+
PoolVolume_24hBase = "pool_volume_24h_base",
|
|
2362
|
+
PoolVolume_24hQuote = "pool_volume_24h_quote",
|
|
2363
|
+
PoolVolume_24hSwapCount = "pool_volume_24h_swap_count",
|
|
2364
|
+
PoolVolume_24hUsd = "pool_volume_24h_usd",
|
|
2365
|
+
PoolVolumeLastUpdated = "pool_volume_last_updated",
|
|
2164
2366
|
QuoteTokenId = "quote_token_id"
|
|
2165
2367
|
}
|
|
2166
2368
|
export type GraduationPool_Stddev_Order_By = {
|
|
@@ -2176,6 +2378,10 @@ export type GraduationPool_Stddev_Order_By = {
|
|
|
2176
2378
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2177
2379
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2178
2380
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2381
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2382
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2383
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2384
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2179
2385
|
};
|
|
2180
2386
|
export type GraduationPool_Stddev_Pop_Order_By = {
|
|
2181
2387
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -2190,6 +2396,10 @@ export type GraduationPool_Stddev_Pop_Order_By = {
|
|
|
2190
2396
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2191
2397
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2192
2398
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2399
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2400
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2401
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2402
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2193
2403
|
};
|
|
2194
2404
|
export type GraduationPool_Stddev_Samp_Order_By = {
|
|
2195
2405
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -2204,6 +2414,10 @@ export type GraduationPool_Stddev_Samp_Order_By = {
|
|
|
2204
2414
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2205
2415
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2206
2416
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2417
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2418
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2419
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2420
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2207
2421
|
};
|
|
2208
2422
|
export type GraduationPool_Stream_Cursor_Input = {
|
|
2209
2423
|
initial_value: GraduationPool_Stream_Cursor_Value_Input;
|
|
@@ -2216,6 +2430,7 @@ export type GraduationPool_Stream_Cursor_Value_Input = {
|
|
|
2216
2430
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
2217
2431
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
2218
2432
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
2433
|
+
numeraire_market_data_id?: InputMaybe<Scalars['String']['input']>;
|
|
2219
2434
|
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
2220
2435
|
pool_config_is_token_0?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2221
2436
|
pool_current_fdv?: InputMaybe<Scalars['numeric']['input']>;
|
|
@@ -2233,6 +2448,11 @@ export type GraduationPool_Stream_Cursor_Value_Input = {
|
|
|
2233
2448
|
pool_migration_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
2234
2449
|
pool_migration_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2235
2450
|
pool_type?: InputMaybe<Scalars['String']['input']>;
|
|
2451
|
+
pool_volume_24h_base?: InputMaybe<Scalars['numeric']['input']>;
|
|
2452
|
+
pool_volume_24h_quote?: InputMaybe<Scalars['numeric']['input']>;
|
|
2453
|
+
pool_volume_24h_swap_count?: InputMaybe<Scalars['Int']['input']>;
|
|
2454
|
+
pool_volume_24h_usd?: InputMaybe<Scalars['numeric']['input']>;
|
|
2455
|
+
pool_volume_last_updated?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2236
2456
|
quote_token_id?: InputMaybe<Scalars['String']['input']>;
|
|
2237
2457
|
};
|
|
2238
2458
|
export type GraduationPool_Sum_Order_By = {
|
|
@@ -2248,6 +2468,10 @@ export type GraduationPool_Sum_Order_By = {
|
|
|
2248
2468
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2249
2469
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2250
2470
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2471
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2472
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2473
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2474
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2251
2475
|
};
|
|
2252
2476
|
export type GraduationPool_Var_Pop_Order_By = {
|
|
2253
2477
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -2262,6 +2486,10 @@ export type GraduationPool_Var_Pop_Order_By = {
|
|
|
2262
2486
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2263
2487
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2264
2488
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2489
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2490
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2491
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2492
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2265
2493
|
};
|
|
2266
2494
|
export type GraduationPool_Var_Samp_Order_By = {
|
|
2267
2495
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -2276,6 +2504,10 @@ export type GraduationPool_Var_Samp_Order_By = {
|
|
|
2276
2504
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2277
2505
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2278
2506
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2507
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2508
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2509
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2510
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2279
2511
|
};
|
|
2280
2512
|
export type GraduationPool_Variance_Order_By = {
|
|
2281
2513
|
chain_id?: InputMaybe<Order_By>;
|
|
@@ -2290,6 +2522,10 @@ export type GraduationPool_Variance_Order_By = {
|
|
|
2290
2522
|
pool_current_total_fee_base_token?: InputMaybe<Order_By>;
|
|
2291
2523
|
pool_current_total_fee_quote_token?: InputMaybe<Order_By>;
|
|
2292
2524
|
pool_migration_block?: InputMaybe<Order_By>;
|
|
2525
|
+
pool_volume_24h_base?: InputMaybe<Order_By>;
|
|
2526
|
+
pool_volume_24h_quote?: InputMaybe<Order_By>;
|
|
2527
|
+
pool_volume_24h_swap_count?: InputMaybe<Order_By>;
|
|
2528
|
+
pool_volume_24h_usd?: InputMaybe<Order_By>;
|
|
2293
2529
|
};
|
|
2294
2530
|
export type Int_Comparison_Exp = {
|
|
2295
2531
|
_eq?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2302,6 +2538,28 @@ export type Int_Comparison_Exp = {
|
|
|
2302
2538
|
_neq?: InputMaybe<Scalars['Int']['input']>;
|
|
2303
2539
|
_nin?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
2304
2540
|
};
|
|
2541
|
+
export type LaunchpadData = {
|
|
2542
|
+
__typename?: 'LaunchpadData';
|
|
2543
|
+
completed?: Maybe<Scalars['Boolean']['output']>;
|
|
2544
|
+
completedAt?: Maybe<Scalars['Int']['output']>;
|
|
2545
|
+
completedSlot?: Maybe<Scalars['Int']['output']>;
|
|
2546
|
+
graduationPercent?: Maybe<Scalars['Float']['output']>;
|
|
2547
|
+
launchpadIconUrl?: Maybe<Scalars['String']['output']>;
|
|
2548
|
+
launchpadName?: Maybe<Scalars['String']['output']>;
|
|
2549
|
+
launchpadProtocol?: Maybe<Scalars['String']['output']>;
|
|
2550
|
+
migrated?: Maybe<Scalars['Boolean']['output']>;
|
|
2551
|
+
migratedAt?: Maybe<Scalars['Int']['output']>;
|
|
2552
|
+
migratedPoolAddress?: Maybe<Scalars['String']['output']>;
|
|
2553
|
+
migratedSlot?: Maybe<Scalars['Int']['output']>;
|
|
2554
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2555
|
+
poolAddress?: Maybe<Scalars['String']['output']>;
|
|
2556
|
+
};
|
|
2557
|
+
export type NumberFilter = {
|
|
2558
|
+
gt?: InputMaybe<Scalars['Float']['input']>;
|
|
2559
|
+
gte?: InputMaybe<Scalars['Float']['input']>;
|
|
2560
|
+
lt?: InputMaybe<Scalars['Float']['input']>;
|
|
2561
|
+
lte?: InputMaybe<Scalars['Float']['input']>;
|
|
2562
|
+
};
|
|
2305
2563
|
export type NumeraireMarketData = {
|
|
2306
2564
|
__typename?: 'NumeraireMarketData';
|
|
2307
2565
|
chain_id: Scalars['Int']['output'];
|
|
@@ -2360,6 +2618,536 @@ export type NumeraireMarketData_Stream_Cursor_Value_Input = {
|
|
|
2360
2618
|
numeraire_market_cap_usd?: InputMaybe<Scalars['String']['input']>;
|
|
2361
2619
|
numeraire_price_usd?: InputMaybe<Scalars['String']['input']>;
|
|
2362
2620
|
};
|
|
2621
|
+
export type Pair = {
|
|
2622
|
+
__typename?: 'Pair';
|
|
2623
|
+
address: Scalars['String']['output'];
|
|
2624
|
+
createdAt?: Maybe<Scalars['Int']['output']>;
|
|
2625
|
+
exchangeHash: Scalars['String']['output'];
|
|
2626
|
+
fee?: Maybe<Scalars['Int']['output']>;
|
|
2627
|
+
id: Scalars['String']['output'];
|
|
2628
|
+
networkId: Scalars['Int']['output'];
|
|
2629
|
+
pooled?: Maybe<PooledTokenValues>;
|
|
2630
|
+
protocol?: Maybe<Scalars['String']['output']>;
|
|
2631
|
+
protocolCustomData?: Maybe<PairProtocolCustomData>;
|
|
2632
|
+
protocolData?: Maybe<ProtocolData>;
|
|
2633
|
+
tickSpacing?: Maybe<Scalars['Int']['output']>;
|
|
2634
|
+
token0: Scalars['String']['output'];
|
|
2635
|
+
token0Data?: Maybe<EnhancedToken>;
|
|
2636
|
+
token1: Scalars['String']['output'];
|
|
2637
|
+
token1Data?: Maybe<EnhancedToken>;
|
|
2638
|
+
};
|
|
2639
|
+
export type PairFilterConnection = {
|
|
2640
|
+
__typename?: 'PairFilterConnection';
|
|
2641
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
2642
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
2643
|
+
results?: Maybe<Array<Maybe<PairFilterResult>>>;
|
|
2644
|
+
};
|
|
2645
|
+
export type PairFilterMatchTokens = {
|
|
2646
|
+
token0?: InputMaybe<Scalars['String']['input']>;
|
|
2647
|
+
token1?: InputMaybe<Scalars['String']['input']>;
|
|
2648
|
+
};
|
|
2649
|
+
export type PairFilterResult = {
|
|
2650
|
+
__typename?: 'PairFilterResult';
|
|
2651
|
+
buyCount1?: Maybe<Scalars['Int']['output']>;
|
|
2652
|
+
buyCount4?: Maybe<Scalars['Int']['output']>;
|
|
2653
|
+
buyCount12?: Maybe<Scalars['Int']['output']>;
|
|
2654
|
+
buyCount24?: Maybe<Scalars['Int']['output']>;
|
|
2655
|
+
buyVolumeUSD1?: Maybe<Scalars['String']['output']>;
|
|
2656
|
+
buyVolumeUSD4?: Maybe<Scalars['String']['output']>;
|
|
2657
|
+
buyVolumeUSD12?: Maybe<Scalars['String']['output']>;
|
|
2658
|
+
buyVolumeUSD24?: Maybe<Scalars['String']['output']>;
|
|
2659
|
+
createdAt?: Maybe<Scalars['Int']['output']>;
|
|
2660
|
+
exchange?: Maybe<FilterExchange>;
|
|
2661
|
+
highPrice1?: Maybe<Scalars['String']['output']>;
|
|
2662
|
+
highPrice4?: Maybe<Scalars['String']['output']>;
|
|
2663
|
+
highPrice12?: Maybe<Scalars['String']['output']>;
|
|
2664
|
+
highPrice24?: Maybe<Scalars['String']['output']>;
|
|
2665
|
+
lastTransaction?: Maybe<Scalars['Int']['output']>;
|
|
2666
|
+
liquidity?: Maybe<Scalars['String']['output']>;
|
|
2667
|
+
liquidityToken?: Maybe<Scalars['String']['output']>;
|
|
2668
|
+
lockedLiquidityPercentage: Scalars['Float']['output'];
|
|
2669
|
+
lowPrice1?: Maybe<Scalars['String']['output']>;
|
|
2670
|
+
lowPrice4?: Maybe<Scalars['String']['output']>;
|
|
2671
|
+
lowPrice12?: Maybe<Scalars['String']['output']>;
|
|
2672
|
+
lowPrice24?: Maybe<Scalars['String']['output']>;
|
|
2673
|
+
marketCap?: Maybe<Scalars['String']['output']>;
|
|
2674
|
+
pair?: Maybe<Pair>;
|
|
2675
|
+
price?: Maybe<Scalars['String']['output']>;
|
|
2676
|
+
priceChange1?: Maybe<Scalars['String']['output']>;
|
|
2677
|
+
priceChange4?: Maybe<Scalars['String']['output']>;
|
|
2678
|
+
priceChange12?: Maybe<Scalars['String']['output']>;
|
|
2679
|
+
priceChange24?: Maybe<Scalars['String']['output']>;
|
|
2680
|
+
priceScale?: Maybe<Scalars['String']['output']>;
|
|
2681
|
+
quoteToken?: Maybe<Scalars['String']['output']>;
|
|
2682
|
+
sellCount1?: Maybe<Scalars['Int']['output']>;
|
|
2683
|
+
sellCount4?: Maybe<Scalars['Int']['output']>;
|
|
2684
|
+
sellCount12?: Maybe<Scalars['Int']['output']>;
|
|
2685
|
+
sellCount24?: Maybe<Scalars['Int']['output']>;
|
|
2686
|
+
sellVolumeUSD1?: Maybe<Scalars['String']['output']>;
|
|
2687
|
+
sellVolumeUSD4?: Maybe<Scalars['String']['output']>;
|
|
2688
|
+
sellVolumeUSD12?: Maybe<Scalars['String']['output']>;
|
|
2689
|
+
sellVolumeUSD24?: Maybe<Scalars['String']['output']>;
|
|
2690
|
+
swapPct1dOldWallet?: Maybe<Scalars['String']['output']>;
|
|
2691
|
+
swapPct7dOldWallet?: Maybe<Scalars['String']['output']>;
|
|
2692
|
+
token0?: Maybe<EnhancedToken>;
|
|
2693
|
+
token1?: Maybe<EnhancedToken>;
|
|
2694
|
+
txnCount1?: Maybe<Scalars['Int']['output']>;
|
|
2695
|
+
txnCount4?: Maybe<Scalars['Int']['output']>;
|
|
2696
|
+
txnCount12?: Maybe<Scalars['Int']['output']>;
|
|
2697
|
+
txnCount24?: Maybe<Scalars['Int']['output']>;
|
|
2698
|
+
uniqueBuys1?: Maybe<Scalars['Int']['output']>;
|
|
2699
|
+
uniqueBuys4?: Maybe<Scalars['Int']['output']>;
|
|
2700
|
+
uniqueBuys12?: Maybe<Scalars['Int']['output']>;
|
|
2701
|
+
uniqueBuys24?: Maybe<Scalars['Int']['output']>;
|
|
2702
|
+
uniqueSells1?: Maybe<Scalars['Int']['output']>;
|
|
2703
|
+
uniqueSells4?: Maybe<Scalars['Int']['output']>;
|
|
2704
|
+
uniqueSells12?: Maybe<Scalars['Int']['output']>;
|
|
2705
|
+
uniqueSells24?: Maybe<Scalars['Int']['output']>;
|
|
2706
|
+
uniqueTransactions1?: Maybe<Scalars['Int']['output']>;
|
|
2707
|
+
uniqueTransactions4?: Maybe<Scalars['Int']['output']>;
|
|
2708
|
+
uniqueTransactions12?: Maybe<Scalars['Int']['output']>;
|
|
2709
|
+
uniqueTransactions24?: Maybe<Scalars['Int']['output']>;
|
|
2710
|
+
volumeChange1?: Maybe<Scalars['String']['output']>;
|
|
2711
|
+
volumeChange4?: Maybe<Scalars['String']['output']>;
|
|
2712
|
+
volumeChange12?: Maybe<Scalars['String']['output']>;
|
|
2713
|
+
volumeChange24?: Maybe<Scalars['String']['output']>;
|
|
2714
|
+
volumeUSD1?: Maybe<Scalars['String']['output']>;
|
|
2715
|
+
volumeUSD4?: Maybe<Scalars['String']['output']>;
|
|
2716
|
+
volumeUSD12?: Maybe<Scalars['String']['output']>;
|
|
2717
|
+
volumeUSD24?: Maybe<Scalars['String']['output']>;
|
|
2718
|
+
walletAgeAvg?: Maybe<Scalars['String']['output']>;
|
|
2719
|
+
walletAgeStd?: Maybe<Scalars['String']['output']>;
|
|
2720
|
+
};
|
|
2721
|
+
export type PairFilters = {
|
|
2722
|
+
buyCount1?: InputMaybe<NumberFilter>;
|
|
2723
|
+
buyCount4?: InputMaybe<NumberFilter>;
|
|
2724
|
+
buyCount12?: InputMaybe<NumberFilter>;
|
|
2725
|
+
buyCount24?: InputMaybe<NumberFilter>;
|
|
2726
|
+
buyVolumeUSD1?: InputMaybe<NumberFilter>;
|
|
2727
|
+
buyVolumeUSD4?: InputMaybe<NumberFilter>;
|
|
2728
|
+
buyVolumeUSD12?: InputMaybe<NumberFilter>;
|
|
2729
|
+
buyVolumeUSD24?: InputMaybe<NumberFilter>;
|
|
2730
|
+
createdAt?: InputMaybe<NumberFilter>;
|
|
2731
|
+
exchangeAddress?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2732
|
+
highPrice1?: InputMaybe<NumberFilter>;
|
|
2733
|
+
highPrice4?: InputMaybe<NumberFilter>;
|
|
2734
|
+
highPrice12?: InputMaybe<NumberFilter>;
|
|
2735
|
+
highPrice24?: InputMaybe<NumberFilter>;
|
|
2736
|
+
hookAddress?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2737
|
+
isTestnet?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2738
|
+
lastTransaction?: InputMaybe<NumberFilter>;
|
|
2739
|
+
liquidity?: InputMaybe<NumberFilter>;
|
|
2740
|
+
lockedLiquidityPercentage?: InputMaybe<NumberFilter>;
|
|
2741
|
+
lowPrice1?: InputMaybe<NumberFilter>;
|
|
2742
|
+
lowPrice4?: InputMaybe<NumberFilter>;
|
|
2743
|
+
lowPrice12?: InputMaybe<NumberFilter>;
|
|
2744
|
+
lowPrice24?: InputMaybe<NumberFilter>;
|
|
2745
|
+
network?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
2746
|
+
potentialScam?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2747
|
+
price?: InputMaybe<NumberFilter>;
|
|
2748
|
+
priceChange1?: InputMaybe<NumberFilter>;
|
|
2749
|
+
priceChange4?: InputMaybe<NumberFilter>;
|
|
2750
|
+
priceChange12?: InputMaybe<NumberFilter>;
|
|
2751
|
+
priceChange24?: InputMaybe<NumberFilter>;
|
|
2752
|
+
sellCount1?: InputMaybe<NumberFilter>;
|
|
2753
|
+
sellCount4?: InputMaybe<NumberFilter>;
|
|
2754
|
+
sellCount12?: InputMaybe<NumberFilter>;
|
|
2755
|
+
sellCount24?: InputMaybe<NumberFilter>;
|
|
2756
|
+
sellVolumeUSD1?: InputMaybe<NumberFilter>;
|
|
2757
|
+
sellVolumeUSD4?: InputMaybe<NumberFilter>;
|
|
2758
|
+
sellVolumeUSD12?: InputMaybe<NumberFilter>;
|
|
2759
|
+
sellVolumeUSD24?: InputMaybe<NumberFilter>;
|
|
2760
|
+
swapPct1dOldWallet?: InputMaybe<NumberFilter>;
|
|
2761
|
+
swapPct7dOldWallet?: InputMaybe<NumberFilter>;
|
|
2762
|
+
tokenAddress?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2763
|
+
trendingIgnored?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2764
|
+
txnCount1?: InputMaybe<NumberFilter>;
|
|
2765
|
+
txnCount4?: InputMaybe<NumberFilter>;
|
|
2766
|
+
txnCount12?: InputMaybe<NumberFilter>;
|
|
2767
|
+
txnCount24?: InputMaybe<NumberFilter>;
|
|
2768
|
+
uniqueBuys1?: InputMaybe<NumberFilter>;
|
|
2769
|
+
uniqueBuys4?: InputMaybe<NumberFilter>;
|
|
2770
|
+
uniqueBuys12?: InputMaybe<NumberFilter>;
|
|
2771
|
+
uniqueBuys24?: InputMaybe<NumberFilter>;
|
|
2772
|
+
uniqueSells1?: InputMaybe<NumberFilter>;
|
|
2773
|
+
uniqueSells4?: InputMaybe<NumberFilter>;
|
|
2774
|
+
uniqueSells12?: InputMaybe<NumberFilter>;
|
|
2775
|
+
uniqueSells24?: InputMaybe<NumberFilter>;
|
|
2776
|
+
uniqueTransactions1?: InputMaybe<NumberFilter>;
|
|
2777
|
+
uniqueTransactions4?: InputMaybe<NumberFilter>;
|
|
2778
|
+
uniqueTransactions12?: InputMaybe<NumberFilter>;
|
|
2779
|
+
uniqueTransactions24?: InputMaybe<NumberFilter>;
|
|
2780
|
+
volumeChange1?: InputMaybe<NumberFilter>;
|
|
2781
|
+
volumeChange4?: InputMaybe<NumberFilter>;
|
|
2782
|
+
volumeChange12?: InputMaybe<NumberFilter>;
|
|
2783
|
+
volumeChange24?: InputMaybe<NumberFilter>;
|
|
2784
|
+
volumeUSD1?: InputMaybe<NumberFilter>;
|
|
2785
|
+
volumeUSD4?: InputMaybe<NumberFilter>;
|
|
2786
|
+
volumeUSD12?: InputMaybe<NumberFilter>;
|
|
2787
|
+
volumeUSD24?: InputMaybe<NumberFilter>;
|
|
2788
|
+
walletAgeAvg?: InputMaybe<NumberFilter>;
|
|
2789
|
+
walletAgeStd?: InputMaybe<NumberFilter>;
|
|
2790
|
+
};
|
|
2791
|
+
export type PairProtocolCustomData = {
|
|
2792
|
+
__typename?: 'PairProtocolCustomData';
|
|
2793
|
+
uniswapV4HookAddress?: Maybe<Scalars['String']['output']>;
|
|
2794
|
+
};
|
|
2795
|
+
export type PairRanking = {
|
|
2796
|
+
attribute?: InputMaybe<PairRankingAttribute>;
|
|
2797
|
+
direction?: InputMaybe<RankingDirection>;
|
|
2798
|
+
};
|
|
2799
|
+
export declare enum PairRankingAttribute {
|
|
2800
|
+
BuyCount1 = "buyCount1",
|
|
2801
|
+
BuyCount4 = "buyCount4",
|
|
2802
|
+
BuyCount12 = "buyCount12",
|
|
2803
|
+
BuyCount24 = "buyCount24",
|
|
2804
|
+
BuyVolumeUsd1 = "buyVolumeUSD1",
|
|
2805
|
+
BuyVolumeUsd4 = "buyVolumeUSD4",
|
|
2806
|
+
BuyVolumeUsd12 = "buyVolumeUSD12",
|
|
2807
|
+
BuyVolumeUsd24 = "buyVolumeUSD24",
|
|
2808
|
+
CreatedAt = "createdAt",
|
|
2809
|
+
HighPrice1 = "highPrice1",
|
|
2810
|
+
HighPrice4 = "highPrice4",
|
|
2811
|
+
HighPrice12 = "highPrice12",
|
|
2812
|
+
HighPrice24 = "highPrice24",
|
|
2813
|
+
LastTransaction = "lastTransaction",
|
|
2814
|
+
Liquidity = "liquidity",
|
|
2815
|
+
LockedLiquidityPercentage = "lockedLiquidityPercentage",
|
|
2816
|
+
LowPrice1 = "lowPrice1",
|
|
2817
|
+
LowPrice4 = "lowPrice4",
|
|
2818
|
+
LowPrice12 = "lowPrice12",
|
|
2819
|
+
LowPrice24 = "lowPrice24",
|
|
2820
|
+
MarketCap = "marketCap",
|
|
2821
|
+
Price = "price",
|
|
2822
|
+
PriceChange1 = "priceChange1",
|
|
2823
|
+
PriceChange4 = "priceChange4",
|
|
2824
|
+
PriceChange12 = "priceChange12",
|
|
2825
|
+
PriceChange24 = "priceChange24",
|
|
2826
|
+
SellCount1 = "sellCount1",
|
|
2827
|
+
SellCount4 = "sellCount4",
|
|
2828
|
+
SellCount12 = "sellCount12",
|
|
2829
|
+
SellCount24 = "sellCount24",
|
|
2830
|
+
SellVolumeUsd1 = "sellVolumeUSD1",
|
|
2831
|
+
SellVolumeUsd4 = "sellVolumeUSD4",
|
|
2832
|
+
SellVolumeUsd12 = "sellVolumeUSD12",
|
|
2833
|
+
SellVolumeUsd24 = "sellVolumeUSD24",
|
|
2834
|
+
SwapPct1dOldWallet = "swapPct1dOldWallet",
|
|
2835
|
+
SwapPct7dOldWallet = "swapPct7dOldWallet",
|
|
2836
|
+
TrendingScore = "trendingScore",
|
|
2837
|
+
TrendingScore1 = "trendingScore1",
|
|
2838
|
+
TrendingScore4 = "trendingScore4",
|
|
2839
|
+
TrendingScore5m = "trendingScore5m",
|
|
2840
|
+
TrendingScore12 = "trendingScore12",
|
|
2841
|
+
TrendingScore24 = "trendingScore24",
|
|
2842
|
+
TxnCount1 = "txnCount1",
|
|
2843
|
+
TxnCount4 = "txnCount4",
|
|
2844
|
+
TxnCount12 = "txnCount12",
|
|
2845
|
+
TxnCount24 = "txnCount24",
|
|
2846
|
+
UniqueBuys1 = "uniqueBuys1",
|
|
2847
|
+
UniqueBuys4 = "uniqueBuys4",
|
|
2848
|
+
UniqueBuys12 = "uniqueBuys12",
|
|
2849
|
+
UniqueBuys24 = "uniqueBuys24",
|
|
2850
|
+
UniqueSells1 = "uniqueSells1",
|
|
2851
|
+
UniqueSells4 = "uniqueSells4",
|
|
2852
|
+
UniqueSells12 = "uniqueSells12",
|
|
2853
|
+
UniqueSells24 = "uniqueSells24",
|
|
2854
|
+
UniqueTransactions1 = "uniqueTransactions1",
|
|
2855
|
+
UniqueTransactions4 = "uniqueTransactions4",
|
|
2856
|
+
UniqueTransactions12 = "uniqueTransactions12",
|
|
2857
|
+
UniqueTransactions24 = "uniqueTransactions24",
|
|
2858
|
+
VolumeChange1 = "volumeChange1",
|
|
2859
|
+
VolumeChange4 = "volumeChange4",
|
|
2860
|
+
VolumeChange12 = "volumeChange12",
|
|
2861
|
+
VolumeChange24 = "volumeChange24",
|
|
2862
|
+
VolumeUsd1 = "volumeUSD1",
|
|
2863
|
+
VolumeUsd4 = "volumeUSD4",
|
|
2864
|
+
VolumeUsd12 = "volumeUSD12",
|
|
2865
|
+
VolumeUsd24 = "volumeUSD24",
|
|
2866
|
+
WalletAgeAvg = "walletAgeAvg",
|
|
2867
|
+
WalletAgeStd = "walletAgeStd"
|
|
2868
|
+
}
|
|
2869
|
+
export type PoolVolumeHourly = {
|
|
2870
|
+
__typename?: 'PoolVolumeHourly';
|
|
2871
|
+
chain_id: Scalars['Int']['output'];
|
|
2872
|
+
hour_timestamp: Scalars['numeric']['output'];
|
|
2873
|
+
id: Scalars['String']['output'];
|
|
2874
|
+
last_updated_block: Scalars['numeric']['output'];
|
|
2875
|
+
pool_id: Scalars['String']['output'];
|
|
2876
|
+
pool_type: Scalars['String']['output'];
|
|
2877
|
+
swap_count: Scalars['Int']['output'];
|
|
2878
|
+
volume_base: Scalars['numeric']['output'];
|
|
2879
|
+
volume_quote: Scalars['numeric']['output'];
|
|
2880
|
+
volume_usd: Scalars['numeric']['output'];
|
|
2881
|
+
};
|
|
2882
|
+
export type PoolVolumeHourly_Bool_Exp = {
|
|
2883
|
+
_and?: InputMaybe<Array<PoolVolumeHourly_Bool_Exp>>;
|
|
2884
|
+
_not?: InputMaybe<PoolVolumeHourly_Bool_Exp>;
|
|
2885
|
+
_or?: InputMaybe<Array<PoolVolumeHourly_Bool_Exp>>;
|
|
2886
|
+
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
2887
|
+
hour_timestamp?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2888
|
+
id?: InputMaybe<String_Comparison_Exp>;
|
|
2889
|
+
last_updated_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2890
|
+
pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
2891
|
+
pool_type?: InputMaybe<String_Comparison_Exp>;
|
|
2892
|
+
swap_count?: InputMaybe<Int_Comparison_Exp>;
|
|
2893
|
+
volume_base?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2894
|
+
volume_quote?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2895
|
+
volume_usd?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2896
|
+
};
|
|
2897
|
+
export type PoolVolumeHourly_Order_By = {
|
|
2898
|
+
chain_id?: InputMaybe<Order_By>;
|
|
2899
|
+
hour_timestamp?: InputMaybe<Order_By>;
|
|
2900
|
+
id?: InputMaybe<Order_By>;
|
|
2901
|
+
last_updated_block?: InputMaybe<Order_By>;
|
|
2902
|
+
pool_id?: InputMaybe<Order_By>;
|
|
2903
|
+
pool_type?: InputMaybe<Order_By>;
|
|
2904
|
+
swap_count?: InputMaybe<Order_By>;
|
|
2905
|
+
volume_base?: InputMaybe<Order_By>;
|
|
2906
|
+
volume_quote?: InputMaybe<Order_By>;
|
|
2907
|
+
volume_usd?: InputMaybe<Order_By>;
|
|
2908
|
+
};
|
|
2909
|
+
export declare enum PoolVolumeHourly_Select_Column {
|
|
2910
|
+
ChainId = "chain_id",
|
|
2911
|
+
HourTimestamp = "hour_timestamp",
|
|
2912
|
+
Id = "id",
|
|
2913
|
+
LastUpdatedBlock = "last_updated_block",
|
|
2914
|
+
PoolId = "pool_id",
|
|
2915
|
+
PoolType = "pool_type",
|
|
2916
|
+
SwapCount = "swap_count",
|
|
2917
|
+
VolumeBase = "volume_base",
|
|
2918
|
+
VolumeQuote = "volume_quote",
|
|
2919
|
+
VolumeUsd = "volume_usd"
|
|
2920
|
+
}
|
|
2921
|
+
export type PoolVolumeHourly_Stream_Cursor_Input = {
|
|
2922
|
+
initial_value: PoolVolumeHourly_Stream_Cursor_Value_Input;
|
|
2923
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
2924
|
+
};
|
|
2925
|
+
export type PoolVolumeHourly_Stream_Cursor_Value_Input = {
|
|
2926
|
+
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
2927
|
+
hour_timestamp?: InputMaybe<Scalars['numeric']['input']>;
|
|
2928
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2929
|
+
last_updated_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
2930
|
+
pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
2931
|
+
pool_type?: InputMaybe<Scalars['String']['input']>;
|
|
2932
|
+
swap_count?: InputMaybe<Scalars['Int']['input']>;
|
|
2933
|
+
volume_base?: InputMaybe<Scalars['numeric']['input']>;
|
|
2934
|
+
volume_quote?: InputMaybe<Scalars['numeric']['input']>;
|
|
2935
|
+
volume_usd?: InputMaybe<Scalars['numeric']['input']>;
|
|
2936
|
+
};
|
|
2937
|
+
export type PooledTokenValues = {
|
|
2938
|
+
__typename?: 'PooledTokenValues';
|
|
2939
|
+
token0?: Maybe<Scalars['String']['output']>;
|
|
2940
|
+
token1?: Maybe<Scalars['String']['output']>;
|
|
2941
|
+
};
|
|
2942
|
+
export type ProtocolData = ArenaTradeData | UniswapV4Data;
|
|
2943
|
+
export type Query = {
|
|
2944
|
+
__typename?: 'Query';
|
|
2945
|
+
Asset: Array<Asset>;
|
|
2946
|
+
Asset_by_pk?: Maybe<Asset>;
|
|
2947
|
+
AuctionPool: Array<AuctionPool>;
|
|
2948
|
+
AuctionPool_Bid: Array<AuctionPool_Bid>;
|
|
2949
|
+
AuctionPool_Bid_by_pk?: Maybe<AuctionPool_Bid>;
|
|
2950
|
+
AuctionPool_Swap: Array<AuctionPool_Swap>;
|
|
2951
|
+
AuctionPool_Swap_by_pk?: Maybe<AuctionPool_Swap>;
|
|
2952
|
+
AuctionPool_by_pk?: Maybe<AuctionPool>;
|
|
2953
|
+
CCA_Checkpoint: Array<Cca_Checkpoint>;
|
|
2954
|
+
CCA_Checkpoint_by_pk?: Maybe<Cca_Checkpoint>;
|
|
2955
|
+
GraduationPool: Array<GraduationPool>;
|
|
2956
|
+
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
2957
|
+
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
2958
|
+
GraduationPool_by_pk?: Maybe<GraduationPool>;
|
|
2959
|
+
NumeraireMarketData: Array<NumeraireMarketData>;
|
|
2960
|
+
NumeraireMarketData_by_pk?: Maybe<NumeraireMarketData>;
|
|
2961
|
+
PoolVolumeHourly: Array<PoolVolumeHourly>;
|
|
2962
|
+
PoolVolumeHourly_by_pk?: Maybe<PoolVolumeHourly>;
|
|
2963
|
+
Token: Array<Token>;
|
|
2964
|
+
Token_aggregate: Token_Aggregate;
|
|
2965
|
+
Token_by_pk?: Maybe<Token>;
|
|
2966
|
+
UserAsset: Array<UserAsset>;
|
|
2967
|
+
UserAsset_by_pk?: Maybe<UserAsset>;
|
|
2968
|
+
_meta: Array<_Meta>;
|
|
2969
|
+
chain_metadata: Array<Chain_Metadata>;
|
|
2970
|
+
filterPairs?: Maybe<PairFilterConnection>;
|
|
2971
|
+
raw_events: Array<Raw_Events>;
|
|
2972
|
+
raw_events_by_pk?: Maybe<Raw_Events>;
|
|
2973
|
+
};
|
|
2974
|
+
export type QueryAssetArgs = {
|
|
2975
|
+
distinct_on?: InputMaybe<Array<Asset_Select_Column>>;
|
|
2976
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2977
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2978
|
+
order_by?: InputMaybe<Array<Asset_Order_By>>;
|
|
2979
|
+
where?: InputMaybe<Asset_Bool_Exp>;
|
|
2980
|
+
};
|
|
2981
|
+
export type QueryAsset_By_PkArgs = {
|
|
2982
|
+
id: Scalars['String']['input'];
|
|
2983
|
+
};
|
|
2984
|
+
export type QueryAuctionPoolArgs = {
|
|
2985
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
2986
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2987
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2988
|
+
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
2989
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
2990
|
+
};
|
|
2991
|
+
export type QueryAuctionPool_BidArgs = {
|
|
2992
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Bid_Select_Column>>;
|
|
2993
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2994
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2995
|
+
order_by?: InputMaybe<Array<AuctionPool_Bid_Order_By>>;
|
|
2996
|
+
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
2997
|
+
};
|
|
2998
|
+
export type QueryAuctionPool_Bid_By_PkArgs = {
|
|
2999
|
+
id: Scalars['String']['input'];
|
|
3000
|
+
};
|
|
3001
|
+
export type QueryAuctionPool_SwapArgs = {
|
|
3002
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Swap_Select_Column>>;
|
|
3003
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3004
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3005
|
+
order_by?: InputMaybe<Array<AuctionPool_Swap_Order_By>>;
|
|
3006
|
+
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
3007
|
+
};
|
|
3008
|
+
export type QueryAuctionPool_Swap_By_PkArgs = {
|
|
3009
|
+
id: Scalars['String']['input'];
|
|
3010
|
+
};
|
|
3011
|
+
export type QueryAuctionPool_By_PkArgs = {
|
|
3012
|
+
id: Scalars['String']['input'];
|
|
3013
|
+
};
|
|
3014
|
+
export type QueryCca_CheckpointArgs = {
|
|
3015
|
+
distinct_on?: InputMaybe<Array<Cca_Checkpoint_Select_Column>>;
|
|
3016
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3017
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3018
|
+
order_by?: InputMaybe<Array<Cca_Checkpoint_Order_By>>;
|
|
3019
|
+
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
3020
|
+
};
|
|
3021
|
+
export type QueryCca_Checkpoint_By_PkArgs = {
|
|
3022
|
+
id: Scalars['String']['input'];
|
|
3023
|
+
};
|
|
3024
|
+
export type QueryGraduationPoolArgs = {
|
|
3025
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
3026
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3027
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3028
|
+
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
3029
|
+
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3030
|
+
};
|
|
3031
|
+
export type QueryGraduationPool_SwapArgs = {
|
|
3032
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Swap_Select_Column>>;
|
|
3033
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3034
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3035
|
+
order_by?: InputMaybe<Array<GraduationPool_Swap_Order_By>>;
|
|
3036
|
+
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
3037
|
+
};
|
|
3038
|
+
export type QueryGraduationPool_Swap_By_PkArgs = {
|
|
3039
|
+
id: Scalars['String']['input'];
|
|
3040
|
+
};
|
|
3041
|
+
export type QueryGraduationPool_By_PkArgs = {
|
|
3042
|
+
id: Scalars['String']['input'];
|
|
3043
|
+
};
|
|
3044
|
+
export type QueryNumeraireMarketDataArgs = {
|
|
3045
|
+
distinct_on?: InputMaybe<Array<NumeraireMarketData_Select_Column>>;
|
|
3046
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3047
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3048
|
+
order_by?: InputMaybe<Array<NumeraireMarketData_Order_By>>;
|
|
3049
|
+
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
3050
|
+
};
|
|
3051
|
+
export type QueryNumeraireMarketData_By_PkArgs = {
|
|
3052
|
+
id: Scalars['String']['input'];
|
|
3053
|
+
};
|
|
3054
|
+
export type QueryPoolVolumeHourlyArgs = {
|
|
3055
|
+
distinct_on?: InputMaybe<Array<PoolVolumeHourly_Select_Column>>;
|
|
3056
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3057
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3058
|
+
order_by?: InputMaybe<Array<PoolVolumeHourly_Order_By>>;
|
|
3059
|
+
where?: InputMaybe<PoolVolumeHourly_Bool_Exp>;
|
|
3060
|
+
};
|
|
3061
|
+
export type QueryPoolVolumeHourly_By_PkArgs = {
|
|
3062
|
+
id: Scalars['String']['input'];
|
|
3063
|
+
};
|
|
3064
|
+
export type QueryTokenArgs = {
|
|
3065
|
+
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3066
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3067
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3068
|
+
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3069
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
3070
|
+
};
|
|
3071
|
+
export type QueryToken_AggregateArgs = {
|
|
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 QueryToken_By_PkArgs = {
|
|
3079
|
+
id: Scalars['String']['input'];
|
|
3080
|
+
};
|
|
3081
|
+
export type QueryUserAssetArgs = {
|
|
3082
|
+
distinct_on?: InputMaybe<Array<UserAsset_Select_Column>>;
|
|
3083
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3084
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3085
|
+
order_by?: InputMaybe<Array<UserAsset_Order_By>>;
|
|
3086
|
+
where?: InputMaybe<UserAsset_Bool_Exp>;
|
|
3087
|
+
};
|
|
3088
|
+
export type QueryUserAsset_By_PkArgs = {
|
|
3089
|
+
id: Scalars['String']['input'];
|
|
3090
|
+
};
|
|
3091
|
+
export type Query_MetaArgs = {
|
|
3092
|
+
distinct_on?: InputMaybe<Array<_Meta_Select_Column>>;
|
|
3093
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3094
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3095
|
+
order_by?: InputMaybe<Array<_Meta_Order_By>>;
|
|
3096
|
+
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
3097
|
+
};
|
|
3098
|
+
export type QueryChain_MetadataArgs = {
|
|
3099
|
+
distinct_on?: InputMaybe<Array<Chain_Metadata_Select_Column>>;
|
|
3100
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3101
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3102
|
+
order_by?: InputMaybe<Array<Chain_Metadata_Order_By>>;
|
|
3103
|
+
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
3104
|
+
};
|
|
3105
|
+
export type QueryFilterPairsArgs = {
|
|
3106
|
+
filters?: InputMaybe<PairFilters>;
|
|
3107
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3108
|
+
matchTokens?: InputMaybe<PairFilterMatchTokens>;
|
|
3109
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3110
|
+
pairs?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
3111
|
+
phrase?: InputMaybe<Scalars['String']['input']>;
|
|
3112
|
+
rankings?: InputMaybe<Array<InputMaybe<PairRanking>>>;
|
|
3113
|
+
statsType?: InputMaybe<TokenPairStatisticsType>;
|
|
3114
|
+
};
|
|
3115
|
+
export type QueryRaw_EventsArgs = {
|
|
3116
|
+
distinct_on?: InputMaybe<Array<Raw_Events_Select_Column>>;
|
|
3117
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3118
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3119
|
+
order_by?: InputMaybe<Array<Raw_Events_Order_By>>;
|
|
3120
|
+
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
3121
|
+
};
|
|
3122
|
+
export type QueryRaw_Events_By_PkArgs = {
|
|
3123
|
+
serial: Scalars['Int']['input'];
|
|
3124
|
+
};
|
|
3125
|
+
export declare enum RankingDirection {
|
|
3126
|
+
Asc = "ASC",
|
|
3127
|
+
Desc = "DESC"
|
|
3128
|
+
}
|
|
3129
|
+
export type SocialLinks = {
|
|
3130
|
+
__typename?: 'SocialLinks';
|
|
3131
|
+
bitcointalk?: Maybe<Scalars['String']['output']>;
|
|
3132
|
+
blog?: Maybe<Scalars['String']['output']>;
|
|
3133
|
+
coingecko?: Maybe<Scalars['String']['output']>;
|
|
3134
|
+
coinmarketcap?: Maybe<Scalars['String']['output']>;
|
|
3135
|
+
discord?: Maybe<Scalars['String']['output']>;
|
|
3136
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
3137
|
+
facebook?: Maybe<Scalars['String']['output']>;
|
|
3138
|
+
github?: Maybe<Scalars['String']['output']>;
|
|
3139
|
+
instagram?: Maybe<Scalars['String']['output']>;
|
|
3140
|
+
linkedin?: Maybe<Scalars['String']['output']>;
|
|
3141
|
+
reddit?: Maybe<Scalars['String']['output']>;
|
|
3142
|
+
slack?: Maybe<Scalars['String']['output']>;
|
|
3143
|
+
telegram?: Maybe<Scalars['String']['output']>;
|
|
3144
|
+
twitch?: Maybe<Scalars['String']['output']>;
|
|
3145
|
+
twitter?: Maybe<Scalars['String']['output']>;
|
|
3146
|
+
website?: Maybe<Scalars['String']['output']>;
|
|
3147
|
+
wechat?: Maybe<Scalars['String']['output']>;
|
|
3148
|
+
whitepaper?: Maybe<Scalars['String']['output']>;
|
|
3149
|
+
youtube?: Maybe<Scalars['String']['output']>;
|
|
3150
|
+
};
|
|
2363
3151
|
export type String_Array_Comparison_Exp = {
|
|
2364
3152
|
_contained_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2365
3153
|
_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -2394,51 +3182,306 @@ export type String_Comparison_Exp = {
|
|
|
2394
3182
|
_regex?: InputMaybe<Scalars['String']['input']>;
|
|
2395
3183
|
_similar?: InputMaybe<Scalars['String']['input']>;
|
|
2396
3184
|
};
|
|
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
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
3185
|
+
export type Subscription = {
|
|
3186
|
+
__typename?: 'Subscription';
|
|
3187
|
+
Asset: Array<Asset>;
|
|
3188
|
+
Asset_by_pk?: Maybe<Asset>;
|
|
3189
|
+
Asset_stream: Array<Asset>;
|
|
3190
|
+
AuctionPool: Array<AuctionPool>;
|
|
3191
|
+
AuctionPool_Bid: Array<AuctionPool_Bid>;
|
|
3192
|
+
AuctionPool_Bid_by_pk?: Maybe<AuctionPool_Bid>;
|
|
3193
|
+
AuctionPool_Bid_stream: Array<AuctionPool_Bid>;
|
|
3194
|
+
AuctionPool_Swap: Array<AuctionPool_Swap>;
|
|
3195
|
+
AuctionPool_Swap_by_pk?: Maybe<AuctionPool_Swap>;
|
|
3196
|
+
AuctionPool_Swap_stream: Array<AuctionPool_Swap>;
|
|
3197
|
+
AuctionPool_by_pk?: Maybe<AuctionPool>;
|
|
3198
|
+
AuctionPool_stream: Array<AuctionPool>;
|
|
3199
|
+
CCA_Checkpoint: Array<Cca_Checkpoint>;
|
|
3200
|
+
CCA_Checkpoint_by_pk?: Maybe<Cca_Checkpoint>;
|
|
3201
|
+
CCA_Checkpoint_stream: Array<Cca_Checkpoint>;
|
|
3202
|
+
GraduationPool: Array<GraduationPool>;
|
|
3203
|
+
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
3204
|
+
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
3205
|
+
GraduationPool_Swap_stream: Array<GraduationPool_Swap>;
|
|
3206
|
+
GraduationPool_by_pk?: Maybe<GraduationPool>;
|
|
3207
|
+
GraduationPool_stream: Array<GraduationPool>;
|
|
3208
|
+
NumeraireMarketData: Array<NumeraireMarketData>;
|
|
3209
|
+
NumeraireMarketData_by_pk?: Maybe<NumeraireMarketData>;
|
|
3210
|
+
NumeraireMarketData_stream: Array<NumeraireMarketData>;
|
|
3211
|
+
PoolVolumeHourly: Array<PoolVolumeHourly>;
|
|
3212
|
+
PoolVolumeHourly_by_pk?: Maybe<PoolVolumeHourly>;
|
|
3213
|
+
PoolVolumeHourly_stream: Array<PoolVolumeHourly>;
|
|
3214
|
+
Token: Array<Token>;
|
|
3215
|
+
Token_aggregate: Token_Aggregate;
|
|
3216
|
+
Token_by_pk?: Maybe<Token>;
|
|
3217
|
+
Token_stream: Array<Token>;
|
|
3218
|
+
UserAsset: Array<UserAsset>;
|
|
3219
|
+
UserAsset_by_pk?: Maybe<UserAsset>;
|
|
3220
|
+
UserAsset_stream: Array<UserAsset>;
|
|
3221
|
+
_meta: Array<_Meta>;
|
|
3222
|
+
_meta_stream: Array<_Meta>;
|
|
3223
|
+
chain_metadata: Array<Chain_Metadata>;
|
|
3224
|
+
chain_metadata_stream: Array<Chain_Metadata>;
|
|
3225
|
+
raw_events: Array<Raw_Events>;
|
|
3226
|
+
raw_events_by_pk?: Maybe<Raw_Events>;
|
|
3227
|
+
raw_events_stream: Array<Raw_Events>;
|
|
3228
|
+
};
|
|
3229
|
+
export type SubscriptionAssetArgs = {
|
|
3230
|
+
distinct_on?: InputMaybe<Array<Asset_Select_Column>>;
|
|
3231
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3232
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3233
|
+
order_by?: InputMaybe<Array<Asset_Order_By>>;
|
|
3234
|
+
where?: InputMaybe<Asset_Bool_Exp>;
|
|
3235
|
+
};
|
|
3236
|
+
export type SubscriptionAsset_By_PkArgs = {
|
|
3237
|
+
id: Scalars['String']['input'];
|
|
3238
|
+
};
|
|
3239
|
+
export type SubscriptionAsset_StreamArgs = {
|
|
3240
|
+
batch_size: Scalars['Int']['input'];
|
|
3241
|
+
cursor: Array<InputMaybe<Asset_Stream_Cursor_Input>>;
|
|
3242
|
+
where?: InputMaybe<Asset_Bool_Exp>;
|
|
3243
|
+
};
|
|
3244
|
+
export type SubscriptionAuctionPoolArgs = {
|
|
3245
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
3246
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3247
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3248
|
+
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
3249
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3250
|
+
};
|
|
3251
|
+
export type SubscriptionAuctionPool_BidArgs = {
|
|
3252
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Bid_Select_Column>>;
|
|
3253
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3254
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3255
|
+
order_by?: InputMaybe<Array<AuctionPool_Bid_Order_By>>;
|
|
3256
|
+
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
3257
|
+
};
|
|
3258
|
+
export type SubscriptionAuctionPool_Bid_By_PkArgs = {
|
|
3259
|
+
id: Scalars['String']['input'];
|
|
3260
|
+
};
|
|
3261
|
+
export type SubscriptionAuctionPool_Bid_StreamArgs = {
|
|
3262
|
+
batch_size: Scalars['Int']['input'];
|
|
3263
|
+
cursor: Array<InputMaybe<AuctionPool_Bid_Stream_Cursor_Input>>;
|
|
3264
|
+
where?: InputMaybe<AuctionPool_Bid_Bool_Exp>;
|
|
3265
|
+
};
|
|
3266
|
+
export type SubscriptionAuctionPool_SwapArgs = {
|
|
3267
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Swap_Select_Column>>;
|
|
3268
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3269
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3270
|
+
order_by?: InputMaybe<Array<AuctionPool_Swap_Order_By>>;
|
|
3271
|
+
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
3272
|
+
};
|
|
3273
|
+
export type SubscriptionAuctionPool_Swap_By_PkArgs = {
|
|
3274
|
+
id: Scalars['String']['input'];
|
|
3275
|
+
};
|
|
3276
|
+
export type SubscriptionAuctionPool_Swap_StreamArgs = {
|
|
3277
|
+
batch_size: Scalars['Int']['input'];
|
|
3278
|
+
cursor: Array<InputMaybe<AuctionPool_Swap_Stream_Cursor_Input>>;
|
|
3279
|
+
where?: InputMaybe<AuctionPool_Swap_Bool_Exp>;
|
|
3280
|
+
};
|
|
3281
|
+
export type SubscriptionAuctionPool_By_PkArgs = {
|
|
3282
|
+
id: Scalars['String']['input'];
|
|
3283
|
+
};
|
|
3284
|
+
export type SubscriptionAuctionPool_StreamArgs = {
|
|
3285
|
+
batch_size: Scalars['Int']['input'];
|
|
3286
|
+
cursor: Array<InputMaybe<AuctionPool_Stream_Cursor_Input>>;
|
|
3287
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3288
|
+
};
|
|
3289
|
+
export type SubscriptionCca_CheckpointArgs = {
|
|
3290
|
+
distinct_on?: InputMaybe<Array<Cca_Checkpoint_Select_Column>>;
|
|
3291
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3292
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3293
|
+
order_by?: InputMaybe<Array<Cca_Checkpoint_Order_By>>;
|
|
3294
|
+
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
3295
|
+
};
|
|
3296
|
+
export type SubscriptionCca_Checkpoint_By_PkArgs = {
|
|
3297
|
+
id: Scalars['String']['input'];
|
|
3298
|
+
};
|
|
3299
|
+
export type SubscriptionCca_Checkpoint_StreamArgs = {
|
|
3300
|
+
batch_size: Scalars['Int']['input'];
|
|
3301
|
+
cursor: Array<InputMaybe<Cca_Checkpoint_Stream_Cursor_Input>>;
|
|
3302
|
+
where?: InputMaybe<Cca_Checkpoint_Bool_Exp>;
|
|
3303
|
+
};
|
|
3304
|
+
export type SubscriptionGraduationPoolArgs = {
|
|
3305
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
3306
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3307
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3308
|
+
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
3309
|
+
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3310
|
+
};
|
|
3311
|
+
export type SubscriptionGraduationPool_SwapArgs = {
|
|
3312
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Swap_Select_Column>>;
|
|
3313
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3314
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3315
|
+
order_by?: InputMaybe<Array<GraduationPool_Swap_Order_By>>;
|
|
3316
|
+
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
3317
|
+
};
|
|
3318
|
+
export type SubscriptionGraduationPool_Swap_By_PkArgs = {
|
|
3319
|
+
id: Scalars['String']['input'];
|
|
3320
|
+
};
|
|
3321
|
+
export type SubscriptionGraduationPool_Swap_StreamArgs = {
|
|
3322
|
+
batch_size: Scalars['Int']['input'];
|
|
3323
|
+
cursor: Array<InputMaybe<GraduationPool_Swap_Stream_Cursor_Input>>;
|
|
3324
|
+
where?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
3325
|
+
};
|
|
3326
|
+
export type SubscriptionGraduationPool_By_PkArgs = {
|
|
3327
|
+
id: Scalars['String']['input'];
|
|
3328
|
+
};
|
|
3329
|
+
export type SubscriptionGraduationPool_StreamArgs = {
|
|
3330
|
+
batch_size: Scalars['Int']['input'];
|
|
3331
|
+
cursor: Array<InputMaybe<GraduationPool_Stream_Cursor_Input>>;
|
|
3332
|
+
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
3333
|
+
};
|
|
3334
|
+
export type SubscriptionNumeraireMarketDataArgs = {
|
|
3335
|
+
distinct_on?: InputMaybe<Array<NumeraireMarketData_Select_Column>>;
|
|
3336
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3337
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3338
|
+
order_by?: InputMaybe<Array<NumeraireMarketData_Order_By>>;
|
|
3339
|
+
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
3340
|
+
};
|
|
3341
|
+
export type SubscriptionNumeraireMarketData_By_PkArgs = {
|
|
3342
|
+
id: Scalars['String']['input'];
|
|
3343
|
+
};
|
|
3344
|
+
export type SubscriptionNumeraireMarketData_StreamArgs = {
|
|
3345
|
+
batch_size: Scalars['Int']['input'];
|
|
3346
|
+
cursor: Array<InputMaybe<NumeraireMarketData_Stream_Cursor_Input>>;
|
|
3347
|
+
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
3348
|
+
};
|
|
3349
|
+
export type SubscriptionPoolVolumeHourlyArgs = {
|
|
3350
|
+
distinct_on?: InputMaybe<Array<PoolVolumeHourly_Select_Column>>;
|
|
3351
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3352
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3353
|
+
order_by?: InputMaybe<Array<PoolVolumeHourly_Order_By>>;
|
|
3354
|
+
where?: InputMaybe<PoolVolumeHourly_Bool_Exp>;
|
|
3355
|
+
};
|
|
3356
|
+
export type SubscriptionPoolVolumeHourly_By_PkArgs = {
|
|
3357
|
+
id: Scalars['String']['input'];
|
|
3358
|
+
};
|
|
3359
|
+
export type SubscriptionPoolVolumeHourly_StreamArgs = {
|
|
3360
|
+
batch_size: Scalars['Int']['input'];
|
|
3361
|
+
cursor: Array<InputMaybe<PoolVolumeHourly_Stream_Cursor_Input>>;
|
|
3362
|
+
where?: InputMaybe<PoolVolumeHourly_Bool_Exp>;
|
|
3363
|
+
};
|
|
3364
|
+
export type SubscriptionTokenArgs = {
|
|
3365
|
+
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3366
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3367
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3368
|
+
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3369
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
3370
|
+
};
|
|
3371
|
+
export type SubscriptionToken_AggregateArgs = {
|
|
3372
|
+
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
3373
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3374
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3375
|
+
order_by?: InputMaybe<Array<Token_Order_By>>;
|
|
3376
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
3377
|
+
};
|
|
3378
|
+
export type SubscriptionToken_By_PkArgs = {
|
|
3379
|
+
id: Scalars['String']['input'];
|
|
3380
|
+
};
|
|
3381
|
+
export type SubscriptionToken_StreamArgs = {
|
|
3382
|
+
batch_size: Scalars['Int']['input'];
|
|
3383
|
+
cursor: Array<InputMaybe<Token_Stream_Cursor_Input>>;
|
|
3384
|
+
where?: InputMaybe<Token_Bool_Exp>;
|
|
3385
|
+
};
|
|
3386
|
+
export type SubscriptionUserAssetArgs = {
|
|
3387
|
+
distinct_on?: InputMaybe<Array<UserAsset_Select_Column>>;
|
|
3388
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3389
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3390
|
+
order_by?: InputMaybe<Array<UserAsset_Order_By>>;
|
|
3391
|
+
where?: InputMaybe<UserAsset_Bool_Exp>;
|
|
3392
|
+
};
|
|
3393
|
+
export type SubscriptionUserAsset_By_PkArgs = {
|
|
3394
|
+
id: Scalars['String']['input'];
|
|
3395
|
+
};
|
|
3396
|
+
export type SubscriptionUserAsset_StreamArgs = {
|
|
3397
|
+
batch_size: Scalars['Int']['input'];
|
|
3398
|
+
cursor: Array<InputMaybe<UserAsset_Stream_Cursor_Input>>;
|
|
3399
|
+
where?: InputMaybe<UserAsset_Bool_Exp>;
|
|
3400
|
+
};
|
|
3401
|
+
export type Subscription_MetaArgs = {
|
|
3402
|
+
distinct_on?: InputMaybe<Array<_Meta_Select_Column>>;
|
|
3403
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3404
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3405
|
+
order_by?: InputMaybe<Array<_Meta_Order_By>>;
|
|
3406
|
+
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
3407
|
+
};
|
|
3408
|
+
export type Subscription_Meta_StreamArgs = {
|
|
3409
|
+
batch_size: Scalars['Int']['input'];
|
|
3410
|
+
cursor: Array<InputMaybe<_Meta_Stream_Cursor_Input>>;
|
|
3411
|
+
where?: InputMaybe<_Meta_Bool_Exp>;
|
|
3412
|
+
};
|
|
3413
|
+
export type SubscriptionChain_MetadataArgs = {
|
|
3414
|
+
distinct_on?: InputMaybe<Array<Chain_Metadata_Select_Column>>;
|
|
3415
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3416
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3417
|
+
order_by?: InputMaybe<Array<Chain_Metadata_Order_By>>;
|
|
3418
|
+
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
3419
|
+
};
|
|
3420
|
+
export type SubscriptionChain_Metadata_StreamArgs = {
|
|
3421
|
+
batch_size: Scalars['Int']['input'];
|
|
3422
|
+
cursor: Array<InputMaybe<Chain_Metadata_Stream_Cursor_Input>>;
|
|
3423
|
+
where?: InputMaybe<Chain_Metadata_Bool_Exp>;
|
|
3424
|
+
};
|
|
3425
|
+
export type SubscriptionRaw_EventsArgs = {
|
|
3426
|
+
distinct_on?: InputMaybe<Array<Raw_Events_Select_Column>>;
|
|
3427
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3428
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3429
|
+
order_by?: InputMaybe<Array<Raw_Events_Order_By>>;
|
|
3430
|
+
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
3431
|
+
};
|
|
3432
|
+
export type SubscriptionRaw_Events_By_PkArgs = {
|
|
3433
|
+
serial: Scalars['Int']['input'];
|
|
3434
|
+
};
|
|
3435
|
+
export type SubscriptionRaw_Events_StreamArgs = {
|
|
3436
|
+
batch_size: Scalars['Int']['input'];
|
|
3437
|
+
cursor: Array<InputMaybe<Raw_Events_Stream_Cursor_Input>>;
|
|
3438
|
+
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
3439
|
+
};
|
|
3440
|
+
export type Token = {
|
|
3441
|
+
__typename?: 'Token';
|
|
3442
|
+
auction_pools_as_base: Array<AuctionPool>;
|
|
3443
|
+
auction_pools_as_quote: Array<AuctionPool>;
|
|
3444
|
+
chain_id: Scalars['Int']['output'];
|
|
3445
|
+
graduation_pools_as_base: Array<GraduationPool>;
|
|
3446
|
+
graduation_pools_as_quote: Array<GraduationPool>;
|
|
3447
|
+
id: Scalars['String']['output'];
|
|
3448
|
+
integrator_address: Scalars['String']['output'];
|
|
3449
|
+
token_address: Scalars['String']['output'];
|
|
3450
|
+
token_creation_block: Scalars['numeric']['output'];
|
|
3451
|
+
token_creation_timestamp: Scalars['timestamptz']['output'];
|
|
3452
|
+
token_creator_address: Scalars['String']['output'];
|
|
3453
|
+
token_decimals: Scalars['Int']['output'];
|
|
3454
|
+
token_description?: Maybe<Scalars['String']['output']>;
|
|
3455
|
+
token_fee_receiver_address?: Maybe<Scalars['String']['output']>;
|
|
3456
|
+
token_image_public_url?: Maybe<Scalars['String']['output']>;
|
|
3457
|
+
token_image_uri?: Maybe<Scalars['String']['output']>;
|
|
3458
|
+
token_name: Scalars['String']['output'];
|
|
3459
|
+
token_numeraire_address: Scalars['String']['output'];
|
|
3460
|
+
token_symbol: Scalars['String']['output'];
|
|
3461
|
+
token_total_supply: Scalars['numeric']['output'];
|
|
3462
|
+
token_type: Scalars['String']['output'];
|
|
3463
|
+
token_uri: Scalars['String']['output'];
|
|
3464
|
+
token_uri_data?: Maybe<Scalars['jsonb']['output']>;
|
|
3465
|
+
token_vesting_recipient_addresses: Array<Scalars['String']['output']>;
|
|
3466
|
+
};
|
|
3467
|
+
export type TokenAuction_Pools_As_BaseArgs = {
|
|
3468
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
3469
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3470
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3471
|
+
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
3472
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3473
|
+
};
|
|
3474
|
+
export type TokenAuction_Pools_As_QuoteArgs = {
|
|
3475
|
+
distinct_on?: InputMaybe<Array<AuctionPool_Select_Column>>;
|
|
3476
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3477
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3478
|
+
order_by?: InputMaybe<Array<AuctionPool_Order_By>>;
|
|
3479
|
+
where?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
3480
|
+
};
|
|
3481
|
+
export type TokenGraduation_Pools_As_BaseArgs = {
|
|
3482
|
+
distinct_on?: InputMaybe<Array<GraduationPool_Select_Column>>;
|
|
3483
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3484
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2442
3485
|
order_by?: InputMaybe<Array<GraduationPool_Order_By>>;
|
|
2443
3486
|
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
2444
3487
|
};
|
|
@@ -2452,6 +3495,29 @@ export type TokenGraduation_Pools_As_QuoteArgs = {
|
|
|
2452
3495
|
export type TokenToken_Uri_DataArgs = {
|
|
2453
3496
|
path?: InputMaybe<Scalars['String']['input']>;
|
|
2454
3497
|
};
|
|
3498
|
+
export type TokenInfo = {
|
|
3499
|
+
__typename?: 'TokenInfo';
|
|
3500
|
+
address: Scalars['String']['output'];
|
|
3501
|
+
circulatingSupply?: Maybe<Scalars['String']['output']>;
|
|
3502
|
+
cmcId?: Maybe<Scalars['Int']['output']>;
|
|
3503
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3504
|
+
id: Scalars['String']['output'];
|
|
3505
|
+
imageBannerUrl?: Maybe<Scalars['String']['output']>;
|
|
3506
|
+
imageLargeUrl?: Maybe<Scalars['String']['output']>;
|
|
3507
|
+
imageSmallUrl?: Maybe<Scalars['String']['output']>;
|
|
3508
|
+
imageThumbHash?: Maybe<Scalars['String']['output']>;
|
|
3509
|
+
imageThumbUrl?: Maybe<Scalars['String']['output']>;
|
|
3510
|
+
isScam?: Maybe<Scalars['Boolean']['output']>;
|
|
3511
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3512
|
+
networkId: Scalars['Int']['output'];
|
|
3513
|
+
symbol: Scalars['String']['output'];
|
|
3514
|
+
totalSupply?: Maybe<Scalars['String']['output']>;
|
|
3515
|
+
videoExternalUrl?: Maybe<Scalars['String']['output']>;
|
|
3516
|
+
};
|
|
3517
|
+
export declare enum TokenPairStatisticsType {
|
|
3518
|
+
Filtered = "FILTERED",
|
|
3519
|
+
Unfiltered = "UNFILTERED"
|
|
3520
|
+
}
|
|
2455
3521
|
export type Token_Aggregate = {
|
|
2456
3522
|
__typename?: 'Token_aggregate';
|
|
2457
3523
|
aggregate?: Maybe<Token_Aggregate_Fields>;
|
|
@@ -2678,6 +3744,13 @@ export type Token_Variance_Fields = {
|
|
|
2678
3744
|
token_decimals?: Maybe<Scalars['Float']['output']>;
|
|
2679
3745
|
token_total_supply?: Maybe<Scalars['Float']['output']>;
|
|
2680
3746
|
};
|
|
3747
|
+
export type UniswapV4Data = {
|
|
3748
|
+
__typename?: 'UniswapV4Data';
|
|
3749
|
+
isDynamicFee?: Maybe<Scalars['Boolean']['output']>;
|
|
3750
|
+
isToken0NetworkToken?: Maybe<Scalars['Boolean']['output']>;
|
|
3751
|
+
type: Scalars['String']['output'];
|
|
3752
|
+
uniswapV4HookAddress?: Maybe<Scalars['String']['output']>;
|
|
3753
|
+
};
|
|
2681
3754
|
export type UserAsset = {
|
|
2682
3755
|
__typename?: 'UserAsset';
|
|
2683
3756
|
address: Scalars['String']['output'];
|
|
@@ -2880,204 +3953,53 @@ export type Float8_Comparison_Exp = {
|
|
|
2880
3953
|
_neq?: InputMaybe<Scalars['float8']['input']>;
|
|
2881
3954
|
_nin?: InputMaybe<Array<Scalars['float8']['input']>>;
|
|
2882
3955
|
};
|
|
2883
|
-
export
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
export type Jsonb_Comparison_Exp = {
|
|
2887
|
-
_cast?: InputMaybe<Jsonb_Cast_Exp>;
|
|
2888
|
-
_contained_in?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2889
|
-
_contains?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2890
|
-
_eq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2891
|
-
_gt?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2892
|
-
_gte?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2893
|
-
_has_key?: InputMaybe<Scalars['String']['input']>;
|
|
2894
|
-
_has_keys_all?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2895
|
-
_has_keys_any?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2896
|
-
_in?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
2897
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2898
|
-
_lt?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2899
|
-
_lte?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2900
|
-
_neq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
2901
|
-
_nin?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
2902
|
-
};
|
|
2903
|
-
export type Numeric_Comparison_Exp = {
|
|
2904
|
-
_eq?: InputMaybe<Scalars['numeric']['input']>;
|
|
2905
|
-
_gt?: InputMaybe<Scalars['numeric']['input']>;
|
|
2906
|
-
_gte?: InputMaybe<Scalars['numeric']['input']>;
|
|
2907
|
-
_in?: InputMaybe<Array<Scalars['numeric']['input']>>;
|
|
2908
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2909
|
-
_lt?: InputMaybe<Scalars['numeric']['input']>;
|
|
2910
|
-
_lte?: InputMaybe<Scalars['numeric']['input']>;
|
|
2911
|
-
_neq?: InputMaybe<Scalars['numeric']['input']>;
|
|
2912
|
-
_nin?: InputMaybe<Array<Scalars['numeric']['input']>>;
|
|
2913
|
-
};
|
|
2914
|
-
export declare enum Order_By {
|
|
2915
|
-
Asc = "asc",
|
|
2916
|
-
AscNullsFirst = "asc_nulls_first",
|
|
2917
|
-
AscNullsLast = "asc_nulls_last",
|
|
2918
|
-
Desc = "desc",
|
|
2919
|
-
DescNullsFirst = "desc_nulls_first",
|
|
2920
|
-
DescNullsLast = "desc_nulls_last"
|
|
3956
|
+
export declare enum Join__Graph {
|
|
3957
|
+
Codex = "CODEX",
|
|
3958
|
+
Indexer = "INDEXER"
|
|
2921
3959
|
}
|
|
2922
|
-
export type
|
|
2923
|
-
|
|
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>;
|
|
3960
|
+
export type Jsonb_Cast_Exp = {
|
|
3961
|
+
String?: InputMaybe<String_Comparison_Exp>;
|
|
3070
3962
|
};
|
|
3071
|
-
export type
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3963
|
+
export type Jsonb_Comparison_Exp = {
|
|
3964
|
+
_cast?: InputMaybe<Jsonb_Cast_Exp>;
|
|
3965
|
+
_contained_in?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3966
|
+
_contains?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3967
|
+
_eq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3968
|
+
_gt?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3969
|
+
_gte?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3970
|
+
_has_key?: InputMaybe<Scalars['String']['input']>;
|
|
3971
|
+
_has_keys_all?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3972
|
+
_has_keys_any?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3973
|
+
_in?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
3974
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3975
|
+
_lt?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3976
|
+
_lte?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3977
|
+
_neq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3978
|
+
_nin?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
3077
3979
|
};
|
|
3078
|
-
export
|
|
3079
|
-
|
|
3980
|
+
export declare enum Link__Purpose {
|
|
3981
|
+
Execution = "EXECUTION",
|
|
3982
|
+
Security = "SECURITY"
|
|
3983
|
+
}
|
|
3984
|
+
export type Numeric_Comparison_Exp = {
|
|
3985
|
+
_eq?: InputMaybe<Scalars['numeric']['input']>;
|
|
3986
|
+
_gt?: InputMaybe<Scalars['numeric']['input']>;
|
|
3987
|
+
_gte?: InputMaybe<Scalars['numeric']['input']>;
|
|
3988
|
+
_in?: InputMaybe<Array<Scalars['numeric']['input']>>;
|
|
3989
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3990
|
+
_lt?: InputMaybe<Scalars['numeric']['input']>;
|
|
3991
|
+
_lte?: InputMaybe<Scalars['numeric']['input']>;
|
|
3992
|
+
_neq?: InputMaybe<Scalars['numeric']['input']>;
|
|
3993
|
+
_nin?: InputMaybe<Array<Scalars['numeric']['input']>>;
|
|
3080
3994
|
};
|
|
3995
|
+
export declare enum Order_By {
|
|
3996
|
+
Asc = "asc",
|
|
3997
|
+
AscNullsFirst = "asc_nulls_first",
|
|
3998
|
+
AscNullsLast = "asc_nulls_last",
|
|
3999
|
+
Desc = "desc",
|
|
4000
|
+
DescNullsFirst = "desc_nulls_first",
|
|
4001
|
+
DescNullsLast = "desc_nulls_last"
|
|
4002
|
+
}
|
|
3081
4003
|
export type Raw_Events = {
|
|
3082
4004
|
__typename?: 'raw_events';
|
|
3083
4005
|
block_fields: Scalars['jsonb']['output'];
|
|
@@ -3170,243 +4092,6 @@ export type Raw_Events_Stream_Cursor_Value_Input = {
|
|
|
3170
4092
|
src_address?: InputMaybe<Scalars['String']['input']>;
|
|
3171
4093
|
transaction_fields?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3172
4094
|
};
|
|
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
4095
|
export type Timestamptz_Comparison_Exp = {
|
|
3411
4096
|
_eq?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
3412
4097
|
_gt?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
@@ -3457,6 +4142,21 @@ export type AuctionPoolFieldsFragment = {
|
|
|
3457
4142
|
pool_config_ending_time: any;
|
|
3458
4143
|
pool_migration_timestamp?: any | null;
|
|
3459
4144
|
pool_type: string;
|
|
4145
|
+
pool_volume_24h_base?: any | null;
|
|
4146
|
+
pool_volume_24h_quote?: any | null;
|
|
4147
|
+
pool_volume_24h_usd?: any | null;
|
|
4148
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4149
|
+
pool_volume_last_updated?: any | null;
|
|
4150
|
+
pool_market_data?: {
|
|
4151
|
+
__typename?: 'PairFilterResult';
|
|
4152
|
+
liquidity?: string | null;
|
|
4153
|
+
marketCap?: string | null;
|
|
4154
|
+
price?: string | null;
|
|
4155
|
+
priceScale?: string | null;
|
|
4156
|
+
priceChange24?: string | null;
|
|
4157
|
+
volumeChange24?: string | null;
|
|
4158
|
+
volumeUSD24?: string | null;
|
|
4159
|
+
} | null;
|
|
3460
4160
|
base_token?: {
|
|
3461
4161
|
__typename?: 'Token';
|
|
3462
4162
|
token_address: string;
|
|
@@ -3485,6 +4185,21 @@ export type GraduationPoolFieldsFragment = {
|
|
|
3485
4185
|
pool_address: string;
|
|
3486
4186
|
pool_migration_timestamp?: any | null;
|
|
3487
4187
|
pool_type: string;
|
|
4188
|
+
pool_volume_24h_base?: any | null;
|
|
4189
|
+
pool_volume_24h_quote?: any | null;
|
|
4190
|
+
pool_volume_24h_usd?: any | null;
|
|
4191
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4192
|
+
pool_volume_last_updated?: any | null;
|
|
4193
|
+
pool_market_data?: {
|
|
4194
|
+
__typename?: 'PairFilterResult';
|
|
4195
|
+
liquidity?: string | null;
|
|
4196
|
+
marketCap?: string | null;
|
|
4197
|
+
price?: string | null;
|
|
4198
|
+
priceScale?: string | null;
|
|
4199
|
+
priceChange24?: string | null;
|
|
4200
|
+
volumeChange24?: string | null;
|
|
4201
|
+
volumeUSD24?: string | null;
|
|
4202
|
+
} | null;
|
|
3488
4203
|
base_token?: {
|
|
3489
4204
|
__typename?: 'Token';
|
|
3490
4205
|
token_address: string;
|
|
@@ -3532,6 +4247,21 @@ export type AssetFieldsFragment = {
|
|
|
3532
4247
|
pool_config_ending_time: any;
|
|
3533
4248
|
pool_migration_timestamp?: any | null;
|
|
3534
4249
|
pool_type: string;
|
|
4250
|
+
pool_volume_24h_base?: any | null;
|
|
4251
|
+
pool_volume_24h_quote?: any | null;
|
|
4252
|
+
pool_volume_24h_usd?: any | null;
|
|
4253
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4254
|
+
pool_volume_last_updated?: any | null;
|
|
4255
|
+
pool_market_data?: {
|
|
4256
|
+
__typename?: 'PairFilterResult';
|
|
4257
|
+
liquidity?: string | null;
|
|
4258
|
+
marketCap?: string | null;
|
|
4259
|
+
price?: string | null;
|
|
4260
|
+
priceScale?: string | null;
|
|
4261
|
+
priceChange24?: string | null;
|
|
4262
|
+
volumeChange24?: string | null;
|
|
4263
|
+
volumeUSD24?: string | null;
|
|
4264
|
+
} | null;
|
|
3535
4265
|
base_token?: {
|
|
3536
4266
|
__typename?: 'Token';
|
|
3537
4267
|
token_address: string;
|
|
@@ -3560,6 +4290,21 @@ export type AssetFieldsFragment = {
|
|
|
3560
4290
|
pool_address: string;
|
|
3561
4291
|
pool_migration_timestamp?: any | null;
|
|
3562
4292
|
pool_type: string;
|
|
4293
|
+
pool_volume_24h_base?: any | null;
|
|
4294
|
+
pool_volume_24h_quote?: any | null;
|
|
4295
|
+
pool_volume_24h_usd?: any | null;
|
|
4296
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4297
|
+
pool_volume_last_updated?: any | null;
|
|
4298
|
+
pool_market_data?: {
|
|
4299
|
+
__typename?: 'PairFilterResult';
|
|
4300
|
+
liquidity?: string | null;
|
|
4301
|
+
marketCap?: string | null;
|
|
4302
|
+
price?: string | null;
|
|
4303
|
+
priceScale?: string | null;
|
|
4304
|
+
priceChange24?: string | null;
|
|
4305
|
+
volumeChange24?: string | null;
|
|
4306
|
+
volumeUSD24?: string | null;
|
|
4307
|
+
} | null;
|
|
3563
4308
|
base_token?: {
|
|
3564
4309
|
__typename?: 'Token';
|
|
3565
4310
|
token_address: string;
|
|
@@ -3587,7 +4332,7 @@ export type ListLiveAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3587
4332
|
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3588
4333
|
}>;
|
|
3589
4334
|
export type ListLiveAssetsForIntegratorQuery = {
|
|
3590
|
-
__typename?: '
|
|
4335
|
+
__typename?: 'Query';
|
|
3591
4336
|
assets: Array<{
|
|
3592
4337
|
__typename?: 'Asset';
|
|
3593
4338
|
asset_address: string;
|
|
@@ -3620,6 +4365,21 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
3620
4365
|
pool_config_ending_time: any;
|
|
3621
4366
|
pool_migration_timestamp?: any | null;
|
|
3622
4367
|
pool_type: string;
|
|
4368
|
+
pool_volume_24h_base?: any | null;
|
|
4369
|
+
pool_volume_24h_quote?: any | null;
|
|
4370
|
+
pool_volume_24h_usd?: any | null;
|
|
4371
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4372
|
+
pool_volume_last_updated?: any | null;
|
|
4373
|
+
pool_market_data?: {
|
|
4374
|
+
__typename?: 'PairFilterResult';
|
|
4375
|
+
liquidity?: string | null;
|
|
4376
|
+
marketCap?: string | null;
|
|
4377
|
+
price?: string | null;
|
|
4378
|
+
priceScale?: string | null;
|
|
4379
|
+
priceChange24?: string | null;
|
|
4380
|
+
volumeChange24?: string | null;
|
|
4381
|
+
volumeUSD24?: string | null;
|
|
4382
|
+
} | null;
|
|
3623
4383
|
base_token?: {
|
|
3624
4384
|
__typename?: 'Token';
|
|
3625
4385
|
token_address: string;
|
|
@@ -3648,6 +4408,21 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
3648
4408
|
pool_address: string;
|
|
3649
4409
|
pool_migration_timestamp?: any | null;
|
|
3650
4410
|
pool_type: string;
|
|
4411
|
+
pool_volume_24h_base?: any | null;
|
|
4412
|
+
pool_volume_24h_quote?: any | null;
|
|
4413
|
+
pool_volume_24h_usd?: any | null;
|
|
4414
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4415
|
+
pool_volume_last_updated?: any | null;
|
|
4416
|
+
pool_market_data?: {
|
|
4417
|
+
__typename?: 'PairFilterResult';
|
|
4418
|
+
liquidity?: string | null;
|
|
4419
|
+
marketCap?: string | null;
|
|
4420
|
+
price?: string | null;
|
|
4421
|
+
priceScale?: string | null;
|
|
4422
|
+
priceChange24?: string | null;
|
|
4423
|
+
volumeChange24?: string | null;
|
|
4424
|
+
volumeUSD24?: string | null;
|
|
4425
|
+
} | null;
|
|
3651
4426
|
base_token?: {
|
|
3652
4427
|
__typename?: 'Token';
|
|
3653
4428
|
token_address: string;
|
|
@@ -3675,7 +4450,7 @@ export type ListIncomingAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3675
4450
|
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3676
4451
|
}>;
|
|
3677
4452
|
export type ListIncomingAssetsForIntegratorQuery = {
|
|
3678
|
-
__typename?: '
|
|
4453
|
+
__typename?: 'Query';
|
|
3679
4454
|
assets: Array<{
|
|
3680
4455
|
__typename?: 'Asset';
|
|
3681
4456
|
asset_address: string;
|
|
@@ -3708,6 +4483,21 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
3708
4483
|
pool_config_ending_time: any;
|
|
3709
4484
|
pool_migration_timestamp?: any | null;
|
|
3710
4485
|
pool_type: string;
|
|
4486
|
+
pool_volume_24h_base?: any | null;
|
|
4487
|
+
pool_volume_24h_quote?: any | null;
|
|
4488
|
+
pool_volume_24h_usd?: any | null;
|
|
4489
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4490
|
+
pool_volume_last_updated?: any | null;
|
|
4491
|
+
pool_market_data?: {
|
|
4492
|
+
__typename?: 'PairFilterResult';
|
|
4493
|
+
liquidity?: string | null;
|
|
4494
|
+
marketCap?: string | null;
|
|
4495
|
+
price?: string | null;
|
|
4496
|
+
priceScale?: string | null;
|
|
4497
|
+
priceChange24?: string | null;
|
|
4498
|
+
volumeChange24?: string | null;
|
|
4499
|
+
volumeUSD24?: string | null;
|
|
4500
|
+
} | null;
|
|
3711
4501
|
base_token?: {
|
|
3712
4502
|
__typename?: 'Token';
|
|
3713
4503
|
token_address: string;
|
|
@@ -3736,6 +4526,21 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
3736
4526
|
pool_address: string;
|
|
3737
4527
|
pool_migration_timestamp?: any | null;
|
|
3738
4528
|
pool_type: string;
|
|
4529
|
+
pool_volume_24h_base?: any | null;
|
|
4530
|
+
pool_volume_24h_quote?: any | null;
|
|
4531
|
+
pool_volume_24h_usd?: any | null;
|
|
4532
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4533
|
+
pool_volume_last_updated?: any | null;
|
|
4534
|
+
pool_market_data?: {
|
|
4535
|
+
__typename?: 'PairFilterResult';
|
|
4536
|
+
liquidity?: string | null;
|
|
4537
|
+
marketCap?: string | null;
|
|
4538
|
+
price?: string | null;
|
|
4539
|
+
priceScale?: string | null;
|
|
4540
|
+
priceChange24?: string | null;
|
|
4541
|
+
volumeChange24?: string | null;
|
|
4542
|
+
volumeUSD24?: string | null;
|
|
4543
|
+
} | null;
|
|
3739
4544
|
base_token?: {
|
|
3740
4545
|
__typename?: 'Token';
|
|
3741
4546
|
token_address: string;
|
|
@@ -3762,7 +4567,7 @@ export type ListGraduatedAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3762
4567
|
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3763
4568
|
}>;
|
|
3764
4569
|
export type ListGraduatedAssetsForIntegratorQuery = {
|
|
3765
|
-
__typename?: '
|
|
4570
|
+
__typename?: 'Query';
|
|
3766
4571
|
assets: Array<{
|
|
3767
4572
|
__typename?: 'Asset';
|
|
3768
4573
|
asset_address: string;
|
|
@@ -3795,6 +4600,21 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
3795
4600
|
pool_config_ending_time: any;
|
|
3796
4601
|
pool_migration_timestamp?: any | null;
|
|
3797
4602
|
pool_type: string;
|
|
4603
|
+
pool_volume_24h_base?: any | null;
|
|
4604
|
+
pool_volume_24h_quote?: any | null;
|
|
4605
|
+
pool_volume_24h_usd?: any | null;
|
|
4606
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4607
|
+
pool_volume_last_updated?: any | null;
|
|
4608
|
+
pool_market_data?: {
|
|
4609
|
+
__typename?: 'PairFilterResult';
|
|
4610
|
+
liquidity?: string | null;
|
|
4611
|
+
marketCap?: string | null;
|
|
4612
|
+
price?: string | null;
|
|
4613
|
+
priceScale?: string | null;
|
|
4614
|
+
priceChange24?: string | null;
|
|
4615
|
+
volumeChange24?: string | null;
|
|
4616
|
+
volumeUSD24?: string | null;
|
|
4617
|
+
} | null;
|
|
3798
4618
|
base_token?: {
|
|
3799
4619
|
__typename?: 'Token';
|
|
3800
4620
|
token_address: string;
|
|
@@ -3823,6 +4643,21 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
3823
4643
|
pool_address: string;
|
|
3824
4644
|
pool_migration_timestamp?: any | null;
|
|
3825
4645
|
pool_type: string;
|
|
4646
|
+
pool_volume_24h_base?: any | null;
|
|
4647
|
+
pool_volume_24h_quote?: any | null;
|
|
4648
|
+
pool_volume_24h_usd?: any | null;
|
|
4649
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4650
|
+
pool_volume_last_updated?: any | null;
|
|
4651
|
+
pool_market_data?: {
|
|
4652
|
+
__typename?: 'PairFilterResult';
|
|
4653
|
+
liquidity?: string | null;
|
|
4654
|
+
marketCap?: string | null;
|
|
4655
|
+
price?: string | null;
|
|
4656
|
+
priceScale?: string | null;
|
|
4657
|
+
priceChange24?: string | null;
|
|
4658
|
+
volumeChange24?: string | null;
|
|
4659
|
+
volumeUSD24?: string | null;
|
|
4660
|
+
} | null;
|
|
3826
4661
|
base_token?: {
|
|
3827
4662
|
__typename?: 'Token';
|
|
3828
4663
|
token_address: string;
|
|
@@ -3849,7 +4684,7 @@ export type ListAllAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3849
4684
|
numeraireFilter?: InputMaybe<String_Comparison_Exp>;
|
|
3850
4685
|
}>;
|
|
3851
4686
|
export type ListAllAssetsForIntegratorQuery = {
|
|
3852
|
-
__typename?: '
|
|
4687
|
+
__typename?: 'Query';
|
|
3853
4688
|
assets: Array<{
|
|
3854
4689
|
__typename?: 'Asset';
|
|
3855
4690
|
asset_address: string;
|
|
@@ -3882,6 +4717,21 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
3882
4717
|
pool_config_ending_time: any;
|
|
3883
4718
|
pool_migration_timestamp?: any | null;
|
|
3884
4719
|
pool_type: string;
|
|
4720
|
+
pool_volume_24h_base?: any | null;
|
|
4721
|
+
pool_volume_24h_quote?: any | null;
|
|
4722
|
+
pool_volume_24h_usd?: any | null;
|
|
4723
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4724
|
+
pool_volume_last_updated?: any | null;
|
|
4725
|
+
pool_market_data?: {
|
|
4726
|
+
__typename?: 'PairFilterResult';
|
|
4727
|
+
liquidity?: string | null;
|
|
4728
|
+
marketCap?: string | null;
|
|
4729
|
+
price?: string | null;
|
|
4730
|
+
priceScale?: string | null;
|
|
4731
|
+
priceChange24?: string | null;
|
|
4732
|
+
volumeChange24?: string | null;
|
|
4733
|
+
volumeUSD24?: string | null;
|
|
4734
|
+
} | null;
|
|
3885
4735
|
base_token?: {
|
|
3886
4736
|
__typename?: 'Token';
|
|
3887
4737
|
token_address: string;
|
|
@@ -3910,6 +4760,21 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
3910
4760
|
pool_address: string;
|
|
3911
4761
|
pool_migration_timestamp?: any | null;
|
|
3912
4762
|
pool_type: string;
|
|
4763
|
+
pool_volume_24h_base?: any | null;
|
|
4764
|
+
pool_volume_24h_quote?: any | null;
|
|
4765
|
+
pool_volume_24h_usd?: any | null;
|
|
4766
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4767
|
+
pool_volume_last_updated?: any | null;
|
|
4768
|
+
pool_market_data?: {
|
|
4769
|
+
__typename?: 'PairFilterResult';
|
|
4770
|
+
liquidity?: string | null;
|
|
4771
|
+
marketCap?: string | null;
|
|
4772
|
+
price?: string | null;
|
|
4773
|
+
priceScale?: string | null;
|
|
4774
|
+
priceChange24?: string | null;
|
|
4775
|
+
volumeChange24?: string | null;
|
|
4776
|
+
volumeUSD24?: string | null;
|
|
4777
|
+
} | null;
|
|
3913
4778
|
base_token?: {
|
|
3914
4779
|
__typename?: 'Token';
|
|
3915
4780
|
token_address: string;
|
|
@@ -3934,7 +4799,7 @@ export type SearchAssetsForIntegratorQueryVariables = Exact<{
|
|
|
3934
4799
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3935
4800
|
}>;
|
|
3936
4801
|
export type SearchAssetsForIntegratorQuery = {
|
|
3937
|
-
__typename?: '
|
|
4802
|
+
__typename?: 'Query';
|
|
3938
4803
|
assets: Array<{
|
|
3939
4804
|
__typename?: 'Asset';
|
|
3940
4805
|
asset_address: string;
|
|
@@ -3967,6 +4832,21 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
3967
4832
|
pool_config_ending_time: any;
|
|
3968
4833
|
pool_migration_timestamp?: any | null;
|
|
3969
4834
|
pool_type: string;
|
|
4835
|
+
pool_volume_24h_base?: any | null;
|
|
4836
|
+
pool_volume_24h_quote?: any | null;
|
|
4837
|
+
pool_volume_24h_usd?: any | null;
|
|
4838
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4839
|
+
pool_volume_last_updated?: any | null;
|
|
4840
|
+
pool_market_data?: {
|
|
4841
|
+
__typename?: 'PairFilterResult';
|
|
4842
|
+
liquidity?: string | null;
|
|
4843
|
+
marketCap?: string | null;
|
|
4844
|
+
price?: string | null;
|
|
4845
|
+
priceScale?: string | null;
|
|
4846
|
+
priceChange24?: string | null;
|
|
4847
|
+
volumeChange24?: string | null;
|
|
4848
|
+
volumeUSD24?: string | null;
|
|
4849
|
+
} | null;
|
|
3970
4850
|
base_token?: {
|
|
3971
4851
|
__typename?: 'Token';
|
|
3972
4852
|
token_address: string;
|
|
@@ -3995,6 +4875,21 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
3995
4875
|
pool_address: string;
|
|
3996
4876
|
pool_migration_timestamp?: any | null;
|
|
3997
4877
|
pool_type: string;
|
|
4878
|
+
pool_volume_24h_base?: any | null;
|
|
4879
|
+
pool_volume_24h_quote?: any | null;
|
|
4880
|
+
pool_volume_24h_usd?: any | null;
|
|
4881
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4882
|
+
pool_volume_last_updated?: any | null;
|
|
4883
|
+
pool_market_data?: {
|
|
4884
|
+
__typename?: 'PairFilterResult';
|
|
4885
|
+
liquidity?: string | null;
|
|
4886
|
+
marketCap?: string | null;
|
|
4887
|
+
price?: string | null;
|
|
4888
|
+
priceScale?: string | null;
|
|
4889
|
+
priceChange24?: string | null;
|
|
4890
|
+
volumeChange24?: string | null;
|
|
4891
|
+
volumeUSD24?: string | null;
|
|
4892
|
+
} | null;
|
|
3998
4893
|
base_token?: {
|
|
3999
4894
|
__typename?: 'Token';
|
|
4000
4895
|
token_address: string;
|
|
@@ -4018,7 +4913,7 @@ export type GetAssetByAddressForIntegratorQueryVariables = Exact<{
|
|
|
4018
4913
|
integratorAddress: Scalars['String']['input'];
|
|
4019
4914
|
}>;
|
|
4020
4915
|
export type GetAssetByAddressForIntegratorQuery = {
|
|
4021
|
-
__typename?: '
|
|
4916
|
+
__typename?: 'Query';
|
|
4022
4917
|
asset: Array<{
|
|
4023
4918
|
__typename?: 'Asset';
|
|
4024
4919
|
asset_address: string;
|
|
@@ -4051,6 +4946,21 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
4051
4946
|
pool_config_ending_time: any;
|
|
4052
4947
|
pool_migration_timestamp?: any | null;
|
|
4053
4948
|
pool_type: string;
|
|
4949
|
+
pool_volume_24h_base?: any | null;
|
|
4950
|
+
pool_volume_24h_quote?: any | null;
|
|
4951
|
+
pool_volume_24h_usd?: any | null;
|
|
4952
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4953
|
+
pool_volume_last_updated?: any | null;
|
|
4954
|
+
pool_market_data?: {
|
|
4955
|
+
__typename?: 'PairFilterResult';
|
|
4956
|
+
liquidity?: string | null;
|
|
4957
|
+
marketCap?: string | null;
|
|
4958
|
+
price?: string | null;
|
|
4959
|
+
priceScale?: string | null;
|
|
4960
|
+
priceChange24?: string | null;
|
|
4961
|
+
volumeChange24?: string | null;
|
|
4962
|
+
volumeUSD24?: string | null;
|
|
4963
|
+
} | null;
|
|
4054
4964
|
base_token?: {
|
|
4055
4965
|
__typename?: 'Token';
|
|
4056
4966
|
token_address: string;
|
|
@@ -4079,6 +4989,21 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
4079
4989
|
pool_address: string;
|
|
4080
4990
|
pool_migration_timestamp?: any | null;
|
|
4081
4991
|
pool_type: string;
|
|
4992
|
+
pool_volume_24h_base?: any | null;
|
|
4993
|
+
pool_volume_24h_quote?: any | null;
|
|
4994
|
+
pool_volume_24h_usd?: any | null;
|
|
4995
|
+
pool_volume_24h_swap_count?: number | null;
|
|
4996
|
+
pool_volume_last_updated?: any | null;
|
|
4997
|
+
pool_market_data?: {
|
|
4998
|
+
__typename?: 'PairFilterResult';
|
|
4999
|
+
liquidity?: string | null;
|
|
5000
|
+
marketCap?: string | null;
|
|
5001
|
+
price?: string | null;
|
|
5002
|
+
priceScale?: string | null;
|
|
5003
|
+
priceChange24?: string | null;
|
|
5004
|
+
volumeChange24?: string | null;
|
|
5005
|
+
volumeUSD24?: string | null;
|
|
5006
|
+
} | null;
|
|
4082
5007
|
base_token?: {
|
|
4083
5008
|
__typename?: 'Token';
|
|
4084
5009
|
token_address: string;
|
|
@@ -4101,7 +5026,7 @@ export type ListAuctionPoolsForIntegratorQueryVariables = Exact<{
|
|
|
4101
5026
|
integratorAddress: Scalars['String']['input'];
|
|
4102
5027
|
}>;
|
|
4103
5028
|
export type ListAuctionPoolsForIntegratorQuery = {
|
|
4104
|
-
__typename?: '
|
|
5029
|
+
__typename?: 'Query';
|
|
4105
5030
|
pools: Array<{
|
|
4106
5031
|
__typename?: 'AuctionPool';
|
|
4107
5032
|
pool_address: string;
|
|
@@ -4131,7 +5056,7 @@ export type GetAuctionPoolsByAddressAndIntegratorQueryVariables = Exact<{
|
|
|
4131
5056
|
integratorAddress: Scalars['String']['input'];
|
|
4132
5057
|
}>;
|
|
4133
5058
|
export type GetAuctionPoolsByAddressAndIntegratorQuery = {
|
|
4134
|
-
__typename?: '
|
|
5059
|
+
__typename?: 'Query';
|
|
4135
5060
|
pools: Array<{
|
|
4136
5061
|
__typename?: 'AuctionPool';
|
|
4137
5062
|
pool_address: string;
|
|
@@ -4155,28 +5080,27 @@ export type GetAuctionPoolsByAddressAndIntegratorQuery = {
|
|
|
4155
5080
|
} | null;
|
|
4156
5081
|
}>;
|
|
4157
5082
|
};
|
|
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,
|
|
5083
|
+
export declare const TokenFieldsFragmentDoc: DocumentNode;
|
|
5084
|
+
export declare const AuctionPoolFieldsFragmentDoc: DocumentNode;
|
|
5085
|
+
export declare const GraduationPoolFieldsFragmentDoc: DocumentNode;
|
|
5086
|
+
export declare const AssetFieldsFragmentDoc: DocumentNode;
|
|
5087
|
+
export declare const ListLiveAssetsForIntegratorDocument: DocumentNode;
|
|
5088
|
+
export declare const ListIncomingAssetsForIntegratorDocument: DocumentNode;
|
|
5089
|
+
export declare const ListGraduatedAssetsForIntegratorDocument: DocumentNode;
|
|
5090
|
+
export declare const ListAllAssetsForIntegratorDocument: DocumentNode;
|
|
5091
|
+
export declare const SearchAssetsForIntegratorDocument: DocumentNode;
|
|
5092
|
+
export declare const GetAssetByAddressForIntegratorDocument: DocumentNode;
|
|
5093
|
+
export declare const ListAuctionPoolsForIntegratorDocument: DocumentNode;
|
|
5094
|
+
export declare const GetAuctionPoolsByAddressAndIntegratorDocument: DocumentNode;
|
|
5095
|
+
export type Requester<C = {}> = <R, V>(doc: DocumentNode, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
5096
|
+
export declare function getSdk<C>(requester: Requester<C>): {
|
|
5097
|
+
ListLiveAssetsForIntegrator(variables: ListLiveAssetsForIntegratorQueryVariables, options?: C): Promise<ListLiveAssetsForIntegratorQuery>;
|
|
5098
|
+
ListIncomingAssetsForIntegrator(variables: ListIncomingAssetsForIntegratorQueryVariables, options?: C): Promise<ListIncomingAssetsForIntegratorQuery>;
|
|
5099
|
+
ListGraduatedAssetsForIntegrator(variables: ListGraduatedAssetsForIntegratorQueryVariables, options?: C): Promise<ListGraduatedAssetsForIntegratorQuery>;
|
|
5100
|
+
ListAllAssetsForIntegrator(variables: ListAllAssetsForIntegratorQueryVariables, options?: C): Promise<ListAllAssetsForIntegratorQuery>;
|
|
5101
|
+
SearchAssetsForIntegrator(variables: SearchAssetsForIntegratorQueryVariables, options?: C): Promise<SearchAssetsForIntegratorQuery>;
|
|
5102
|
+
GetAssetByAddressForIntegrator(variables: GetAssetByAddressForIntegratorQueryVariables, options?: C): Promise<GetAssetByAddressForIntegratorQuery>;
|
|
5103
|
+
ListAuctionPoolsForIntegrator(variables: ListAuctionPoolsForIntegratorQueryVariables, options?: C): Promise<ListAuctionPoolsForIntegratorQuery>;
|
|
5104
|
+
GetAuctionPoolsByAddressAndIntegrator(variables: GetAuctionPoolsByAddressAndIntegratorQueryVariables, options?: C): Promise<GetAuctionPoolsByAddressAndIntegratorQuery>;
|
|
4180
5105
|
};
|
|
4181
5106
|
export type Sdk = ReturnType<typeof getSdk>;
|
|
4182
|
-
export {};
|