@longdotxyz/shared 0.0.25 → 0.0.27
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 +68 -0
- package/dist/contracts/asset.contract.js +2 -0
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +1 -0
- package/dist/contracts/auction-template.contract.js +1 -0
- package/dist/contracts/auction-template.contract.js.map +1 -1
- package/dist/contracts/auction.contract.d.ts +3 -0
- package/dist/contracts/auction.contract.js +3 -0
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +64 -0
- package/dist/contracts/ipfs.contract.d.ts +2 -0
- package/dist/contracts/ipfs.contract.js +2 -0
- package/dist/contracts/ipfs.contract.js.map +1 -1
- package/dist/contracts/quote.contract.d.ts +4 -0
- package/dist/contracts/quote.contract.js +4 -0
- package/dist/contracts/quote.contract.js.map +1 -1
- package/dist/graphql/generated.d.ts +22 -63
- package/dist/graphql/generated.js +2 -8
- package/dist/graphql/generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -54,10 +54,6 @@ export type Scalars = {
|
|
|
54
54
|
input: any;
|
|
55
55
|
output: any;
|
|
56
56
|
};
|
|
57
|
-
timestamp: {
|
|
58
|
-
input: any;
|
|
59
|
-
output: any;
|
|
60
|
-
};
|
|
61
57
|
timestamptz: {
|
|
62
58
|
input: any;
|
|
63
59
|
output: any;
|
|
@@ -80,7 +76,6 @@ export type Asset = {
|
|
|
80
76
|
auction_pool?: Maybe<AuctionPool>;
|
|
81
77
|
auction_pool_id: Scalars['String']['output'];
|
|
82
78
|
chain_id: Scalars['Int']['output'];
|
|
83
|
-
db_write_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
84
79
|
graduation_pool?: Maybe<GraduationPool>;
|
|
85
80
|
graduation_pool_id: Scalars['String']['output'];
|
|
86
81
|
id: Scalars['String']['output'];
|
|
@@ -105,7 +100,6 @@ export type Asset_Bool_Exp = {
|
|
|
105
100
|
auction_pool?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
106
101
|
auction_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
107
102
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
108
|
-
db_write_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
109
103
|
graduation_pool?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
110
104
|
graduation_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
111
105
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
@@ -127,7 +121,6 @@ export type Asset_Order_By = {
|
|
|
127
121
|
auction_pool?: InputMaybe<AuctionPool_Order_By>;
|
|
128
122
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
129
123
|
chain_id?: InputMaybe<Order_By>;
|
|
130
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
131
124
|
graduation_pool?: InputMaybe<GraduationPool_Order_By>;
|
|
132
125
|
graduation_pool_id?: InputMaybe<Order_By>;
|
|
133
126
|
id?: InputMaybe<Order_By>;
|
|
@@ -148,7 +141,6 @@ export declare enum Asset_Select_Column {
|
|
|
148
141
|
AssetTimelockAddress = "asset_timelock_address",
|
|
149
142
|
AuctionPoolId = "auction_pool_id",
|
|
150
143
|
ChainId = "chain_id",
|
|
151
|
-
DbWriteTimestamp = "db_write_timestamp",
|
|
152
144
|
GraduationPoolId = "graduation_pool_id",
|
|
153
145
|
Id = "id",
|
|
154
146
|
IntegratorAddress = "integrator_address"
|
|
@@ -172,7 +164,6 @@ export type Asset_Stream_Cursor_Value_Input = {
|
|
|
172
164
|
asset_timelock_address?: InputMaybe<Scalars['String']['input']>;
|
|
173
165
|
auction_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
174
166
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
175
|
-
db_write_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
176
167
|
graduation_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
177
168
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
178
169
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -184,7 +175,6 @@ export type AuctionPool = {
|
|
|
184
175
|
base_token?: Maybe<Token>;
|
|
185
176
|
base_token_id: Scalars['String']['output'];
|
|
186
177
|
chain_id: Scalars['Int']['output'];
|
|
187
|
-
db_write_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
188
178
|
id: Scalars['String']['output'];
|
|
189
179
|
integrator_address: Scalars['String']['output'];
|
|
190
180
|
pool_address: Scalars['String']['output'];
|
|
@@ -238,7 +228,6 @@ export type AuctionPool_Swap = {
|
|
|
238
228
|
auction_pool?: Maybe<AuctionPool>;
|
|
239
229
|
auction_pool_id: Scalars['String']['output'];
|
|
240
230
|
chain_id: Scalars['Int']['output'];
|
|
241
|
-
db_write_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
242
231
|
id: Scalars['String']['output'];
|
|
243
232
|
swap_amount_in: Scalars['numeric']['output'];
|
|
244
233
|
swap_amount_out: Scalars['numeric']['output'];
|
|
@@ -283,7 +272,6 @@ export type AuctionPool_Swap_Bool_Exp = {
|
|
|
283
272
|
auction_pool?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
284
273
|
auction_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
285
274
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
286
|
-
db_write_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
287
275
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
288
276
|
swap_amount_in?: InputMaybe<Numeric_Comparison_Exp>;
|
|
289
277
|
swap_amount_out?: InputMaybe<Numeric_Comparison_Exp>;
|
|
@@ -302,7 +290,6 @@ export type AuctionPool_Swap_Bool_Exp = {
|
|
|
302
290
|
export type AuctionPool_Swap_Max_Order_By = {
|
|
303
291
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
304
292
|
chain_id?: InputMaybe<Order_By>;
|
|
305
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
306
293
|
id?: InputMaybe<Order_By>;
|
|
307
294
|
swap_amount_in?: InputMaybe<Order_By>;
|
|
308
295
|
swap_amount_out?: InputMaybe<Order_By>;
|
|
@@ -321,7 +308,6 @@ export type AuctionPool_Swap_Max_Order_By = {
|
|
|
321
308
|
export type AuctionPool_Swap_Min_Order_By = {
|
|
322
309
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
323
310
|
chain_id?: InputMaybe<Order_By>;
|
|
324
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
325
311
|
id?: InputMaybe<Order_By>;
|
|
326
312
|
swap_amount_in?: InputMaybe<Order_By>;
|
|
327
313
|
swap_amount_out?: InputMaybe<Order_By>;
|
|
@@ -341,7 +327,6 @@ export type AuctionPool_Swap_Order_By = {
|
|
|
341
327
|
auction_pool?: InputMaybe<AuctionPool_Order_By>;
|
|
342
328
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
343
329
|
chain_id?: InputMaybe<Order_By>;
|
|
344
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
345
330
|
id?: InputMaybe<Order_By>;
|
|
346
331
|
swap_amount_in?: InputMaybe<Order_By>;
|
|
347
332
|
swap_amount_out?: InputMaybe<Order_By>;
|
|
@@ -360,7 +345,6 @@ export type AuctionPool_Swap_Order_By = {
|
|
|
360
345
|
export declare enum AuctionPool_Swap_Select_Column {
|
|
361
346
|
AuctionPoolId = "auction_pool_id",
|
|
362
347
|
ChainId = "chain_id",
|
|
363
|
-
DbWriteTimestamp = "db_write_timestamp",
|
|
364
348
|
Id = "id",
|
|
365
349
|
SwapAmountIn = "swap_amount_in",
|
|
366
350
|
SwapAmountOut = "swap_amount_out",
|
|
@@ -410,7 +394,6 @@ export type AuctionPool_Swap_Stream_Cursor_Input = {
|
|
|
410
394
|
export type AuctionPool_Swap_Stream_Cursor_Value_Input = {
|
|
411
395
|
auction_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
412
396
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
413
|
-
db_write_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
414
397
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
415
398
|
swap_amount_in?: InputMaybe<Scalars['numeric']['input']>;
|
|
416
399
|
swap_amount_out?: InputMaybe<Scalars['numeric']['input']>;
|
|
@@ -514,7 +497,6 @@ export type AuctionPool_Bool_Exp = {
|
|
|
514
497
|
base_token?: InputMaybe<Token_Bool_Exp>;
|
|
515
498
|
base_token_id?: InputMaybe<String_Comparison_Exp>;
|
|
516
499
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
517
|
-
db_write_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
518
500
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
519
501
|
integrator_address?: InputMaybe<String_Comparison_Exp>;
|
|
520
502
|
pool_address?: InputMaybe<String_Comparison_Exp>;
|
|
@@ -560,7 +542,6 @@ export type AuctionPool_Max_Order_By = {
|
|
|
560
542
|
asset_id?: InputMaybe<Order_By>;
|
|
561
543
|
base_token_id?: InputMaybe<Order_By>;
|
|
562
544
|
chain_id?: InputMaybe<Order_By>;
|
|
563
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
564
545
|
id?: InputMaybe<Order_By>;
|
|
565
546
|
integrator_address?: InputMaybe<Order_By>;
|
|
566
547
|
pool_address?: InputMaybe<Order_By>;
|
|
@@ -601,7 +582,6 @@ export type AuctionPool_Min_Order_By = {
|
|
|
601
582
|
asset_id?: InputMaybe<Order_By>;
|
|
602
583
|
base_token_id?: InputMaybe<Order_By>;
|
|
603
584
|
chain_id?: InputMaybe<Order_By>;
|
|
604
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
605
585
|
id?: InputMaybe<Order_By>;
|
|
606
586
|
integrator_address?: InputMaybe<Order_By>;
|
|
607
587
|
pool_address?: InputMaybe<Order_By>;
|
|
@@ -644,7 +624,6 @@ export type AuctionPool_Order_By = {
|
|
|
644
624
|
base_token?: InputMaybe<Token_Order_By>;
|
|
645
625
|
base_token_id?: InputMaybe<Order_By>;
|
|
646
626
|
chain_id?: InputMaybe<Order_By>;
|
|
647
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
648
627
|
id?: InputMaybe<Order_By>;
|
|
649
628
|
integrator_address?: InputMaybe<Order_By>;
|
|
650
629
|
pool_address?: InputMaybe<Order_By>;
|
|
@@ -690,7 +669,6 @@ export declare enum AuctionPool_Select_Column {
|
|
|
690
669
|
AssetId = "asset_id",
|
|
691
670
|
BaseTokenId = "base_token_id",
|
|
692
671
|
ChainId = "chain_id",
|
|
693
|
-
DbWriteTimestamp = "db_write_timestamp",
|
|
694
672
|
Id = "id",
|
|
695
673
|
IntegratorAddress = "integrator_address",
|
|
696
674
|
PoolAddress = "pool_address",
|
|
@@ -828,7 +806,6 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
828
806
|
asset_id?: InputMaybe<Scalars['String']['input']>;
|
|
829
807
|
base_token_id?: InputMaybe<Scalars['String']['input']>;
|
|
830
808
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
831
|
-
db_write_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
832
809
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
833
810
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
834
811
|
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1007,7 +984,6 @@ export type GraduationPool = {
|
|
|
1007
984
|
base_token?: Maybe<Token>;
|
|
1008
985
|
base_token_id: Scalars['String']['output'];
|
|
1009
986
|
chain_id: Scalars['Int']['output'];
|
|
1010
|
-
db_write_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1011
987
|
id: Scalars['String']['output'];
|
|
1012
988
|
integrator_address: Scalars['String']['output'];
|
|
1013
989
|
pool_address: Scalars['String']['output'];
|
|
@@ -1039,7 +1015,6 @@ export type GraduationPoolSwapsArgs = {
|
|
|
1039
1015
|
export type GraduationPool_Swap = {
|
|
1040
1016
|
__typename?: 'GraduationPool_Swap';
|
|
1041
1017
|
chain_id: Scalars['Int']['output'];
|
|
1042
|
-
db_write_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1043
1018
|
graduation_pool?: Maybe<GraduationPool>;
|
|
1044
1019
|
graduation_pool_id: Scalars['String']['output'];
|
|
1045
1020
|
id: Scalars['String']['output'];
|
|
@@ -1084,7 +1059,6 @@ export type GraduationPool_Swap_Bool_Exp = {
|
|
|
1084
1059
|
_not?: InputMaybe<GraduationPool_Swap_Bool_Exp>;
|
|
1085
1060
|
_or?: InputMaybe<Array<GraduationPool_Swap_Bool_Exp>>;
|
|
1086
1061
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
1087
|
-
db_write_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1088
1062
|
graduation_pool?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
1089
1063
|
graduation_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
1090
1064
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
@@ -1104,7 +1078,6 @@ export type GraduationPool_Swap_Bool_Exp = {
|
|
|
1104
1078
|
};
|
|
1105
1079
|
export type GraduationPool_Swap_Max_Order_By = {
|
|
1106
1080
|
chain_id?: InputMaybe<Order_By>;
|
|
1107
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
1108
1081
|
graduation_pool_id?: InputMaybe<Order_By>;
|
|
1109
1082
|
id?: InputMaybe<Order_By>;
|
|
1110
1083
|
swap_amount_in?: InputMaybe<Order_By>;
|
|
@@ -1123,7 +1096,6 @@ export type GraduationPool_Swap_Max_Order_By = {
|
|
|
1123
1096
|
};
|
|
1124
1097
|
export type GraduationPool_Swap_Min_Order_By = {
|
|
1125
1098
|
chain_id?: InputMaybe<Order_By>;
|
|
1126
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
1127
1099
|
graduation_pool_id?: InputMaybe<Order_By>;
|
|
1128
1100
|
id?: InputMaybe<Order_By>;
|
|
1129
1101
|
swap_amount_in?: InputMaybe<Order_By>;
|
|
@@ -1142,7 +1114,6 @@ export type GraduationPool_Swap_Min_Order_By = {
|
|
|
1142
1114
|
};
|
|
1143
1115
|
export type GraduationPool_Swap_Order_By = {
|
|
1144
1116
|
chain_id?: InputMaybe<Order_By>;
|
|
1145
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
1146
1117
|
graduation_pool?: InputMaybe<GraduationPool_Order_By>;
|
|
1147
1118
|
graduation_pool_id?: InputMaybe<Order_By>;
|
|
1148
1119
|
id?: InputMaybe<Order_By>;
|
|
@@ -1162,7 +1133,6 @@ export type GraduationPool_Swap_Order_By = {
|
|
|
1162
1133
|
};
|
|
1163
1134
|
export declare enum GraduationPool_Swap_Select_Column {
|
|
1164
1135
|
ChainId = "chain_id",
|
|
1165
|
-
DbWriteTimestamp = "db_write_timestamp",
|
|
1166
1136
|
GraduationPoolId = "graduation_pool_id",
|
|
1167
1137
|
Id = "id",
|
|
1168
1138
|
SwapAmountIn = "swap_amount_in",
|
|
@@ -1212,7 +1182,6 @@ export type GraduationPool_Swap_Stream_Cursor_Input = {
|
|
|
1212
1182
|
};
|
|
1213
1183
|
export type GraduationPool_Swap_Stream_Cursor_Value_Input = {
|
|
1214
1184
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1215
|
-
db_write_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1216
1185
|
graduation_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
1217
1186
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
1218
1187
|
swap_amount_in?: InputMaybe<Scalars['numeric']['input']>;
|
|
@@ -1303,7 +1272,6 @@ export type GraduationPool_Bool_Exp = {
|
|
|
1303
1272
|
base_token?: InputMaybe<Token_Bool_Exp>;
|
|
1304
1273
|
base_token_id?: InputMaybe<String_Comparison_Exp>;
|
|
1305
1274
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
1306
|
-
db_write_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1307
1275
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
1308
1276
|
integrator_address?: InputMaybe<String_Comparison_Exp>;
|
|
1309
1277
|
pool_address?: InputMaybe<String_Comparison_Exp>;
|
|
@@ -1330,7 +1298,6 @@ export type GraduationPool_Max_Order_By = {
|
|
|
1330
1298
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
1331
1299
|
base_token_id?: InputMaybe<Order_By>;
|
|
1332
1300
|
chain_id?: InputMaybe<Order_By>;
|
|
1333
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
1334
1301
|
id?: InputMaybe<Order_By>;
|
|
1335
1302
|
integrator_address?: InputMaybe<Order_By>;
|
|
1336
1303
|
pool_address?: InputMaybe<Order_By>;
|
|
@@ -1354,7 +1321,6 @@ export type GraduationPool_Min_Order_By = {
|
|
|
1354
1321
|
auction_pool_id?: InputMaybe<Order_By>;
|
|
1355
1322
|
base_token_id?: InputMaybe<Order_By>;
|
|
1356
1323
|
chain_id?: InputMaybe<Order_By>;
|
|
1357
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
1358
1324
|
id?: InputMaybe<Order_By>;
|
|
1359
1325
|
integrator_address?: InputMaybe<Order_By>;
|
|
1360
1326
|
pool_address?: InputMaybe<Order_By>;
|
|
@@ -1380,7 +1346,6 @@ export type GraduationPool_Order_By = {
|
|
|
1380
1346
|
base_token?: InputMaybe<Token_Order_By>;
|
|
1381
1347
|
base_token_id?: InputMaybe<Order_By>;
|
|
1382
1348
|
chain_id?: InputMaybe<Order_By>;
|
|
1383
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
1384
1349
|
id?: InputMaybe<Order_By>;
|
|
1385
1350
|
integrator_address?: InputMaybe<Order_By>;
|
|
1386
1351
|
pool_address?: InputMaybe<Order_By>;
|
|
@@ -1407,7 +1372,6 @@ export declare enum GraduationPool_Select_Column {
|
|
|
1407
1372
|
AuctionPoolId = "auction_pool_id",
|
|
1408
1373
|
BaseTokenId = "base_token_id",
|
|
1409
1374
|
ChainId = "chain_id",
|
|
1410
|
-
DbWriteTimestamp = "db_write_timestamp",
|
|
1411
1375
|
Id = "id",
|
|
1412
1376
|
IntegratorAddress = "integrator_address",
|
|
1413
1377
|
PoolAddress = "pool_address",
|
|
@@ -1481,7 +1445,6 @@ export type GraduationPool_Stream_Cursor_Value_Input = {
|
|
|
1481
1445
|
auction_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
1482
1446
|
base_token_id?: InputMaybe<Scalars['String']['input']>;
|
|
1483
1447
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1484
|
-
db_write_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1485
1448
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
1486
1449
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
1487
1450
|
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1611,7 +1574,6 @@ export type Token = {
|
|
|
1611
1574
|
auction_pools_as_base: Array<AuctionPool>;
|
|
1612
1575
|
auction_pools_as_quote: Array<AuctionPool>;
|
|
1613
1576
|
chain_id: Scalars['Int']['output'];
|
|
1614
|
-
db_write_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1615
1577
|
graduation_pools_as_base: Array<GraduationPool>;
|
|
1616
1578
|
graduation_pools_as_quote: Array<GraduationPool>;
|
|
1617
1579
|
id: Scalars['String']['output'];
|
|
@@ -1621,6 +1583,7 @@ export type Token = {
|
|
|
1621
1583
|
token_creation_timestamp: Scalars['Int']['output'];
|
|
1622
1584
|
token_creator_address: Scalars['String']['output'];
|
|
1623
1585
|
token_decimals: Scalars['Int']['output'];
|
|
1586
|
+
token_description?: Maybe<Scalars['String']['output']>;
|
|
1624
1587
|
token_fee_receiver_address?: Maybe<Scalars['String']['output']>;
|
|
1625
1588
|
token_image_public_url?: Maybe<Scalars['String']['output']>;
|
|
1626
1589
|
token_image_uri?: Maybe<Scalars['String']['output']>;
|
|
@@ -1670,7 +1633,6 @@ export type Token_Bool_Exp = {
|
|
|
1670
1633
|
auction_pools_as_base?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
1671
1634
|
auction_pools_as_quote?: InputMaybe<AuctionPool_Bool_Exp>;
|
|
1672
1635
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
1673
|
-
db_write_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1674
1636
|
graduation_pools_as_base?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
1675
1637
|
graduation_pools_as_quote?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
1676
1638
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
@@ -1680,6 +1642,7 @@ export type Token_Bool_Exp = {
|
|
|
1680
1642
|
token_creation_timestamp?: InputMaybe<Int_Comparison_Exp>;
|
|
1681
1643
|
token_creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
1682
1644
|
token_decimals?: InputMaybe<Int_Comparison_Exp>;
|
|
1645
|
+
token_description?: InputMaybe<String_Comparison_Exp>;
|
|
1683
1646
|
token_fee_receiver_address?: InputMaybe<String_Comparison_Exp>;
|
|
1684
1647
|
token_image_public_url?: InputMaybe<String_Comparison_Exp>;
|
|
1685
1648
|
token_image_uri?: InputMaybe<String_Comparison_Exp>;
|
|
@@ -1695,7 +1658,6 @@ export type Token_Order_By = {
|
|
|
1695
1658
|
auction_pools_as_base_aggregate?: InputMaybe<AuctionPool_Aggregate_Order_By>;
|
|
1696
1659
|
auction_pools_as_quote_aggregate?: InputMaybe<AuctionPool_Aggregate_Order_By>;
|
|
1697
1660
|
chain_id?: InputMaybe<Order_By>;
|
|
1698
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
1699
1661
|
graduation_pools_as_base_aggregate?: InputMaybe<GraduationPool_Aggregate_Order_By>;
|
|
1700
1662
|
graduation_pools_as_quote_aggregate?: InputMaybe<GraduationPool_Aggregate_Order_By>;
|
|
1701
1663
|
id?: InputMaybe<Order_By>;
|
|
@@ -1705,6 +1667,7 @@ export type Token_Order_By = {
|
|
|
1705
1667
|
token_creation_timestamp?: InputMaybe<Order_By>;
|
|
1706
1668
|
token_creator_address?: InputMaybe<Order_By>;
|
|
1707
1669
|
token_decimals?: InputMaybe<Order_By>;
|
|
1670
|
+
token_description?: InputMaybe<Order_By>;
|
|
1708
1671
|
token_fee_receiver_address?: InputMaybe<Order_By>;
|
|
1709
1672
|
token_image_public_url?: InputMaybe<Order_By>;
|
|
1710
1673
|
token_image_uri?: InputMaybe<Order_By>;
|
|
@@ -1718,7 +1681,6 @@ export type Token_Order_By = {
|
|
|
1718
1681
|
};
|
|
1719
1682
|
export declare enum Token_Select_Column {
|
|
1720
1683
|
ChainId = "chain_id",
|
|
1721
|
-
DbWriteTimestamp = "db_write_timestamp",
|
|
1722
1684
|
Id = "id",
|
|
1723
1685
|
IntegratorAddress = "integrator_address",
|
|
1724
1686
|
TokenAddress = "token_address",
|
|
@@ -1726,6 +1688,7 @@ export declare enum Token_Select_Column {
|
|
|
1726
1688
|
TokenCreationTimestamp = "token_creation_timestamp",
|
|
1727
1689
|
TokenCreatorAddress = "token_creator_address",
|
|
1728
1690
|
TokenDecimals = "token_decimals",
|
|
1691
|
+
TokenDescription = "token_description",
|
|
1729
1692
|
TokenFeeReceiverAddress = "token_fee_receiver_address",
|
|
1730
1693
|
TokenImagePublicUrl = "token_image_public_url",
|
|
1731
1694
|
TokenImageUri = "token_image_uri",
|
|
@@ -1743,7 +1706,6 @@ export type Token_Stream_Cursor_Input = {
|
|
|
1743
1706
|
};
|
|
1744
1707
|
export type Token_Stream_Cursor_Value_Input = {
|
|
1745
1708
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1746
|
-
db_write_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1747
1709
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
1748
1710
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
1749
1711
|
token_address?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1751,6 +1713,7 @@ export type Token_Stream_Cursor_Value_Input = {
|
|
|
1751
1713
|
token_creation_timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
1752
1714
|
token_creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
1753
1715
|
token_decimals?: InputMaybe<Scalars['Int']['input']>;
|
|
1716
|
+
token_description?: InputMaybe<Scalars['String']['input']>;
|
|
1754
1717
|
token_fee_receiver_address?: InputMaybe<Scalars['String']['input']>;
|
|
1755
1718
|
token_image_public_url?: InputMaybe<Scalars['String']['input']>;
|
|
1756
1719
|
token_image_uri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1769,7 +1732,6 @@ export type UserAsset = {
|
|
|
1769
1732
|
asset_id: Scalars['String']['output'];
|
|
1770
1733
|
balance: Scalars['numeric']['output'];
|
|
1771
1734
|
chain_id: Scalars['Int']['output'];
|
|
1772
|
-
db_write_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1773
1735
|
id: Scalars['String']['output'];
|
|
1774
1736
|
};
|
|
1775
1737
|
export type UserAsset_Bool_Exp = {
|
|
@@ -1781,7 +1743,6 @@ export type UserAsset_Bool_Exp = {
|
|
|
1781
1743
|
asset_id?: InputMaybe<String_Comparison_Exp>;
|
|
1782
1744
|
balance?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1783
1745
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
1784
|
-
db_write_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1785
1746
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
1786
1747
|
};
|
|
1787
1748
|
export type UserAsset_Order_By = {
|
|
@@ -1790,7 +1751,6 @@ export type UserAsset_Order_By = {
|
|
|
1790
1751
|
asset_id?: InputMaybe<Order_By>;
|
|
1791
1752
|
balance?: InputMaybe<Order_By>;
|
|
1792
1753
|
chain_id?: InputMaybe<Order_By>;
|
|
1793
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
1794
1754
|
id?: InputMaybe<Order_By>;
|
|
1795
1755
|
};
|
|
1796
1756
|
export declare enum UserAsset_Select_Column {
|
|
@@ -1798,7 +1758,6 @@ export declare enum UserAsset_Select_Column {
|
|
|
1798
1758
|
AssetId = "asset_id",
|
|
1799
1759
|
Balance = "balance",
|
|
1800
1760
|
ChainId = "chain_id",
|
|
1801
|
-
DbWriteTimestamp = "db_write_timestamp",
|
|
1802
1761
|
Id = "id"
|
|
1803
1762
|
}
|
|
1804
1763
|
export type UserAsset_Stream_Cursor_Input = {
|
|
@@ -1810,7 +1769,6 @@ export type UserAsset_Stream_Cursor_Value_Input = {
|
|
|
1810
1769
|
asset_id?: InputMaybe<Scalars['String']['input']>;
|
|
1811
1770
|
balance?: InputMaybe<Scalars['numeric']['input']>;
|
|
1812
1771
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1813
|
-
db_write_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1814
1772
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
1815
1773
|
};
|
|
1816
1774
|
export type _Meta = {
|
|
@@ -2131,7 +2089,6 @@ export type Raw_Events = {
|
|
|
2131
2089
|
block_timestamp: Scalars['Int']['output'];
|
|
2132
2090
|
chain_id: Scalars['Int']['output'];
|
|
2133
2091
|
contract_name: Scalars['String']['output'];
|
|
2134
|
-
db_write_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
2135
2092
|
event_id: Scalars['numeric']['output'];
|
|
2136
2093
|
event_name: Scalars['String']['output'];
|
|
2137
2094
|
log_index: Scalars['Int']['output'];
|
|
@@ -2159,7 +2116,6 @@ export type Raw_Events_Bool_Exp = {
|
|
|
2159
2116
|
block_timestamp?: InputMaybe<Int_Comparison_Exp>;
|
|
2160
2117
|
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
2161
2118
|
contract_name?: InputMaybe<String_Comparison_Exp>;
|
|
2162
|
-
db_write_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
2163
2119
|
event_id?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2164
2120
|
event_name?: InputMaybe<String_Comparison_Exp>;
|
|
2165
2121
|
log_index?: InputMaybe<Int_Comparison_Exp>;
|
|
@@ -2175,7 +2131,6 @@ export type Raw_Events_Order_By = {
|
|
|
2175
2131
|
block_timestamp?: InputMaybe<Order_By>;
|
|
2176
2132
|
chain_id?: InputMaybe<Order_By>;
|
|
2177
2133
|
contract_name?: InputMaybe<Order_By>;
|
|
2178
|
-
db_write_timestamp?: InputMaybe<Order_By>;
|
|
2179
2134
|
event_id?: InputMaybe<Order_By>;
|
|
2180
2135
|
event_name?: InputMaybe<Order_By>;
|
|
2181
2136
|
log_index?: InputMaybe<Order_By>;
|
|
@@ -2191,7 +2146,6 @@ export declare enum Raw_Events_Select_Column {
|
|
|
2191
2146
|
BlockTimestamp = "block_timestamp",
|
|
2192
2147
|
ChainId = "chain_id",
|
|
2193
2148
|
ContractName = "contract_name",
|
|
2194
|
-
DbWriteTimestamp = "db_write_timestamp",
|
|
2195
2149
|
EventId = "event_id",
|
|
2196
2150
|
EventName = "event_name",
|
|
2197
2151
|
LogIndex = "log_index",
|
|
@@ -2211,7 +2165,6 @@ export type Raw_Events_Stream_Cursor_Value_Input = {
|
|
|
2211
2165
|
block_timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
2212
2166
|
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
2213
2167
|
contract_name?: InputMaybe<Scalars['String']['input']>;
|
|
2214
|
-
db_write_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2215
2168
|
event_id?: InputMaybe<Scalars['numeric']['input']>;
|
|
2216
2169
|
event_name?: InputMaybe<Scalars['String']['input']>;
|
|
2217
2170
|
log_index?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2395,17 +2348,6 @@ export type Subscription_RootRaw_Events_StreamArgs = {
|
|
|
2395
2348
|
cursor: Array<InputMaybe<Raw_Events_Stream_Cursor_Input>>;
|
|
2396
2349
|
where?: InputMaybe<Raw_Events_Bool_Exp>;
|
|
2397
2350
|
};
|
|
2398
|
-
export type Timestamp_Comparison_Exp = {
|
|
2399
|
-
_eq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2400
|
-
_gt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2401
|
-
_gte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2402
|
-
_in?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
2403
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2404
|
-
_lt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2405
|
-
_lte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2406
|
-
_neq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2407
|
-
_nin?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
2408
|
-
};
|
|
2409
2351
|
export type Timestamptz_Comparison_Exp = {
|
|
2410
2352
|
_eq?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2411
2353
|
_gt?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
@@ -2422,6 +2364,7 @@ export type TokenFieldsFragment = {
|
|
|
2422
2364
|
token_address: string;
|
|
2423
2365
|
token_name: string;
|
|
2424
2366
|
token_symbol: string;
|
|
2367
|
+
token_description?: string | null;
|
|
2425
2368
|
token_uri_data?: any | null;
|
|
2426
2369
|
token_image_public_url?: string | null;
|
|
2427
2370
|
token_creator_address: string;
|
|
@@ -2456,6 +2399,7 @@ export type AuctionPoolFieldsFragment = {
|
|
|
2456
2399
|
token_address: string;
|
|
2457
2400
|
token_name: string;
|
|
2458
2401
|
token_symbol: string;
|
|
2402
|
+
token_description?: string | null;
|
|
2459
2403
|
token_uri_data?: any | null;
|
|
2460
2404
|
token_image_public_url?: string | null;
|
|
2461
2405
|
token_creator_address: string;
|
|
@@ -2480,6 +2424,7 @@ export type GraduationPoolFieldsFragment = {
|
|
|
2480
2424
|
token_address: string;
|
|
2481
2425
|
token_name: string;
|
|
2482
2426
|
token_symbol: string;
|
|
2427
|
+
token_description?: string | null;
|
|
2483
2428
|
token_uri_data?: any | null;
|
|
2484
2429
|
token_image_public_url?: string | null;
|
|
2485
2430
|
token_creator_address: string;
|
|
@@ -2521,6 +2466,7 @@ export type AssetFieldsFragment = {
|
|
|
2521
2466
|
token_address: string;
|
|
2522
2467
|
token_name: string;
|
|
2523
2468
|
token_symbol: string;
|
|
2469
|
+
token_description?: string | null;
|
|
2524
2470
|
token_uri_data?: any | null;
|
|
2525
2471
|
token_image_public_url?: string | null;
|
|
2526
2472
|
token_creator_address: string;
|
|
@@ -2545,6 +2491,7 @@ export type AssetFieldsFragment = {
|
|
|
2545
2491
|
token_address: string;
|
|
2546
2492
|
token_name: string;
|
|
2547
2493
|
token_symbol: string;
|
|
2494
|
+
token_description?: string | null;
|
|
2548
2495
|
token_uri_data?: any | null;
|
|
2549
2496
|
token_image_public_url?: string | null;
|
|
2550
2497
|
token_creator_address: string;
|
|
@@ -2595,6 +2542,7 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
2595
2542
|
token_address: string;
|
|
2596
2543
|
token_name: string;
|
|
2597
2544
|
token_symbol: string;
|
|
2545
|
+
token_description?: string | null;
|
|
2598
2546
|
token_uri_data?: any | null;
|
|
2599
2547
|
token_image_public_url?: string | null;
|
|
2600
2548
|
token_creator_address: string;
|
|
@@ -2619,6 +2567,7 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
2619
2567
|
token_address: string;
|
|
2620
2568
|
token_name: string;
|
|
2621
2569
|
token_symbol: string;
|
|
2570
|
+
token_description?: string | null;
|
|
2622
2571
|
token_uri_data?: any | null;
|
|
2623
2572
|
token_image_public_url?: string | null;
|
|
2624
2573
|
token_creator_address: string;
|
|
@@ -2670,6 +2619,7 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
2670
2619
|
token_address: string;
|
|
2671
2620
|
token_name: string;
|
|
2672
2621
|
token_symbol: string;
|
|
2622
|
+
token_description?: string | null;
|
|
2673
2623
|
token_uri_data?: any | null;
|
|
2674
2624
|
token_image_public_url?: string | null;
|
|
2675
2625
|
token_creator_address: string;
|
|
@@ -2694,6 +2644,7 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
2694
2644
|
token_address: string;
|
|
2695
2645
|
token_name: string;
|
|
2696
2646
|
token_symbol: string;
|
|
2647
|
+
token_description?: string | null;
|
|
2697
2648
|
token_uri_data?: any | null;
|
|
2698
2649
|
token_image_public_url?: string | null;
|
|
2699
2650
|
token_creator_address: string;
|
|
@@ -2744,6 +2695,7 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
2744
2695
|
token_address: string;
|
|
2745
2696
|
token_name: string;
|
|
2746
2697
|
token_symbol: string;
|
|
2698
|
+
token_description?: string | null;
|
|
2747
2699
|
token_uri_data?: any | null;
|
|
2748
2700
|
token_image_public_url?: string | null;
|
|
2749
2701
|
token_creator_address: string;
|
|
@@ -2768,6 +2720,7 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
2768
2720
|
token_address: string;
|
|
2769
2721
|
token_name: string;
|
|
2770
2722
|
token_symbol: string;
|
|
2723
|
+
token_description?: string | null;
|
|
2771
2724
|
token_uri_data?: any | null;
|
|
2772
2725
|
token_image_public_url?: string | null;
|
|
2773
2726
|
token_creator_address: string;
|
|
@@ -2818,6 +2771,7 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
2818
2771
|
token_address: string;
|
|
2819
2772
|
token_name: string;
|
|
2820
2773
|
token_symbol: string;
|
|
2774
|
+
token_description?: string | null;
|
|
2821
2775
|
token_uri_data?: any | null;
|
|
2822
2776
|
token_image_public_url?: string | null;
|
|
2823
2777
|
token_creator_address: string;
|
|
@@ -2842,6 +2796,7 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
2842
2796
|
token_address: string;
|
|
2843
2797
|
token_name: string;
|
|
2844
2798
|
token_symbol: string;
|
|
2799
|
+
token_description?: string | null;
|
|
2845
2800
|
token_uri_data?: any | null;
|
|
2846
2801
|
token_image_public_url?: string | null;
|
|
2847
2802
|
token_creator_address: string;
|
|
@@ -2892,6 +2847,7 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
2892
2847
|
token_address: string;
|
|
2893
2848
|
token_name: string;
|
|
2894
2849
|
token_symbol: string;
|
|
2850
|
+
token_description?: string | null;
|
|
2895
2851
|
token_uri_data?: any | null;
|
|
2896
2852
|
token_image_public_url?: string | null;
|
|
2897
2853
|
token_creator_address: string;
|
|
@@ -2916,6 +2872,7 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
2916
2872
|
token_address: string;
|
|
2917
2873
|
token_name: string;
|
|
2918
2874
|
token_symbol: string;
|
|
2875
|
+
token_description?: string | null;
|
|
2919
2876
|
token_uri_data?: any | null;
|
|
2920
2877
|
token_image_public_url?: string | null;
|
|
2921
2878
|
token_creator_address: string;
|
|
@@ -2965,6 +2922,7 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
2965
2922
|
token_address: string;
|
|
2966
2923
|
token_name: string;
|
|
2967
2924
|
token_symbol: string;
|
|
2925
|
+
token_description?: string | null;
|
|
2968
2926
|
token_uri_data?: any | null;
|
|
2969
2927
|
token_image_public_url?: string | null;
|
|
2970
2928
|
token_creator_address: string;
|
|
@@ -2989,6 +2947,7 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
2989
2947
|
token_address: string;
|
|
2990
2948
|
token_name: string;
|
|
2991
2949
|
token_symbol: string;
|
|
2950
|
+
token_description?: string | null;
|
|
2992
2951
|
token_uri_data?: any | null;
|
|
2993
2952
|
token_image_public_url?: string | null;
|
|
2994
2953
|
token_creator_address: string;
|
|
@@ -19,7 +19,6 @@ var Asset_Select_Column;
|
|
|
19
19
|
Asset_Select_Column["AssetTimelockAddress"] = "asset_timelock_address";
|
|
20
20
|
Asset_Select_Column["AuctionPoolId"] = "auction_pool_id";
|
|
21
21
|
Asset_Select_Column["ChainId"] = "chain_id";
|
|
22
|
-
Asset_Select_Column["DbWriteTimestamp"] = "db_write_timestamp";
|
|
23
22
|
Asset_Select_Column["GraduationPoolId"] = "graduation_pool_id";
|
|
24
23
|
Asset_Select_Column["Id"] = "id";
|
|
25
24
|
Asset_Select_Column["IntegratorAddress"] = "integrator_address";
|
|
@@ -28,7 +27,6 @@ var AuctionPool_Swap_Select_Column;
|
|
|
28
27
|
(function (AuctionPool_Swap_Select_Column) {
|
|
29
28
|
AuctionPool_Swap_Select_Column["AuctionPoolId"] = "auction_pool_id";
|
|
30
29
|
AuctionPool_Swap_Select_Column["ChainId"] = "chain_id";
|
|
31
|
-
AuctionPool_Swap_Select_Column["DbWriteTimestamp"] = "db_write_timestamp";
|
|
32
30
|
AuctionPool_Swap_Select_Column["Id"] = "id";
|
|
33
31
|
AuctionPool_Swap_Select_Column["SwapAmountIn"] = "swap_amount_in";
|
|
34
32
|
AuctionPool_Swap_Select_Column["SwapAmountOut"] = "swap_amount_out";
|
|
@@ -49,7 +47,6 @@ var AuctionPool_Select_Column;
|
|
|
49
47
|
AuctionPool_Select_Column["AssetId"] = "asset_id";
|
|
50
48
|
AuctionPool_Select_Column["BaseTokenId"] = "base_token_id";
|
|
51
49
|
AuctionPool_Select_Column["ChainId"] = "chain_id";
|
|
52
|
-
AuctionPool_Select_Column["DbWriteTimestamp"] = "db_write_timestamp";
|
|
53
50
|
AuctionPool_Select_Column["Id"] = "id";
|
|
54
51
|
AuctionPool_Select_Column["IntegratorAddress"] = "integrator_address";
|
|
55
52
|
AuctionPool_Select_Column["PoolAddress"] = "pool_address";
|
|
@@ -92,7 +89,6 @@ var AuctionPool_Select_Column;
|
|
|
92
89
|
var GraduationPool_Swap_Select_Column;
|
|
93
90
|
(function (GraduationPool_Swap_Select_Column) {
|
|
94
91
|
GraduationPool_Swap_Select_Column["ChainId"] = "chain_id";
|
|
95
|
-
GraduationPool_Swap_Select_Column["DbWriteTimestamp"] = "db_write_timestamp";
|
|
96
92
|
GraduationPool_Swap_Select_Column["GraduationPoolId"] = "graduation_pool_id";
|
|
97
93
|
GraduationPool_Swap_Select_Column["Id"] = "id";
|
|
98
94
|
GraduationPool_Swap_Select_Column["SwapAmountIn"] = "swap_amount_in";
|
|
@@ -115,7 +111,6 @@ var GraduationPool_Select_Column;
|
|
|
115
111
|
GraduationPool_Select_Column["AuctionPoolId"] = "auction_pool_id";
|
|
116
112
|
GraduationPool_Select_Column["BaseTokenId"] = "base_token_id";
|
|
117
113
|
GraduationPool_Select_Column["ChainId"] = "chain_id";
|
|
118
|
-
GraduationPool_Select_Column["DbWriteTimestamp"] = "db_write_timestamp";
|
|
119
114
|
GraduationPool_Select_Column["Id"] = "id";
|
|
120
115
|
GraduationPool_Select_Column["IntegratorAddress"] = "integrator_address";
|
|
121
116
|
GraduationPool_Select_Column["PoolAddress"] = "pool_address";
|
|
@@ -138,7 +133,6 @@ var GraduationPool_Select_Column;
|
|
|
138
133
|
var Token_Select_Column;
|
|
139
134
|
(function (Token_Select_Column) {
|
|
140
135
|
Token_Select_Column["ChainId"] = "chain_id";
|
|
141
|
-
Token_Select_Column["DbWriteTimestamp"] = "db_write_timestamp";
|
|
142
136
|
Token_Select_Column["Id"] = "id";
|
|
143
137
|
Token_Select_Column["IntegratorAddress"] = "integrator_address";
|
|
144
138
|
Token_Select_Column["TokenAddress"] = "token_address";
|
|
@@ -146,6 +140,7 @@ var Token_Select_Column;
|
|
|
146
140
|
Token_Select_Column["TokenCreationTimestamp"] = "token_creation_timestamp";
|
|
147
141
|
Token_Select_Column["TokenCreatorAddress"] = "token_creator_address";
|
|
148
142
|
Token_Select_Column["TokenDecimals"] = "token_decimals";
|
|
143
|
+
Token_Select_Column["TokenDescription"] = "token_description";
|
|
149
144
|
Token_Select_Column["TokenFeeReceiverAddress"] = "token_fee_receiver_address";
|
|
150
145
|
Token_Select_Column["TokenImagePublicUrl"] = "token_image_public_url";
|
|
151
146
|
Token_Select_Column["TokenImageUri"] = "token_image_uri";
|
|
@@ -163,7 +158,6 @@ var UserAsset_Select_Column;
|
|
|
163
158
|
UserAsset_Select_Column["AssetId"] = "asset_id";
|
|
164
159
|
UserAsset_Select_Column["Balance"] = "balance";
|
|
165
160
|
UserAsset_Select_Column["ChainId"] = "chain_id";
|
|
166
|
-
UserAsset_Select_Column["DbWriteTimestamp"] = "db_write_timestamp";
|
|
167
161
|
UserAsset_Select_Column["Id"] = "id";
|
|
168
162
|
})(UserAsset_Select_Column || (exports.UserAsset_Select_Column = UserAsset_Select_Column = {}));
|
|
169
163
|
var _Meta_Select_Column;
|
|
@@ -215,7 +209,6 @@ var Raw_Events_Select_Column;
|
|
|
215
209
|
Raw_Events_Select_Column["BlockTimestamp"] = "block_timestamp";
|
|
216
210
|
Raw_Events_Select_Column["ChainId"] = "chain_id";
|
|
217
211
|
Raw_Events_Select_Column["ContractName"] = "contract_name";
|
|
218
|
-
Raw_Events_Select_Column["DbWriteTimestamp"] = "db_write_timestamp";
|
|
219
212
|
Raw_Events_Select_Column["EventId"] = "event_id";
|
|
220
213
|
Raw_Events_Select_Column["EventName"] = "event_name";
|
|
221
214
|
Raw_Events_Select_Column["LogIndex"] = "log_index";
|
|
@@ -229,6 +222,7 @@ exports.TokenFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
229
222
|
token_address
|
|
230
223
|
token_name
|
|
231
224
|
token_symbol
|
|
225
|
+
token_description
|
|
232
226
|
token_uri_data
|
|
233
227
|
token_image_public_url
|
|
234
228
|
token_creator_address
|