@longdotxyz/shared 0.0.50 → 0.0.52
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 +118 -0
- package/dist/contracts/asset.contract.js +5 -0
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +93 -0
- package/dist/graphql/generated.d.ts +150 -1
- package/dist/graphql/generated.js +19 -1
- package/dist/graphql/generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -81,6 +81,8 @@ export type Asset = {
|
|
|
81
81
|
graduation_pool_id: Scalars['String']['output'];
|
|
82
82
|
id: Scalars['String']['output'];
|
|
83
83
|
integrator_address: Scalars['String']['output'];
|
|
84
|
+
numeraire_market_data?: Maybe<NumeraireMarketData>;
|
|
85
|
+
numeraire_market_data_id: Scalars['String']['output'];
|
|
84
86
|
};
|
|
85
87
|
export type Asset_Bool_Exp = {
|
|
86
88
|
_and?: InputMaybe<Array<Asset_Bool_Exp>>;
|
|
@@ -106,6 +108,8 @@ export type Asset_Bool_Exp = {
|
|
|
106
108
|
graduation_pool_id?: InputMaybe<String_Comparison_Exp>;
|
|
107
109
|
id?: InputMaybe<String_Comparison_Exp>;
|
|
108
110
|
integrator_address?: InputMaybe<String_Comparison_Exp>;
|
|
111
|
+
numeraire_market_data?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
112
|
+
numeraire_market_data_id?: InputMaybe<String_Comparison_Exp>;
|
|
109
113
|
};
|
|
110
114
|
export type Asset_Order_By = {
|
|
111
115
|
asset_address?: InputMaybe<Order_By>;
|
|
@@ -128,6 +132,8 @@ export type Asset_Order_By = {
|
|
|
128
132
|
graduation_pool_id?: InputMaybe<Order_By>;
|
|
129
133
|
id?: InputMaybe<Order_By>;
|
|
130
134
|
integrator_address?: InputMaybe<Order_By>;
|
|
135
|
+
numeraire_market_data?: InputMaybe<NumeraireMarketData_Order_By>;
|
|
136
|
+
numeraire_market_data_id?: InputMaybe<Order_By>;
|
|
131
137
|
};
|
|
132
138
|
export declare enum Asset_Select_Column {
|
|
133
139
|
AssetAddress = "asset_address",
|
|
@@ -147,7 +153,8 @@ export declare enum Asset_Select_Column {
|
|
|
147
153
|
ChainId = "chain_id",
|
|
148
154
|
GraduationPoolId = "graduation_pool_id",
|
|
149
155
|
Id = "id",
|
|
150
|
-
IntegratorAddress = "integrator_address"
|
|
156
|
+
IntegratorAddress = "integrator_address",
|
|
157
|
+
NumeraireMarketDataId = "numeraire_market_data_id"
|
|
151
158
|
}
|
|
152
159
|
export type Asset_Stream_Cursor_Input = {
|
|
153
160
|
initial_value: Asset_Stream_Cursor_Value_Input;
|
|
@@ -172,6 +179,7 @@ export type Asset_Stream_Cursor_Value_Input = {
|
|
|
172
179
|
graduation_pool_id?: InputMaybe<Scalars['String']['input']>;
|
|
173
180
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
174
181
|
integrator_address?: InputMaybe<Scalars['String']['input']>;
|
|
182
|
+
numeraire_market_data_id?: InputMaybe<Scalars['String']['input']>;
|
|
175
183
|
};
|
|
176
184
|
export type AuctionPool = {
|
|
177
185
|
__typename?: 'AuctionPool';
|
|
@@ -199,9 +207,11 @@ export type AuctionPool = {
|
|
|
199
207
|
pool_creation_block: Scalars['numeric']['output'];
|
|
200
208
|
pool_creation_timestamp: Scalars['timestamptz']['output'];
|
|
201
209
|
pool_current_fdv: Scalars['numeric']['output'];
|
|
210
|
+
pool_current_fdv_usd?: Maybe<Scalars['String']['output']>;
|
|
202
211
|
pool_current_fees_accrued: Scalars['numeric']['output'];
|
|
203
212
|
pool_current_liquidity: Scalars['numeric']['output'];
|
|
204
213
|
pool_current_market_cap: Scalars['numeric']['output'];
|
|
214
|
+
pool_current_market_cap_usd?: Maybe<Scalars['String']['output']>;
|
|
205
215
|
pool_current_min_progress_percentage?: Maybe<Scalars['float8']['output']>;
|
|
206
216
|
pool_current_price: Scalars['numeric']['output'];
|
|
207
217
|
pool_current_sale_progress_percentage?: Maybe<Scalars['float8']['output']>;
|
|
@@ -511,9 +521,11 @@ export type AuctionPool_Bool_Exp = {
|
|
|
511
521
|
pool_creation_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
512
522
|
pool_creation_timestamp?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
513
523
|
pool_current_fdv?: InputMaybe<Numeric_Comparison_Exp>;
|
|
524
|
+
pool_current_fdv_usd?: InputMaybe<String_Comparison_Exp>;
|
|
514
525
|
pool_current_fees_accrued?: InputMaybe<Numeric_Comparison_Exp>;
|
|
515
526
|
pool_current_liquidity?: InputMaybe<Numeric_Comparison_Exp>;
|
|
516
527
|
pool_current_market_cap?: InputMaybe<Numeric_Comparison_Exp>;
|
|
528
|
+
pool_current_market_cap_usd?: InputMaybe<String_Comparison_Exp>;
|
|
517
529
|
pool_current_min_progress_percentage?: InputMaybe<Float8_Comparison_Exp>;
|
|
518
530
|
pool_current_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
519
531
|
pool_current_sale_progress_percentage?: InputMaybe<Float8_Comparison_Exp>;
|
|
@@ -553,9 +565,11 @@ export type AuctionPool_Max_Order_By = {
|
|
|
553
565
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
554
566
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
555
567
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
568
|
+
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
556
569
|
pool_current_fees_accrued?: InputMaybe<Order_By>;
|
|
557
570
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
558
571
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
572
|
+
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
559
573
|
pool_current_min_progress_percentage?: InputMaybe<Order_By>;
|
|
560
574
|
pool_current_price?: InputMaybe<Order_By>;
|
|
561
575
|
pool_current_sale_progress_percentage?: InputMaybe<Order_By>;
|
|
@@ -593,9 +607,11 @@ export type AuctionPool_Min_Order_By = {
|
|
|
593
607
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
594
608
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
595
609
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
610
|
+
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
596
611
|
pool_current_fees_accrued?: InputMaybe<Order_By>;
|
|
597
612
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
598
613
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
614
|
+
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
599
615
|
pool_current_min_progress_percentage?: InputMaybe<Order_By>;
|
|
600
616
|
pool_current_price?: InputMaybe<Order_By>;
|
|
601
617
|
pool_current_sale_progress_percentage?: InputMaybe<Order_By>;
|
|
@@ -638,9 +654,11 @@ export type AuctionPool_Order_By = {
|
|
|
638
654
|
pool_creation_block?: InputMaybe<Order_By>;
|
|
639
655
|
pool_creation_timestamp?: InputMaybe<Order_By>;
|
|
640
656
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
657
|
+
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
641
658
|
pool_current_fees_accrued?: InputMaybe<Order_By>;
|
|
642
659
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
643
660
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
661
|
+
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
644
662
|
pool_current_min_progress_percentage?: InputMaybe<Order_By>;
|
|
645
663
|
pool_current_price?: InputMaybe<Order_By>;
|
|
646
664
|
pool_current_sale_progress_percentage?: InputMaybe<Order_By>;
|
|
@@ -683,9 +701,11 @@ export declare enum AuctionPool_Select_Column {
|
|
|
683
701
|
PoolCreationBlock = "pool_creation_block",
|
|
684
702
|
PoolCreationTimestamp = "pool_creation_timestamp",
|
|
685
703
|
PoolCurrentFdv = "pool_current_fdv",
|
|
704
|
+
PoolCurrentFdvUsd = "pool_current_fdv_usd",
|
|
686
705
|
PoolCurrentFeesAccrued = "pool_current_fees_accrued",
|
|
687
706
|
PoolCurrentLiquidity = "pool_current_liquidity",
|
|
688
707
|
PoolCurrentMarketCap = "pool_current_market_cap",
|
|
708
|
+
PoolCurrentMarketCapUsd = "pool_current_market_cap_usd",
|
|
689
709
|
PoolCurrentMinProgressPercentage = "pool_current_min_progress_percentage",
|
|
690
710
|
PoolCurrentPrice = "pool_current_price",
|
|
691
711
|
PoolCurrentSaleProgressPercentage = "pool_current_sale_progress_percentage",
|
|
@@ -814,9 +834,11 @@ export type AuctionPool_Stream_Cursor_Value_Input = {
|
|
|
814
834
|
pool_creation_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
815
835
|
pool_creation_timestamp?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
816
836
|
pool_current_fdv?: InputMaybe<Scalars['numeric']['input']>;
|
|
837
|
+
pool_current_fdv_usd?: InputMaybe<Scalars['String']['input']>;
|
|
817
838
|
pool_current_fees_accrued?: InputMaybe<Scalars['numeric']['input']>;
|
|
818
839
|
pool_current_liquidity?: InputMaybe<Scalars['numeric']['input']>;
|
|
819
840
|
pool_current_market_cap?: InputMaybe<Scalars['numeric']['input']>;
|
|
841
|
+
pool_current_market_cap_usd?: InputMaybe<Scalars['String']['input']>;
|
|
820
842
|
pool_current_min_progress_percentage?: InputMaybe<Scalars['float8']['input']>;
|
|
821
843
|
pool_current_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
822
844
|
pool_current_sale_progress_percentage?: InputMaybe<Scalars['float8']['input']>;
|
|
@@ -970,8 +992,10 @@ export type GraduationPool = {
|
|
|
970
992
|
pool_address: Scalars['String']['output'];
|
|
971
993
|
pool_config_is_token_0: Scalars['Boolean']['output'];
|
|
972
994
|
pool_current_fdv?: Maybe<Scalars['numeric']['output']>;
|
|
995
|
+
pool_current_fdv_usd?: Maybe<Scalars['String']['output']>;
|
|
973
996
|
pool_current_liquidity: Scalars['numeric']['output'];
|
|
974
997
|
pool_current_market_cap?: Maybe<Scalars['numeric']['output']>;
|
|
998
|
+
pool_current_market_cap_usd?: Maybe<Scalars['String']['output']>;
|
|
975
999
|
pool_current_price: Scalars['numeric']['output'];
|
|
976
1000
|
pool_current_reserve_base_token: Scalars['numeric']['output'];
|
|
977
1001
|
pool_current_reserve_quote_token: Scalars['numeric']['output'];
|
|
@@ -1249,8 +1273,10 @@ export type GraduationPool_Bool_Exp = {
|
|
|
1249
1273
|
pool_address?: InputMaybe<String_Comparison_Exp>;
|
|
1250
1274
|
pool_config_is_token_0?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1251
1275
|
pool_current_fdv?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1276
|
+
pool_current_fdv_usd?: InputMaybe<String_Comparison_Exp>;
|
|
1252
1277
|
pool_current_liquidity?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1253
1278
|
pool_current_market_cap?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1279
|
+
pool_current_market_cap_usd?: InputMaybe<String_Comparison_Exp>;
|
|
1254
1280
|
pool_current_price?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1255
1281
|
pool_current_reserve_base_token?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1256
1282
|
pool_current_reserve_quote_token?: InputMaybe<Numeric_Comparison_Exp>;
|
|
@@ -1274,8 +1300,10 @@ export type GraduationPool_Max_Order_By = {
|
|
|
1274
1300
|
integrator_address?: InputMaybe<Order_By>;
|
|
1275
1301
|
pool_address?: InputMaybe<Order_By>;
|
|
1276
1302
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
1303
|
+
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
1277
1304
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
1278
1305
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
1306
|
+
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
1279
1307
|
pool_current_price?: InputMaybe<Order_By>;
|
|
1280
1308
|
pool_current_reserve_base_token?: InputMaybe<Order_By>;
|
|
1281
1309
|
pool_current_reserve_quote_token?: InputMaybe<Order_By>;
|
|
@@ -1297,8 +1325,10 @@ export type GraduationPool_Min_Order_By = {
|
|
|
1297
1325
|
integrator_address?: InputMaybe<Order_By>;
|
|
1298
1326
|
pool_address?: InputMaybe<Order_By>;
|
|
1299
1327
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
1328
|
+
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
1300
1329
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
1301
1330
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
1331
|
+
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
1302
1332
|
pool_current_price?: InputMaybe<Order_By>;
|
|
1303
1333
|
pool_current_reserve_base_token?: InputMaybe<Order_By>;
|
|
1304
1334
|
pool_current_reserve_quote_token?: InputMaybe<Order_By>;
|
|
@@ -1323,8 +1353,10 @@ export type GraduationPool_Order_By = {
|
|
|
1323
1353
|
pool_address?: InputMaybe<Order_By>;
|
|
1324
1354
|
pool_config_is_token_0?: InputMaybe<Order_By>;
|
|
1325
1355
|
pool_current_fdv?: InputMaybe<Order_By>;
|
|
1356
|
+
pool_current_fdv_usd?: InputMaybe<Order_By>;
|
|
1326
1357
|
pool_current_liquidity?: InputMaybe<Order_By>;
|
|
1327
1358
|
pool_current_market_cap?: InputMaybe<Order_By>;
|
|
1359
|
+
pool_current_market_cap_usd?: InputMaybe<Order_By>;
|
|
1328
1360
|
pool_current_price?: InputMaybe<Order_By>;
|
|
1329
1361
|
pool_current_reserve_base_token?: InputMaybe<Order_By>;
|
|
1330
1362
|
pool_current_reserve_quote_token?: InputMaybe<Order_By>;
|
|
@@ -1349,8 +1381,10 @@ export declare enum GraduationPool_Select_Column {
|
|
|
1349
1381
|
PoolAddress = "pool_address",
|
|
1350
1382
|
PoolConfigIsToken_0 = "pool_config_is_token_0",
|
|
1351
1383
|
PoolCurrentFdv = "pool_current_fdv",
|
|
1384
|
+
PoolCurrentFdvUsd = "pool_current_fdv_usd",
|
|
1352
1385
|
PoolCurrentLiquidity = "pool_current_liquidity",
|
|
1353
1386
|
PoolCurrentMarketCap = "pool_current_market_cap",
|
|
1387
|
+
PoolCurrentMarketCapUsd = "pool_current_market_cap_usd",
|
|
1354
1388
|
PoolCurrentPrice = "pool_current_price",
|
|
1355
1389
|
PoolCurrentReserveBaseToken = "pool_current_reserve_base_token",
|
|
1356
1390
|
PoolCurrentReserveQuoteToken = "pool_current_reserve_quote_token",
|
|
@@ -1419,8 +1453,10 @@ export type GraduationPool_Stream_Cursor_Value_Input = {
|
|
|
1419
1453
|
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
1420
1454
|
pool_config_is_token_0?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1421
1455
|
pool_current_fdv?: InputMaybe<Scalars['numeric']['input']>;
|
|
1456
|
+
pool_current_fdv_usd?: InputMaybe<Scalars['String']['input']>;
|
|
1422
1457
|
pool_current_liquidity?: InputMaybe<Scalars['numeric']['input']>;
|
|
1423
1458
|
pool_current_market_cap?: InputMaybe<Scalars['numeric']['input']>;
|
|
1459
|
+
pool_current_market_cap_usd?: InputMaybe<Scalars['String']['input']>;
|
|
1424
1460
|
pool_current_price?: InputMaybe<Scalars['numeric']['input']>;
|
|
1425
1461
|
pool_current_reserve_base_token?: InputMaybe<Scalars['numeric']['input']>;
|
|
1426
1462
|
pool_current_reserve_quote_token?: InputMaybe<Scalars['numeric']['input']>;
|
|
@@ -1500,6 +1536,64 @@ export type Int_Comparison_Exp = {
|
|
|
1500
1536
|
_neq?: InputMaybe<Scalars['Int']['input']>;
|
|
1501
1537
|
_nin?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1502
1538
|
};
|
|
1539
|
+
export type NumeraireMarketData = {
|
|
1540
|
+
__typename?: 'NumeraireMarketData';
|
|
1541
|
+
chain_id: Scalars['Int']['output'];
|
|
1542
|
+
id: Scalars['String']['output'];
|
|
1543
|
+
last_refreshed_block: Scalars['numeric']['output'];
|
|
1544
|
+
numeraire_address: Scalars['String']['output'];
|
|
1545
|
+
numeraire_daily_price_change_percentage?: Maybe<Scalars['String']['output']>;
|
|
1546
|
+
numeraire_daily_volume_usd?: Maybe<Scalars['String']['output']>;
|
|
1547
|
+
numeraire_market_cap_usd?: Maybe<Scalars['String']['output']>;
|
|
1548
|
+
numeraire_price_usd?: Maybe<Scalars['String']['output']>;
|
|
1549
|
+
};
|
|
1550
|
+
export type NumeraireMarketData_Bool_Exp = {
|
|
1551
|
+
_and?: InputMaybe<Array<NumeraireMarketData_Bool_Exp>>;
|
|
1552
|
+
_not?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
1553
|
+
_or?: InputMaybe<Array<NumeraireMarketData_Bool_Exp>>;
|
|
1554
|
+
chain_id?: InputMaybe<Int_Comparison_Exp>;
|
|
1555
|
+
id?: InputMaybe<String_Comparison_Exp>;
|
|
1556
|
+
last_refreshed_block?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1557
|
+
numeraire_address?: InputMaybe<String_Comparison_Exp>;
|
|
1558
|
+
numeraire_daily_price_change_percentage?: InputMaybe<String_Comparison_Exp>;
|
|
1559
|
+
numeraire_daily_volume_usd?: InputMaybe<String_Comparison_Exp>;
|
|
1560
|
+
numeraire_market_cap_usd?: InputMaybe<String_Comparison_Exp>;
|
|
1561
|
+
numeraire_price_usd?: InputMaybe<String_Comparison_Exp>;
|
|
1562
|
+
};
|
|
1563
|
+
export type NumeraireMarketData_Order_By = {
|
|
1564
|
+
chain_id?: InputMaybe<Order_By>;
|
|
1565
|
+
id?: InputMaybe<Order_By>;
|
|
1566
|
+
last_refreshed_block?: InputMaybe<Order_By>;
|
|
1567
|
+
numeraire_address?: InputMaybe<Order_By>;
|
|
1568
|
+
numeraire_daily_price_change_percentage?: InputMaybe<Order_By>;
|
|
1569
|
+
numeraire_daily_volume_usd?: InputMaybe<Order_By>;
|
|
1570
|
+
numeraire_market_cap_usd?: InputMaybe<Order_By>;
|
|
1571
|
+
numeraire_price_usd?: InputMaybe<Order_By>;
|
|
1572
|
+
};
|
|
1573
|
+
export declare enum NumeraireMarketData_Select_Column {
|
|
1574
|
+
ChainId = "chain_id",
|
|
1575
|
+
Id = "id",
|
|
1576
|
+
LastRefreshedBlock = "last_refreshed_block",
|
|
1577
|
+
NumeraireAddress = "numeraire_address",
|
|
1578
|
+
NumeraireDailyPriceChangePercentage = "numeraire_daily_price_change_percentage",
|
|
1579
|
+
NumeraireDailyVolumeUsd = "numeraire_daily_volume_usd",
|
|
1580
|
+
NumeraireMarketCapUsd = "numeraire_market_cap_usd",
|
|
1581
|
+
NumerairePriceUsd = "numeraire_price_usd"
|
|
1582
|
+
}
|
|
1583
|
+
export type NumeraireMarketData_Stream_Cursor_Input = {
|
|
1584
|
+
initial_value: NumeraireMarketData_Stream_Cursor_Value_Input;
|
|
1585
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1586
|
+
};
|
|
1587
|
+
export type NumeraireMarketData_Stream_Cursor_Value_Input = {
|
|
1588
|
+
chain_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1589
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1590
|
+
last_refreshed_block?: InputMaybe<Scalars['numeric']['input']>;
|
|
1591
|
+
numeraire_address?: InputMaybe<Scalars['String']['input']>;
|
|
1592
|
+
numeraire_daily_price_change_percentage?: InputMaybe<Scalars['String']['input']>;
|
|
1593
|
+
numeraire_daily_volume_usd?: InputMaybe<Scalars['String']['input']>;
|
|
1594
|
+
numeraire_market_cap_usd?: InputMaybe<Scalars['String']['input']>;
|
|
1595
|
+
numeraire_price_usd?: InputMaybe<Scalars['String']['input']>;
|
|
1596
|
+
};
|
|
1503
1597
|
export type String_Array_Comparison_Exp = {
|
|
1504
1598
|
_contained_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1505
1599
|
_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -1943,6 +2037,8 @@ export type Query_Root = {
|
|
|
1943
2037
|
GraduationPool_Swap: Array<GraduationPool_Swap>;
|
|
1944
2038
|
GraduationPool_Swap_by_pk?: Maybe<GraduationPool_Swap>;
|
|
1945
2039
|
GraduationPool_by_pk?: Maybe<GraduationPool>;
|
|
2040
|
+
NumeraireMarketData: Array<NumeraireMarketData>;
|
|
2041
|
+
NumeraireMarketData_by_pk?: Maybe<NumeraireMarketData>;
|
|
1946
2042
|
Token: Array<Token>;
|
|
1947
2043
|
Token_by_pk?: Maybe<Token>;
|
|
1948
2044
|
UserAsset: Array<UserAsset>;
|
|
@@ -2002,6 +2098,16 @@ export type Query_RootGraduationPool_Swap_By_PkArgs = {
|
|
|
2002
2098
|
export type Query_RootGraduationPool_By_PkArgs = {
|
|
2003
2099
|
id: Scalars['String']['input'];
|
|
2004
2100
|
};
|
|
2101
|
+
export type Query_RootNumeraireMarketDataArgs = {
|
|
2102
|
+
distinct_on?: InputMaybe<Array<NumeraireMarketData_Select_Column>>;
|
|
2103
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2104
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2105
|
+
order_by?: InputMaybe<Array<NumeraireMarketData_Order_By>>;
|
|
2106
|
+
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
2107
|
+
};
|
|
2108
|
+
export type Query_RootNumeraireMarketData_By_PkArgs = {
|
|
2109
|
+
id: Scalars['String']['input'];
|
|
2110
|
+
};
|
|
2005
2111
|
export type Query_RootTokenArgs = {
|
|
2006
2112
|
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
2007
2113
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2155,6 +2261,9 @@ export type Subscription_Root = {
|
|
|
2155
2261
|
GraduationPool_Swap_stream: Array<GraduationPool_Swap>;
|
|
2156
2262
|
GraduationPool_by_pk?: Maybe<GraduationPool>;
|
|
2157
2263
|
GraduationPool_stream: Array<GraduationPool>;
|
|
2264
|
+
NumeraireMarketData: Array<NumeraireMarketData>;
|
|
2265
|
+
NumeraireMarketData_by_pk?: Maybe<NumeraireMarketData>;
|
|
2266
|
+
NumeraireMarketData_stream: Array<NumeraireMarketData>;
|
|
2158
2267
|
Token: Array<Token>;
|
|
2159
2268
|
Token_by_pk?: Maybe<Token>;
|
|
2160
2269
|
Token_stream: Array<Token>;
|
|
@@ -2244,6 +2353,21 @@ export type Subscription_RootGraduationPool_StreamArgs = {
|
|
|
2244
2353
|
cursor: Array<InputMaybe<GraduationPool_Stream_Cursor_Input>>;
|
|
2245
2354
|
where?: InputMaybe<GraduationPool_Bool_Exp>;
|
|
2246
2355
|
};
|
|
2356
|
+
export type Subscription_RootNumeraireMarketDataArgs = {
|
|
2357
|
+
distinct_on?: InputMaybe<Array<NumeraireMarketData_Select_Column>>;
|
|
2358
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2359
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2360
|
+
order_by?: InputMaybe<Array<NumeraireMarketData_Order_By>>;
|
|
2361
|
+
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
2362
|
+
};
|
|
2363
|
+
export type Subscription_RootNumeraireMarketData_By_PkArgs = {
|
|
2364
|
+
id: Scalars['String']['input'];
|
|
2365
|
+
};
|
|
2366
|
+
export type Subscription_RootNumeraireMarketData_StreamArgs = {
|
|
2367
|
+
batch_size: Scalars['Int']['input'];
|
|
2368
|
+
cursor: Array<InputMaybe<NumeraireMarketData_Stream_Cursor_Input>>;
|
|
2369
|
+
where?: InputMaybe<NumeraireMarketData_Bool_Exp>;
|
|
2370
|
+
};
|
|
2247
2371
|
export type Subscription_RootTokenArgs = {
|
|
2248
2372
|
distinct_on?: InputMaybe<Array<Token_Select_Column>>;
|
|
2249
2373
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2329,6 +2453,7 @@ export type TokenFieldsFragment = {
|
|
|
2329
2453
|
token_address: string;
|
|
2330
2454
|
token_name: string;
|
|
2331
2455
|
token_symbol: string;
|
|
2456
|
+
token_decimals: number;
|
|
2332
2457
|
token_description?: string | null;
|
|
2333
2458
|
token_uri_data?: any | null;
|
|
2334
2459
|
token_image_public_url?: string | null;
|
|
@@ -2353,6 +2478,7 @@ export type AuctionPoolFieldsFragment = {
|
|
|
2353
2478
|
pool_current_sale_progress_percentage?: any | null;
|
|
2354
2479
|
pool_config_max_proceeds: any;
|
|
2355
2480
|
pool_config_min_proceeds: any;
|
|
2481
|
+
pool_config_num_tokens_to_sell: any;
|
|
2356
2482
|
pool_id: string;
|
|
2357
2483
|
pool_address: string;
|
|
2358
2484
|
pool_config_starting_time: any;
|
|
@@ -2364,6 +2490,7 @@ export type AuctionPoolFieldsFragment = {
|
|
|
2364
2490
|
token_address: string;
|
|
2365
2491
|
token_name: string;
|
|
2366
2492
|
token_symbol: string;
|
|
2493
|
+
token_decimals: number;
|
|
2367
2494
|
token_description?: string | null;
|
|
2368
2495
|
token_uri_data?: any | null;
|
|
2369
2496
|
token_image_public_url?: string | null;
|
|
@@ -2389,6 +2516,7 @@ export type GraduationPoolFieldsFragment = {
|
|
|
2389
2516
|
token_address: string;
|
|
2390
2517
|
token_name: string;
|
|
2391
2518
|
token_symbol: string;
|
|
2519
|
+
token_decimals: number;
|
|
2392
2520
|
token_description?: string | null;
|
|
2393
2521
|
token_uri_data?: any | null;
|
|
2394
2522
|
token_image_public_url?: string | null;
|
|
@@ -2421,6 +2549,7 @@ export type AssetFieldsFragment = {
|
|
|
2421
2549
|
pool_current_sale_progress_percentage?: any | null;
|
|
2422
2550
|
pool_config_max_proceeds: any;
|
|
2423
2551
|
pool_config_min_proceeds: any;
|
|
2552
|
+
pool_config_num_tokens_to_sell: any;
|
|
2424
2553
|
pool_id: string;
|
|
2425
2554
|
pool_address: string;
|
|
2426
2555
|
pool_config_starting_time: any;
|
|
@@ -2432,6 +2561,7 @@ export type AssetFieldsFragment = {
|
|
|
2432
2561
|
token_address: string;
|
|
2433
2562
|
token_name: string;
|
|
2434
2563
|
token_symbol: string;
|
|
2564
|
+
token_decimals: number;
|
|
2435
2565
|
token_description?: string | null;
|
|
2436
2566
|
token_uri_data?: any | null;
|
|
2437
2567
|
token_image_public_url?: string | null;
|
|
@@ -2457,6 +2587,7 @@ export type AssetFieldsFragment = {
|
|
|
2457
2587
|
token_address: string;
|
|
2458
2588
|
token_name: string;
|
|
2459
2589
|
token_symbol: string;
|
|
2590
|
+
token_decimals: number;
|
|
2460
2591
|
token_description?: string | null;
|
|
2461
2592
|
token_uri_data?: any | null;
|
|
2462
2593
|
token_image_public_url?: string | null;
|
|
@@ -2500,6 +2631,7 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
2500
2631
|
pool_current_sale_progress_percentage?: any | null;
|
|
2501
2632
|
pool_config_max_proceeds: any;
|
|
2502
2633
|
pool_config_min_proceeds: any;
|
|
2634
|
+
pool_config_num_tokens_to_sell: any;
|
|
2503
2635
|
pool_id: string;
|
|
2504
2636
|
pool_address: string;
|
|
2505
2637
|
pool_config_starting_time: any;
|
|
@@ -2511,6 +2643,7 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
2511
2643
|
token_address: string;
|
|
2512
2644
|
token_name: string;
|
|
2513
2645
|
token_symbol: string;
|
|
2646
|
+
token_decimals: number;
|
|
2514
2647
|
token_description?: string | null;
|
|
2515
2648
|
token_uri_data?: any | null;
|
|
2516
2649
|
token_image_public_url?: string | null;
|
|
@@ -2536,6 +2669,7 @@ export type ListLiveAssetsForIntegratorQuery = {
|
|
|
2536
2669
|
token_address: string;
|
|
2537
2670
|
token_name: string;
|
|
2538
2671
|
token_symbol: string;
|
|
2672
|
+
token_decimals: number;
|
|
2539
2673
|
token_description?: string | null;
|
|
2540
2674
|
token_uri_data?: any | null;
|
|
2541
2675
|
token_image_public_url?: string | null;
|
|
@@ -2579,6 +2713,7 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
2579
2713
|
pool_current_sale_progress_percentage?: any | null;
|
|
2580
2714
|
pool_config_max_proceeds: any;
|
|
2581
2715
|
pool_config_min_proceeds: any;
|
|
2716
|
+
pool_config_num_tokens_to_sell: any;
|
|
2582
2717
|
pool_id: string;
|
|
2583
2718
|
pool_address: string;
|
|
2584
2719
|
pool_config_starting_time: any;
|
|
@@ -2590,6 +2725,7 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
2590
2725
|
token_address: string;
|
|
2591
2726
|
token_name: string;
|
|
2592
2727
|
token_symbol: string;
|
|
2728
|
+
token_decimals: number;
|
|
2593
2729
|
token_description?: string | null;
|
|
2594
2730
|
token_uri_data?: any | null;
|
|
2595
2731
|
token_image_public_url?: string | null;
|
|
@@ -2615,6 +2751,7 @@ export type ListIncomingAssetsForIntegratorQuery = {
|
|
|
2615
2751
|
token_address: string;
|
|
2616
2752
|
token_name: string;
|
|
2617
2753
|
token_symbol: string;
|
|
2754
|
+
token_decimals: number;
|
|
2618
2755
|
token_description?: string | null;
|
|
2619
2756
|
token_uri_data?: any | null;
|
|
2620
2757
|
token_image_public_url?: string | null;
|
|
@@ -2657,6 +2794,7 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
2657
2794
|
pool_current_sale_progress_percentage?: any | null;
|
|
2658
2795
|
pool_config_max_proceeds: any;
|
|
2659
2796
|
pool_config_min_proceeds: any;
|
|
2797
|
+
pool_config_num_tokens_to_sell: any;
|
|
2660
2798
|
pool_id: string;
|
|
2661
2799
|
pool_address: string;
|
|
2662
2800
|
pool_config_starting_time: any;
|
|
@@ -2668,6 +2806,7 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
2668
2806
|
token_address: string;
|
|
2669
2807
|
token_name: string;
|
|
2670
2808
|
token_symbol: string;
|
|
2809
|
+
token_decimals: number;
|
|
2671
2810
|
token_description?: string | null;
|
|
2672
2811
|
token_uri_data?: any | null;
|
|
2673
2812
|
token_image_public_url?: string | null;
|
|
@@ -2693,6 +2832,7 @@ export type ListGraduatedAssetsForIntegratorQuery = {
|
|
|
2693
2832
|
token_address: string;
|
|
2694
2833
|
token_name: string;
|
|
2695
2834
|
token_symbol: string;
|
|
2835
|
+
token_decimals: number;
|
|
2696
2836
|
token_description?: string | null;
|
|
2697
2837
|
token_uri_data?: any | null;
|
|
2698
2838
|
token_image_public_url?: string | null;
|
|
@@ -2735,6 +2875,7 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
2735
2875
|
pool_current_sale_progress_percentage?: any | null;
|
|
2736
2876
|
pool_config_max_proceeds: any;
|
|
2737
2877
|
pool_config_min_proceeds: any;
|
|
2878
|
+
pool_config_num_tokens_to_sell: any;
|
|
2738
2879
|
pool_id: string;
|
|
2739
2880
|
pool_address: string;
|
|
2740
2881
|
pool_config_starting_time: any;
|
|
@@ -2746,6 +2887,7 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
2746
2887
|
token_address: string;
|
|
2747
2888
|
token_name: string;
|
|
2748
2889
|
token_symbol: string;
|
|
2890
|
+
token_decimals: number;
|
|
2749
2891
|
token_description?: string | null;
|
|
2750
2892
|
token_uri_data?: any | null;
|
|
2751
2893
|
token_image_public_url?: string | null;
|
|
@@ -2771,6 +2913,7 @@ export type ListAllAssetsForIntegratorQuery = {
|
|
|
2771
2913
|
token_address: string;
|
|
2772
2914
|
token_name: string;
|
|
2773
2915
|
token_symbol: string;
|
|
2916
|
+
token_decimals: number;
|
|
2774
2917
|
token_description?: string | null;
|
|
2775
2918
|
token_uri_data?: any | null;
|
|
2776
2919
|
token_image_public_url?: string | null;
|
|
@@ -2813,6 +2956,7 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
2813
2956
|
pool_current_sale_progress_percentage?: any | null;
|
|
2814
2957
|
pool_config_max_proceeds: any;
|
|
2815
2958
|
pool_config_min_proceeds: any;
|
|
2959
|
+
pool_config_num_tokens_to_sell: any;
|
|
2816
2960
|
pool_id: string;
|
|
2817
2961
|
pool_address: string;
|
|
2818
2962
|
pool_config_starting_time: any;
|
|
@@ -2824,6 +2968,7 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
2824
2968
|
token_address: string;
|
|
2825
2969
|
token_name: string;
|
|
2826
2970
|
token_symbol: string;
|
|
2971
|
+
token_decimals: number;
|
|
2827
2972
|
token_description?: string | null;
|
|
2828
2973
|
token_uri_data?: any | null;
|
|
2829
2974
|
token_image_public_url?: string | null;
|
|
@@ -2849,6 +2994,7 @@ export type SearchAssetsForIntegratorQuery = {
|
|
|
2849
2994
|
token_address: string;
|
|
2850
2995
|
token_name: string;
|
|
2851
2996
|
token_symbol: string;
|
|
2997
|
+
token_decimals: number;
|
|
2852
2998
|
token_description?: string | null;
|
|
2853
2999
|
token_uri_data?: any | null;
|
|
2854
3000
|
token_image_public_url?: string | null;
|
|
@@ -2890,6 +3036,7 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
2890
3036
|
pool_current_sale_progress_percentage?: any | null;
|
|
2891
3037
|
pool_config_max_proceeds: any;
|
|
2892
3038
|
pool_config_min_proceeds: any;
|
|
3039
|
+
pool_config_num_tokens_to_sell: any;
|
|
2893
3040
|
pool_id: string;
|
|
2894
3041
|
pool_address: string;
|
|
2895
3042
|
pool_config_starting_time: any;
|
|
@@ -2901,6 +3048,7 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
2901
3048
|
token_address: string;
|
|
2902
3049
|
token_name: string;
|
|
2903
3050
|
token_symbol: string;
|
|
3051
|
+
token_decimals: number;
|
|
2904
3052
|
token_description?: string | null;
|
|
2905
3053
|
token_uri_data?: any | null;
|
|
2906
3054
|
token_image_public_url?: string | null;
|
|
@@ -2926,6 +3074,7 @@ export type GetAssetByAddressForIntegratorQuery = {
|
|
|
2926
3074
|
token_address: string;
|
|
2927
3075
|
token_name: string;
|
|
2928
3076
|
token_symbol: string;
|
|
3077
|
+
token_decimals: number;
|
|
2929
3078
|
token_description?: string | null;
|
|
2930
3079
|
token_uri_data?: any | null;
|
|
2931
3080
|
token_image_public_url?: string | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetAuctionPoolsByAddressAndIntegratorDocument = exports.ListAuctionPoolsForIntegratorDocument = exports.GetAssetByAddressForIntegratorDocument = exports.SearchAssetsForIntegratorDocument = exports.ListAllAssetsForIntegratorDocument = exports.ListGraduatedAssetsForIntegratorDocument = exports.ListIncomingAssetsForIntegratorDocument = exports.ListLiveAssetsForIntegratorDocument = exports.AssetFieldsFragmentDoc = exports.GraduationPoolFieldsFragmentDoc = exports.AuctionPoolFieldsFragmentDoc = exports.TokenFieldsFragmentDoc = exports.Raw_Events_Select_Column = exports.Order_By = exports.Cursor_Ordering = exports.Chain_Metadata_Select_Column = exports._Meta_Select_Column = exports.UserAsset_Select_Column = exports.Token_Select_Column = exports.GraduationPool_Select_Column = exports.GraduationPool_Swap_Select_Column = exports.AuctionPool_Select_Column = exports.AuctionPool_Swap_Select_Column = exports.Asset_Select_Column = void 0;
|
|
3
|
+
exports.GetAuctionPoolsByAddressAndIntegratorDocument = exports.ListAuctionPoolsForIntegratorDocument = exports.GetAssetByAddressForIntegratorDocument = exports.SearchAssetsForIntegratorDocument = exports.ListAllAssetsForIntegratorDocument = exports.ListGraduatedAssetsForIntegratorDocument = exports.ListIncomingAssetsForIntegratorDocument = exports.ListLiveAssetsForIntegratorDocument = exports.AssetFieldsFragmentDoc = exports.GraduationPoolFieldsFragmentDoc = exports.AuctionPoolFieldsFragmentDoc = exports.TokenFieldsFragmentDoc = exports.Raw_Events_Select_Column = exports.Order_By = exports.Cursor_Ordering = exports.Chain_Metadata_Select_Column = exports._Meta_Select_Column = exports.UserAsset_Select_Column = exports.Token_Select_Column = exports.NumeraireMarketData_Select_Column = exports.GraduationPool_Select_Column = exports.GraduationPool_Swap_Select_Column = exports.AuctionPool_Select_Column = exports.AuctionPool_Swap_Select_Column = exports.Asset_Select_Column = void 0;
|
|
4
4
|
exports.getSdk = getSdk;
|
|
5
5
|
const graphql_tag_1 = require("graphql-tag");
|
|
6
6
|
var Asset_Select_Column;
|
|
@@ -23,6 +23,7 @@ var Asset_Select_Column;
|
|
|
23
23
|
Asset_Select_Column["GraduationPoolId"] = "graduation_pool_id";
|
|
24
24
|
Asset_Select_Column["Id"] = "id";
|
|
25
25
|
Asset_Select_Column["IntegratorAddress"] = "integrator_address";
|
|
26
|
+
Asset_Select_Column["NumeraireMarketDataId"] = "numeraire_market_data_id";
|
|
26
27
|
})(Asset_Select_Column || (exports.Asset_Select_Column = Asset_Select_Column = {}));
|
|
27
28
|
var AuctionPool_Swap_Select_Column;
|
|
28
29
|
(function (AuctionPool_Swap_Select_Column) {
|
|
@@ -67,9 +68,11 @@ var AuctionPool_Select_Column;
|
|
|
67
68
|
AuctionPool_Select_Column["PoolCreationBlock"] = "pool_creation_block";
|
|
68
69
|
AuctionPool_Select_Column["PoolCreationTimestamp"] = "pool_creation_timestamp";
|
|
69
70
|
AuctionPool_Select_Column["PoolCurrentFdv"] = "pool_current_fdv";
|
|
71
|
+
AuctionPool_Select_Column["PoolCurrentFdvUsd"] = "pool_current_fdv_usd";
|
|
70
72
|
AuctionPool_Select_Column["PoolCurrentFeesAccrued"] = "pool_current_fees_accrued";
|
|
71
73
|
AuctionPool_Select_Column["PoolCurrentLiquidity"] = "pool_current_liquidity";
|
|
72
74
|
AuctionPool_Select_Column["PoolCurrentMarketCap"] = "pool_current_market_cap";
|
|
75
|
+
AuctionPool_Select_Column["PoolCurrentMarketCapUsd"] = "pool_current_market_cap_usd";
|
|
73
76
|
AuctionPool_Select_Column["PoolCurrentMinProgressPercentage"] = "pool_current_min_progress_percentage";
|
|
74
77
|
AuctionPool_Select_Column["PoolCurrentPrice"] = "pool_current_price";
|
|
75
78
|
AuctionPool_Select_Column["PoolCurrentSaleProgressPercentage"] = "pool_current_sale_progress_percentage";
|
|
@@ -117,8 +120,10 @@ var GraduationPool_Select_Column;
|
|
|
117
120
|
GraduationPool_Select_Column["PoolAddress"] = "pool_address";
|
|
118
121
|
GraduationPool_Select_Column["PoolConfigIsToken_0"] = "pool_config_is_token_0";
|
|
119
122
|
GraduationPool_Select_Column["PoolCurrentFdv"] = "pool_current_fdv";
|
|
123
|
+
GraduationPool_Select_Column["PoolCurrentFdvUsd"] = "pool_current_fdv_usd";
|
|
120
124
|
GraduationPool_Select_Column["PoolCurrentLiquidity"] = "pool_current_liquidity";
|
|
121
125
|
GraduationPool_Select_Column["PoolCurrentMarketCap"] = "pool_current_market_cap";
|
|
126
|
+
GraduationPool_Select_Column["PoolCurrentMarketCapUsd"] = "pool_current_market_cap_usd";
|
|
122
127
|
GraduationPool_Select_Column["PoolCurrentPrice"] = "pool_current_price";
|
|
123
128
|
GraduationPool_Select_Column["PoolCurrentReserveBaseToken"] = "pool_current_reserve_base_token";
|
|
124
129
|
GraduationPool_Select_Column["PoolCurrentReserveQuoteToken"] = "pool_current_reserve_quote_token";
|
|
@@ -131,6 +136,17 @@ var GraduationPool_Select_Column;
|
|
|
131
136
|
GraduationPool_Select_Column["PoolType"] = "pool_type";
|
|
132
137
|
GraduationPool_Select_Column["QuoteTokenId"] = "quote_token_id";
|
|
133
138
|
})(GraduationPool_Select_Column || (exports.GraduationPool_Select_Column = GraduationPool_Select_Column = {}));
|
|
139
|
+
var NumeraireMarketData_Select_Column;
|
|
140
|
+
(function (NumeraireMarketData_Select_Column) {
|
|
141
|
+
NumeraireMarketData_Select_Column["ChainId"] = "chain_id";
|
|
142
|
+
NumeraireMarketData_Select_Column["Id"] = "id";
|
|
143
|
+
NumeraireMarketData_Select_Column["LastRefreshedBlock"] = "last_refreshed_block";
|
|
144
|
+
NumeraireMarketData_Select_Column["NumeraireAddress"] = "numeraire_address";
|
|
145
|
+
NumeraireMarketData_Select_Column["NumeraireDailyPriceChangePercentage"] = "numeraire_daily_price_change_percentage";
|
|
146
|
+
NumeraireMarketData_Select_Column["NumeraireDailyVolumeUsd"] = "numeraire_daily_volume_usd";
|
|
147
|
+
NumeraireMarketData_Select_Column["NumeraireMarketCapUsd"] = "numeraire_market_cap_usd";
|
|
148
|
+
NumeraireMarketData_Select_Column["NumerairePriceUsd"] = "numeraire_price_usd";
|
|
149
|
+
})(NumeraireMarketData_Select_Column || (exports.NumeraireMarketData_Select_Column = NumeraireMarketData_Select_Column = {}));
|
|
134
150
|
var Token_Select_Column;
|
|
135
151
|
(function (Token_Select_Column) {
|
|
136
152
|
Token_Select_Column["ChainId"] = "chain_id";
|
|
@@ -223,6 +239,7 @@ exports.TokenFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
223
239
|
token_address
|
|
224
240
|
token_name
|
|
225
241
|
token_symbol
|
|
242
|
+
token_decimals
|
|
226
243
|
token_description
|
|
227
244
|
token_uri_data
|
|
228
245
|
token_image_public_url
|
|
@@ -248,6 +265,7 @@ exports.AuctionPoolFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
248
265
|
pool_current_sale_progress_percentage
|
|
249
266
|
pool_config_max_proceeds
|
|
250
267
|
pool_config_min_proceeds
|
|
268
|
+
pool_config_num_tokens_to_sell
|
|
251
269
|
pool_id
|
|
252
270
|
pool_address
|
|
253
271
|
pool_config_starting_time
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generated.js","sourceRoot":"","sources":["../../src/graphql/generated.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"generated.js","sourceRoot":"","sources":["../../src/graphql/generated.ts"],"names":[],"mappings":"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"}
|