@berachain/graphql 0.2.6-beta.1 → 0.3.1
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/dex/api.codegen.cjs +4 -4
- package/dist/dex/api.codegen.d.cts +130 -130
- package/dist/dex/api.codegen.d.ts +130 -130
- package/dist/dex/api.codegen.mjs +2 -2
- package/dist/pol/api.codegen.cjs +13 -6
- package/dist/pol/api.codegen.d.cts +163 -151
- package/dist/pol/api.codegen.d.ts +163 -151
- package/dist/pol/api.codegen.mjs +16 -9
- package/package.json +1 -1
- package/dist/bend/whisk.codegen.cjs +0 -687
- package/dist/bend/whisk.codegen.d.cts +0 -2851
- package/dist/bend/whisk.codegen.d.ts +0 -2851
- package/dist/bend/whisk.codegen.mjs +0 -687
|
@@ -179,7 +179,7 @@ type GqlGraphTraversalConfigInput = {
|
|
|
179
179
|
};
|
|
180
180
|
type GqlHistoricalTokenPrice = {
|
|
181
181
|
__typename?: 'GqlHistoricalTokenPrice';
|
|
182
|
-
address: Scalars['
|
|
182
|
+
address: Scalars['Bytes']['output'];
|
|
183
183
|
chain: GqlChain;
|
|
184
184
|
prices: Array<GqlHistoricalTokenPriceEntry>;
|
|
185
185
|
};
|
|
@@ -266,7 +266,7 @@ type GqlPoolAddRemoveEventV3 = GqlPoolEvent & {
|
|
|
266
266
|
/** The type of the event. */
|
|
267
267
|
type: GqlPoolEventType;
|
|
268
268
|
/** The user address associated with the event. */
|
|
269
|
-
userAddress: Scalars['
|
|
269
|
+
userAddress: Scalars['Bytes']['output'];
|
|
270
270
|
/** The value of the event in USD. */
|
|
271
271
|
valueUSD: Scalars['Float']['output'];
|
|
272
272
|
};
|
|
@@ -358,7 +358,7 @@ type GqlPoolAprItem = {
|
|
|
358
358
|
/** The id of the APR item */
|
|
359
359
|
id: Scalars['ID']['output'];
|
|
360
360
|
/** The reward token address, if the APR originates from token emissions */
|
|
361
|
-
rewardTokenAddress?: Maybe<Scalars['
|
|
361
|
+
rewardTokenAddress?: Maybe<Scalars['Bytes']['output']>;
|
|
362
362
|
/** The reward token symbol, if the APR originates from token emissions */
|
|
363
363
|
rewardTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
364
364
|
/**
|
|
@@ -483,7 +483,7 @@ type GqlPoolBatchSwap = {
|
|
|
483
483
|
tokenOut: Scalars['String']['output'];
|
|
484
484
|
tokenOutPrice: Scalars['Float']['output'];
|
|
485
485
|
tx: Scalars['String']['output'];
|
|
486
|
-
userAddress: Scalars['
|
|
486
|
+
userAddress: Scalars['Bytes']['output'];
|
|
487
487
|
valueUSD: Scalars['Float']['output'];
|
|
488
488
|
};
|
|
489
489
|
type GqlPoolBatchSwapPool = {
|
|
@@ -501,7 +501,7 @@ type GqlPoolBatchSwapSwap = {
|
|
|
501
501
|
tokenIn: Scalars['String']['output'];
|
|
502
502
|
tokenOut: Scalars['String']['output'];
|
|
503
503
|
tx: Scalars['String']['output'];
|
|
504
|
-
userAddress: Scalars['
|
|
504
|
+
userAddress: Scalars['Bytes']['output'];
|
|
505
505
|
valueUSD: Scalars['Float']['output'];
|
|
506
506
|
};
|
|
507
507
|
type GqlPoolComposableStable = GqlPoolBase & {
|
|
@@ -671,13 +671,13 @@ type GqlPoolEvent = {
|
|
|
671
671
|
/** The type of the event. */
|
|
672
672
|
type: GqlPoolEventType;
|
|
673
673
|
/** The user address associated with the event. */
|
|
674
|
-
userAddress: Scalars['
|
|
674
|
+
userAddress: Scalars['Bytes']['output'];
|
|
675
675
|
/** The USD value of this event. */
|
|
676
676
|
valueUSD: Scalars['Float']['output'];
|
|
677
677
|
};
|
|
678
678
|
type GqlPoolEventAmount = {
|
|
679
679
|
__typename?: 'GqlPoolEventAmount';
|
|
680
|
-
address: Scalars['
|
|
680
|
+
address: Scalars['Bytes']['output'];
|
|
681
681
|
amount: Scalars['String']['output'];
|
|
682
682
|
valueUSD: Scalars['Float']['output'];
|
|
683
683
|
};
|
|
@@ -696,7 +696,7 @@ type GqlPoolEventsFilter = {
|
|
|
696
696
|
poolIdIn?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
697
697
|
range?: InputMaybe<GqlPoolEventsDataRange>;
|
|
698
698
|
typeIn?: InputMaybe<Array<InputMaybe<GqlPoolEventType>>>;
|
|
699
|
-
userAddress?: InputMaybe<Scalars['
|
|
699
|
+
userAddress?: InputMaybe<Scalars['Bytes']['input']>;
|
|
700
700
|
/** USD value of the event */
|
|
701
701
|
valueUSD_gt?: InputMaybe<Scalars['Float']['input']>;
|
|
702
702
|
/** USD value of the event */
|
|
@@ -856,7 +856,7 @@ type GqlPoolInvestConfig = {
|
|
|
856
856
|
};
|
|
857
857
|
type GqlPoolInvestOption = {
|
|
858
858
|
__typename?: 'GqlPoolInvestOption';
|
|
859
|
-
poolTokenAddress: Scalars['
|
|
859
|
+
poolTokenAddress: Scalars['Bytes']['output'];
|
|
860
860
|
poolTokenIndex: Scalars['Int']['output'];
|
|
861
861
|
tokenOptions: Array<GqlPoolToken>;
|
|
862
862
|
};
|
|
@@ -874,7 +874,7 @@ type GqlPoolJoinExit = {
|
|
|
874
874
|
};
|
|
875
875
|
type GqlPoolJoinExitAmount = {
|
|
876
876
|
__typename?: 'GqlPoolJoinExitAmount';
|
|
877
|
-
address: Scalars['
|
|
877
|
+
address: Scalars['Bytes']['output'];
|
|
878
878
|
amount: Scalars['String']['output'];
|
|
879
879
|
};
|
|
880
880
|
type GqlPoolJoinExitFilter = {
|
|
@@ -1097,7 +1097,7 @@ type GqlPoolStable = GqlPoolBase & {
|
|
|
1097
1097
|
};
|
|
1098
1098
|
type GqlPoolStableComposablePoolData = {
|
|
1099
1099
|
__typename?: 'GqlPoolStableComposablePoolData';
|
|
1100
|
-
address: Scalars['
|
|
1100
|
+
address: Scalars['Bytes']['output'];
|
|
1101
1101
|
balance: Scalars['String']['output'];
|
|
1102
1102
|
id: Scalars['ID']['output'];
|
|
1103
1103
|
symbol: Scalars['String']['output'];
|
|
@@ -1115,7 +1115,7 @@ type GqlPoolSwap = {
|
|
|
1115
1115
|
tokenIn: Scalars['String']['output'];
|
|
1116
1116
|
tokenOut: Scalars['String']['output'];
|
|
1117
1117
|
tx: Scalars['String']['output'];
|
|
1118
|
-
userAddress: Scalars['
|
|
1118
|
+
userAddress: Scalars['Bytes']['output'];
|
|
1119
1119
|
valueUSD: Scalars['Float']['output'];
|
|
1120
1120
|
};
|
|
1121
1121
|
/** Represents an event that occurs when a swap is made in a pool using the CowAmm protocol. */
|
|
@@ -1150,7 +1150,7 @@ type GqlPoolSwapEventCowAmm = GqlPoolEvent & {
|
|
|
1150
1150
|
/** The type of the event. */
|
|
1151
1151
|
type: GqlPoolEventType;
|
|
1152
1152
|
/** The user address associated with the event. */
|
|
1153
|
-
userAddress: Scalars['
|
|
1153
|
+
userAddress: Scalars['Bytes']['output'];
|
|
1154
1154
|
/** The value of the event in USD. */
|
|
1155
1155
|
valueUSD: Scalars['Float']['output'];
|
|
1156
1156
|
};
|
|
@@ -1184,7 +1184,7 @@ type GqlPoolSwapEventV3 = GqlPoolEvent & {
|
|
|
1184
1184
|
/** The type of the event. */
|
|
1185
1185
|
type: GqlPoolEventType;
|
|
1186
1186
|
/** The user address associated with the event. */
|
|
1187
|
-
userAddress: Scalars['
|
|
1187
|
+
userAddress: Scalars['Bytes']['output'];
|
|
1188
1188
|
/** The value of the event in USD. */
|
|
1189
1189
|
valueUSD: Scalars['Float']['output'];
|
|
1190
1190
|
};
|
|
@@ -1200,7 +1200,7 @@ type GqlPoolTimePeriod = {
|
|
|
1200
1200
|
};
|
|
1201
1201
|
type GqlPoolToken = GqlPoolTokenBase & {
|
|
1202
1202
|
__typename?: 'GqlPoolToken';
|
|
1203
|
-
address: Scalars['
|
|
1203
|
+
address: Scalars['Bytes']['output'];
|
|
1204
1204
|
balance: Scalars['BigDecimal']['output'];
|
|
1205
1205
|
decimals: Scalars['Int']['output'];
|
|
1206
1206
|
id: Scalars['ID']['output'];
|
|
@@ -1213,7 +1213,7 @@ type GqlPoolToken = GqlPoolTokenBase & {
|
|
|
1213
1213
|
weight?: Maybe<Scalars['BigDecimal']['output']>;
|
|
1214
1214
|
};
|
|
1215
1215
|
type GqlPoolTokenBase = {
|
|
1216
|
-
address: Scalars['
|
|
1216
|
+
address: Scalars['Bytes']['output'];
|
|
1217
1217
|
balance: Scalars['BigDecimal']['output'];
|
|
1218
1218
|
decimals: Scalars['Int']['output'];
|
|
1219
1219
|
id: Scalars['ID']['output'];
|
|
@@ -1227,7 +1227,7 @@ type GqlPoolTokenBase = {
|
|
|
1227
1227
|
};
|
|
1228
1228
|
type GqlPoolTokenComposableStable = GqlPoolTokenBase & {
|
|
1229
1229
|
__typename?: 'GqlPoolTokenComposableStable';
|
|
1230
|
-
address: Scalars['
|
|
1230
|
+
address: Scalars['Bytes']['output'];
|
|
1231
1231
|
balance: Scalars['BigDecimal']['output'];
|
|
1232
1232
|
decimals: Scalars['Int']['output'];
|
|
1233
1233
|
id: Scalars['ID']['output'];
|
|
@@ -1248,7 +1248,7 @@ type GqlPoolTokenComposableStableNestedUnion = GqlPoolToken;
|
|
|
1248
1248
|
type GqlPoolTokenDetail = {
|
|
1249
1249
|
__typename?: 'GqlPoolTokenDetail';
|
|
1250
1250
|
/** Address of the pool token. */
|
|
1251
|
-
address: Scalars['
|
|
1251
|
+
address: Scalars['Bytes']['output'];
|
|
1252
1252
|
/** Balance of the pool token inside the pool. */
|
|
1253
1253
|
balance: Scalars['BigDecimal']['output'];
|
|
1254
1254
|
/** USD Balance of the pool token. */
|
|
@@ -1284,7 +1284,7 @@ type GqlPoolTokenDetail = {
|
|
|
1284
1284
|
};
|
|
1285
1285
|
type GqlPoolTokenDisplay = {
|
|
1286
1286
|
__typename?: 'GqlPoolTokenDisplay';
|
|
1287
|
-
address: Scalars['
|
|
1287
|
+
address: Scalars['Bytes']['output'];
|
|
1288
1288
|
id: Scalars['ID']['output'];
|
|
1289
1289
|
name: Scalars['String']['output'];
|
|
1290
1290
|
nestedTokens?: Maybe<Array<GqlPoolTokenDisplay>>;
|
|
@@ -1293,7 +1293,7 @@ type GqlPoolTokenDisplay = {
|
|
|
1293
1293
|
};
|
|
1294
1294
|
type GqlPoolTokenExpanded = {
|
|
1295
1295
|
__typename?: 'GqlPoolTokenExpanded';
|
|
1296
|
-
address: Scalars['
|
|
1296
|
+
address: Scalars['Bytes']['output'];
|
|
1297
1297
|
decimals: Scalars['Int']['output'];
|
|
1298
1298
|
id: Scalars['ID']['output'];
|
|
1299
1299
|
isErc4626: Scalars['Boolean']['output'];
|
|
@@ -1342,7 +1342,7 @@ type GqlPoolUserBalance = {
|
|
|
1342
1342
|
type GqlPoolUserSwapVolume = {
|
|
1343
1343
|
__typename?: 'GqlPoolUserSwapVolume';
|
|
1344
1344
|
swapVolumeUSD: Scalars['BigDecimal']['output'];
|
|
1345
|
-
userAddress: Scalars['
|
|
1345
|
+
userAddress: Scalars['Bytes']['output'];
|
|
1346
1346
|
};
|
|
1347
1347
|
type GqlPoolWeighted = GqlPoolBase & {
|
|
1348
1348
|
__typename?: 'GqlPoolWeighted';
|
|
@@ -1387,7 +1387,7 @@ type GqlPoolWithdrawConfig = {
|
|
|
1387
1387
|
};
|
|
1388
1388
|
type GqlPoolWithdrawOption = {
|
|
1389
1389
|
__typename?: 'GqlPoolWithdrawOption';
|
|
1390
|
-
poolTokenAddress: Scalars['
|
|
1390
|
+
poolTokenAddress: Scalars['Bytes']['output'];
|
|
1391
1391
|
poolTokenIndex: Scalars['Int']['output'];
|
|
1392
1392
|
tokenOptions: Array<GqlPoolToken>;
|
|
1393
1393
|
};
|
|
@@ -1403,7 +1403,7 @@ type GqlPriceImpact = {
|
|
|
1403
1403
|
type GqlPriceRateProviderData = {
|
|
1404
1404
|
__typename?: 'GqlPriceRateProviderData';
|
|
1405
1405
|
/** The address of the price rate provider */
|
|
1406
|
-
address: Scalars['
|
|
1406
|
+
address: Scalars['Bytes']['output'];
|
|
1407
1407
|
/** The factory used to create the price rate provider, if applicable */
|
|
1408
1408
|
factory?: Maybe<Scalars['String']['output']>;
|
|
1409
1409
|
/** The name of the price rate provider */
|
|
@@ -1467,9 +1467,9 @@ type GqlRewardVault = {
|
|
|
1467
1467
|
isVaultWhitelisted: Scalars['Boolean']['output'];
|
|
1468
1468
|
metadata?: Maybe<GqlRewardVaultMetadata>;
|
|
1469
1469
|
stakingToken: GqlToken;
|
|
1470
|
-
stakingTokenAddress: Scalars['
|
|
1470
|
+
stakingTokenAddress: Scalars['Bytes']['output'];
|
|
1471
1471
|
stakingTokenAmount: Scalars['String']['output'];
|
|
1472
|
-
vaultAddress: Scalars['
|
|
1472
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1473
1473
|
whitelistedIncentives: Array<GqlRewardVaultIncentive>;
|
|
1474
1474
|
whitelistedTokens: Array<GqlRewardVaultWhitelistedToken>;
|
|
1475
1475
|
};
|
|
@@ -1489,7 +1489,7 @@ type GqlRewardVaultDynamicData = {
|
|
|
1489
1489
|
/** @deprecated Use projectedApr instead */
|
|
1490
1490
|
projectedApy?: Maybe<Scalars['Float']['output']>;
|
|
1491
1491
|
tvl?: Maybe<Scalars['Float']['output']>;
|
|
1492
|
-
vaultAddress: Scalars['
|
|
1492
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1493
1493
|
};
|
|
1494
1494
|
type GqlRewardVaultFilter = {
|
|
1495
1495
|
categoriesIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -1515,8 +1515,8 @@ type GqlRewardVaultIncentive = {
|
|
|
1515
1515
|
remainingAmount: Scalars['String']['output'];
|
|
1516
1516
|
remainingAmountUsd: Scalars['String']['output'];
|
|
1517
1517
|
token: GqlToken;
|
|
1518
|
-
tokenAddress: Scalars['
|
|
1519
|
-
vaultAddress: Scalars['
|
|
1518
|
+
tokenAddress: Scalars['Bytes']['output'];
|
|
1519
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1520
1520
|
};
|
|
1521
1521
|
declare enum GqlRewardVaultIncentiveOrderBy {
|
|
1522
1522
|
AmountRemaining = "amountRemaining",
|
|
@@ -1538,7 +1538,7 @@ type GqlRewardVaultMetadata = {
|
|
|
1538
1538
|
protocolIcon: Scalars['String']['output'];
|
|
1539
1539
|
protocolName: Scalars['String']['output'];
|
|
1540
1540
|
url: Scalars['String']['output'];
|
|
1541
|
-
vaultAddress: Scalars['
|
|
1541
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1542
1542
|
};
|
|
1543
1543
|
declare enum GqlRewardVaultOrderBy {
|
|
1544
1544
|
ActiveIncentivesRateUsd = "activeIncentivesRateUsd",
|
|
@@ -1563,7 +1563,7 @@ type GqlRewardVaultSnapshot = {
|
|
|
1563
1563
|
id: Scalars['ID']['output'];
|
|
1564
1564
|
timestamp: Scalars['Int']['output'];
|
|
1565
1565
|
tvl: Scalars['String']['output'];
|
|
1566
|
-
vaultAddress: Scalars['
|
|
1566
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1567
1567
|
};
|
|
1568
1568
|
declare enum GqlRewardVaultSnapshotDataRange {
|
|
1569
1569
|
NinetyDays = "NINETY_DAYS",
|
|
@@ -1579,8 +1579,8 @@ type GqlRewardVaultWhitelistedToken = {
|
|
|
1579
1579
|
__typename?: 'GqlRewardVaultWhitelistedToken';
|
|
1580
1580
|
chain: GqlChain;
|
|
1581
1581
|
token: GqlToken;
|
|
1582
|
-
tokenAddress: Scalars['
|
|
1583
|
-
vaultAddress: Scalars['
|
|
1582
|
+
tokenAddress: Scalars['Bytes']['output'];
|
|
1583
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1584
1584
|
whitelisted: Scalars['Boolean']['output'];
|
|
1585
1585
|
};
|
|
1586
1586
|
type GqlSWberaVaultMetadata = {
|
|
@@ -1599,7 +1599,7 @@ type GqlSWberaVaultSnapshot = {
|
|
|
1599
1599
|
id: Scalars['ID']['output'];
|
|
1600
1600
|
timestamp: Scalars['Int']['output'];
|
|
1601
1601
|
totalAssets: Scalars['String']['output'];
|
|
1602
|
-
vaultAddress: Scalars['
|
|
1602
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1603
1603
|
};
|
|
1604
1604
|
type GqlSorCallData = {
|
|
1605
1605
|
__typename?: 'GqlSorCallData';
|
|
@@ -1794,7 +1794,7 @@ type GqlSwapCallDataInput = {
|
|
|
1794
1794
|
type GqlToken = {
|
|
1795
1795
|
__typename?: 'GqlToken';
|
|
1796
1796
|
/** The address of the token */
|
|
1797
|
-
address: Scalars['
|
|
1797
|
+
address: Scalars['Bytes']['output'];
|
|
1798
1798
|
/** The chain of the token */
|
|
1799
1799
|
chain: GqlChain;
|
|
1800
1800
|
/** The chain ID of the token */
|
|
@@ -1831,7 +1831,7 @@ type GqlToken = {
|
|
|
1831
1831
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
1832
1832
|
};
|
|
1833
1833
|
type GqlTokenAmountHumanReadable = {
|
|
1834
|
-
address: Scalars['
|
|
1834
|
+
address: Scalars['Bytes']['input'];
|
|
1835
1835
|
amount: Scalars['AmountHumanReadable']['input'];
|
|
1836
1836
|
};
|
|
1837
1837
|
type GqlTokenCandlestickChartDataItem = {
|
|
@@ -1856,7 +1856,7 @@ type GqlTokenData = {
|
|
|
1856
1856
|
discordUrl?: Maybe<Scalars['String']['output']>;
|
|
1857
1857
|
id: Scalars['ID']['output'];
|
|
1858
1858
|
telegramUrl?: Maybe<Scalars['String']['output']>;
|
|
1859
|
-
tokenAddress: Scalars['
|
|
1859
|
+
tokenAddress: Scalars['Bytes']['output'];
|
|
1860
1860
|
twitterUsername?: Maybe<Scalars['String']['output']>;
|
|
1861
1861
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
1862
1862
|
};
|
|
@@ -1890,7 +1890,7 @@ type GqlTokenDynamicData = {
|
|
|
1890
1890
|
/** The percentage price change in the last 30 days */
|
|
1891
1891
|
priceChangePercent30d?: Maybe<Scalars['Float']['output']>;
|
|
1892
1892
|
/** The address of the token */
|
|
1893
|
-
tokenAddress: Scalars['
|
|
1893
|
+
tokenAddress: Scalars['Bytes']['output'];
|
|
1894
1894
|
/** The timestamp when the data was last updated */
|
|
1895
1895
|
updatedAt: Scalars['String']['output'];
|
|
1896
1896
|
};
|
|
@@ -1906,7 +1906,7 @@ type GqlTokenMutationResult = {
|
|
|
1906
1906
|
};
|
|
1907
1907
|
type GqlTokenPrice = {
|
|
1908
1908
|
__typename?: 'GqlTokenPrice';
|
|
1909
|
-
address: Scalars['
|
|
1909
|
+
address: Scalars['Bytes']['output'];
|
|
1910
1910
|
chain: GqlChain;
|
|
1911
1911
|
price: Scalars['Float']['output'];
|
|
1912
1912
|
updatedAt: Scalars['Int']['output'];
|
|
@@ -1929,13 +1929,13 @@ type GqlUserBgtBalance = {
|
|
|
1929
1929
|
chain: GqlChain;
|
|
1930
1930
|
totalBGTBalance: Scalars['String']['output'];
|
|
1931
1931
|
unboostedBGTBalance: Scalars['String']['output'];
|
|
1932
|
-
userAddress: Scalars['
|
|
1932
|
+
userAddress: Scalars['Bytes']['output'];
|
|
1933
1933
|
};
|
|
1934
1934
|
type GqlUserPoolBalance = {
|
|
1935
1935
|
__typename?: 'GqlUserPoolBalance';
|
|
1936
1936
|
chain: GqlChain;
|
|
1937
1937
|
poolId: Scalars['String']['output'];
|
|
1938
|
-
tokenAddress: Scalars['
|
|
1938
|
+
tokenAddress: Scalars['Bytes']['output'];
|
|
1939
1939
|
tokenPrice?: Maybe<Scalars['Float']['output']>;
|
|
1940
1940
|
totalBalance: Scalars['AmountHumanReadable']['output'];
|
|
1941
1941
|
user: Scalars['String']['output'];
|
|
@@ -1950,17 +1950,17 @@ type GqlUserVaultDeposit = {
|
|
|
1950
1950
|
__typename?: 'GqlUserVaultDeposit';
|
|
1951
1951
|
amount: Scalars['String']['output'];
|
|
1952
1952
|
chain: GqlChain;
|
|
1953
|
-
userAddress: Scalars['
|
|
1953
|
+
userAddress: Scalars['Bytes']['output'];
|
|
1954
1954
|
vault?: Maybe<GqlRewardVault>;
|
|
1955
|
-
vaultAddress: Scalars['
|
|
1955
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1956
1956
|
};
|
|
1957
1957
|
type GqlUserVaultDepositMinimal = {
|
|
1958
1958
|
__typename?: 'GqlUserVaultDepositMinimal';
|
|
1959
1959
|
amount: Scalars['String']['output'];
|
|
1960
1960
|
chain: GqlChain;
|
|
1961
1961
|
percentage: Scalars['String']['output'];
|
|
1962
|
-
userAddress: Scalars['
|
|
1963
|
-
vaultAddress: Scalars['
|
|
1962
|
+
userAddress: Scalars['Bytes']['output'];
|
|
1963
|
+
vaultAddress: Scalars['Bytes']['output'];
|
|
1964
1964
|
};
|
|
1965
1965
|
declare enum GqlUserVaultDepositOrderBy {
|
|
1966
1966
|
Amount = "amount"
|
|
@@ -1973,14 +1973,14 @@ type GqlValidator = {
|
|
|
1973
1973
|
__typename?: 'GqlValidator';
|
|
1974
1974
|
chain: GqlChain;
|
|
1975
1975
|
dynamicData?: Maybe<GqlValidatorDynamicData>;
|
|
1976
|
-
id: Scalars['
|
|
1976
|
+
id: Scalars['Bytes']['output'];
|
|
1977
1977
|
lastBlockUptime?: Maybe<GqlValidatorBlockUptime>;
|
|
1978
1978
|
metadata?: Maybe<GqlValidatorMetadata>;
|
|
1979
|
-
operator?: Maybe<Scalars['
|
|
1980
|
-
pubkey: Scalars['
|
|
1979
|
+
operator?: Maybe<Scalars['Bytes']['output']>;
|
|
1980
|
+
pubkey: Scalars['Bytes']['output'];
|
|
1981
1981
|
rewardAllocationStartBlock?: Maybe<Scalars['Int']['output']>;
|
|
1982
1982
|
rewardAllocationWeights: Array<GqlValidatorRewardAllocationWeight>;
|
|
1983
|
-
rewardAllocator?: Maybe<Scalars['
|
|
1983
|
+
rewardAllocator?: Maybe<Scalars['Bytes']['output']>;
|
|
1984
1984
|
valStats?: Maybe<GqlValidatorStats>;
|
|
1985
1985
|
};
|
|
1986
1986
|
type GqlValidatorBlockUptime = {
|
|
@@ -1992,7 +1992,7 @@ type GqlValidatorBlockUptime = {
|
|
|
1992
1992
|
isProposer: Scalars['Boolean']['output'];
|
|
1993
1993
|
isSigner: Scalars['Boolean']['output'];
|
|
1994
1994
|
status: GqlValidatorBlockUptimeStatus;
|
|
1995
|
-
validatorId: Scalars['
|
|
1995
|
+
validatorId: Scalars['Bytes']['output'];
|
|
1996
1996
|
};
|
|
1997
1997
|
declare enum GqlValidatorBlockUptimeStatus {
|
|
1998
1998
|
Inactive = "INACTIVE",
|
|
@@ -2008,9 +2008,9 @@ type GqlValidatorBoost = {
|
|
|
2008
2008
|
latestBlockTime: Scalars['Int']['output'];
|
|
2009
2009
|
queuedBoostAmount: Scalars['String']['output'];
|
|
2010
2010
|
queuedDropBoostAmount: Scalars['String']['output'];
|
|
2011
|
-
userAddress: Scalars['
|
|
2011
|
+
userAddress: Scalars['Bytes']['output'];
|
|
2012
2012
|
validator?: Maybe<GqlValidator>;
|
|
2013
|
-
validatorId: Scalars['
|
|
2013
|
+
validatorId: Scalars['Bytes']['output'];
|
|
2014
2014
|
};
|
|
2015
2015
|
type GqlValidatorBoostDelay = {
|
|
2016
2016
|
__typename?: 'GqlValidatorBoostDelay';
|
|
@@ -2039,7 +2039,7 @@ type GqlValidatorCommissionHistory = {
|
|
|
2039
2039
|
blockNumber: Scalars['Int']['output'];
|
|
2040
2040
|
commissionOnIncentives: Scalars['Int']['output'];
|
|
2041
2041
|
timestamp: Scalars['Int']['output'];
|
|
2042
|
-
validatorId: Scalars['
|
|
2042
|
+
validatorId: Scalars['Bytes']['output'];
|
|
2043
2043
|
};
|
|
2044
2044
|
type GqlValidatorDynamicData = {
|
|
2045
2045
|
__typename?: 'GqlValidatorDynamicData';
|
|
@@ -2062,7 +2062,7 @@ type GqlValidatorDynamicData = {
|
|
|
2062
2062
|
usersActiveBoostCount: Scalars['Int']['output'];
|
|
2063
2063
|
usersQueuedBoostCount: Scalars['Int']['output'];
|
|
2064
2064
|
validator?: Maybe<GqlValidator>;
|
|
2065
|
-
validatorId: Scalars['
|
|
2065
|
+
validatorId: Scalars['Bytes']['output'];
|
|
2066
2066
|
};
|
|
2067
2067
|
type GqlValidatorFilter = {
|
|
2068
2068
|
OR?: InputMaybe<Array<GqlValidatorFilter>>;
|
|
@@ -2086,7 +2086,7 @@ type GqlValidatorMetadata = {
|
|
|
2086
2086
|
logoURI: Scalars['String']['output'];
|
|
2087
2087
|
name: Scalars['String']['output'];
|
|
2088
2088
|
twitter: Scalars['String']['output'];
|
|
2089
|
-
validatorId: Scalars['
|
|
2089
|
+
validatorId: Scalars['Bytes']['output'];
|
|
2090
2090
|
website: Scalars['String']['output'];
|
|
2091
2091
|
};
|
|
2092
2092
|
declare enum GqlValidatorOrderBy {
|
|
@@ -2114,11 +2114,11 @@ type GqlValidatorRewardAllocationWeight = {
|
|
|
2114
2114
|
__typename?: 'GqlValidatorRewardAllocationWeight';
|
|
2115
2115
|
chain: GqlChain;
|
|
2116
2116
|
percentageNumerator: Scalars['Int']['output'];
|
|
2117
|
-
receiver: Scalars['
|
|
2117
|
+
receiver: Scalars['Bytes']['output'];
|
|
2118
2118
|
receivingVault?: Maybe<GqlRewardVault>;
|
|
2119
2119
|
startBlock: Scalars['Int']['output'];
|
|
2120
2120
|
validator?: Maybe<GqlValidator>;
|
|
2121
|
-
validatorId: Scalars['
|
|
2121
|
+
validatorId: Scalars['Bytes']['output'];
|
|
2122
2122
|
};
|
|
2123
2123
|
type GqlValidatorStats = {
|
|
2124
2124
|
__typename?: 'GqlValidatorStats';
|
|
@@ -2140,7 +2140,7 @@ declare enum GqlVaultSnapshotDataRange {
|
|
|
2140
2140
|
/** Hook data */
|
|
2141
2141
|
type Hook = {
|
|
2142
2142
|
__typename?: 'Hook';
|
|
2143
|
-
address: Scalars['
|
|
2143
|
+
address: Scalars['Bytes']['output'];
|
|
2144
2144
|
chain: GqlChain;
|
|
2145
2145
|
/** Data points changing over time */
|
|
2146
2146
|
dynamicData?: Maybe<HookData>;
|
|
@@ -2671,7 +2671,7 @@ type QueryUserGetTopBgtBalanceArgs = {
|
|
|
2671
2671
|
};
|
|
2672
2672
|
type Token = {
|
|
2673
2673
|
__typename?: 'Token';
|
|
2674
|
-
address: Scalars['
|
|
2674
|
+
address: Scalars['Bytes']['output'];
|
|
2675
2675
|
decimals: Scalars['Int']['output'];
|
|
2676
2676
|
};
|
|
2677
2677
|
type ApiVaultIncentiveFragment = {
|
|
@@ -2681,10 +2681,10 @@ type ApiVaultIncentiveFragment = {
|
|
|
2681
2681
|
remainingAmountUsd: string;
|
|
2682
2682
|
incentiveRate: string;
|
|
2683
2683
|
incentiveRateUsd: string;
|
|
2684
|
-
tokenAddress: string
|
|
2684
|
+
tokenAddress: `0x${string}`;
|
|
2685
2685
|
token: {
|
|
2686
2686
|
__typename?: 'GqlToken';
|
|
2687
|
-
address: string
|
|
2687
|
+
address: `0x${string}`;
|
|
2688
2688
|
name: string;
|
|
2689
2689
|
symbol: string;
|
|
2690
2690
|
decimals: number;
|
|
@@ -2692,11 +2692,11 @@ type ApiVaultIncentiveFragment = {
|
|
|
2692
2692
|
};
|
|
2693
2693
|
type ApiVaultFragment = {
|
|
2694
2694
|
__typename?: 'GqlRewardVault';
|
|
2695
|
-
vaultAddress: string
|
|
2695
|
+
vaultAddress: `0x${string}`;
|
|
2696
2696
|
isVaultWhitelisted: boolean;
|
|
2697
2697
|
stakingTokenAmount: string;
|
|
2698
|
-
id: string
|
|
2699
|
-
address: string
|
|
2698
|
+
id: `0x${string}`;
|
|
2699
|
+
address: `0x${string}`;
|
|
2700
2700
|
dynamicData?: {
|
|
2701
2701
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
2702
2702
|
allTimeReceivedBGTAmount: string;
|
|
@@ -2709,7 +2709,7 @@ type ApiVaultFragment = {
|
|
|
2709
2709
|
} | null;
|
|
2710
2710
|
stakingToken: {
|
|
2711
2711
|
__typename?: 'GqlToken';
|
|
2712
|
-
address: string
|
|
2712
|
+
address: `0x${string}`;
|
|
2713
2713
|
name: string;
|
|
2714
2714
|
symbol: string;
|
|
2715
2715
|
decimals: number;
|
|
@@ -2732,10 +2732,10 @@ type ApiVaultFragment = {
|
|
|
2732
2732
|
remainingAmountUsd: string;
|
|
2733
2733
|
incentiveRate: string;
|
|
2734
2734
|
incentiveRateUsd: string;
|
|
2735
|
-
tokenAddress: string
|
|
2735
|
+
tokenAddress: `0x${string}`;
|
|
2736
2736
|
token: {
|
|
2737
2737
|
__typename?: 'GqlToken';
|
|
2738
|
-
address: string
|
|
2738
|
+
address: `0x${string}`;
|
|
2739
2739
|
name: string;
|
|
2740
2740
|
symbol: string;
|
|
2741
2741
|
decimals: number;
|
|
@@ -2761,11 +2761,11 @@ type GetVaultsQuery = {
|
|
|
2761
2761
|
};
|
|
2762
2762
|
vaults: Array<{
|
|
2763
2763
|
__typename?: 'GqlRewardVault';
|
|
2764
|
-
vaultAddress: string
|
|
2764
|
+
vaultAddress: `0x${string}`;
|
|
2765
2765
|
isVaultWhitelisted: boolean;
|
|
2766
2766
|
stakingTokenAmount: string;
|
|
2767
|
-
id: string
|
|
2768
|
-
address: string
|
|
2767
|
+
id: `0x${string}`;
|
|
2768
|
+
address: `0x${string}`;
|
|
2769
2769
|
dynamicData?: {
|
|
2770
2770
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
2771
2771
|
allTimeReceivedBGTAmount: string;
|
|
@@ -2778,7 +2778,7 @@ type GetVaultsQuery = {
|
|
|
2778
2778
|
} | null;
|
|
2779
2779
|
stakingToken: {
|
|
2780
2780
|
__typename?: 'GqlToken';
|
|
2781
|
-
address: string
|
|
2781
|
+
address: `0x${string}`;
|
|
2782
2782
|
name: string;
|
|
2783
2783
|
symbol: string;
|
|
2784
2784
|
decimals: number;
|
|
@@ -2801,10 +2801,10 @@ type GetVaultsQuery = {
|
|
|
2801
2801
|
remainingAmountUsd: string;
|
|
2802
2802
|
incentiveRate: string;
|
|
2803
2803
|
incentiveRateUsd: string;
|
|
2804
|
-
tokenAddress: string
|
|
2804
|
+
tokenAddress: `0x${string}`;
|
|
2805
2805
|
token: {
|
|
2806
2806
|
__typename?: 'GqlToken';
|
|
2807
|
-
address: string
|
|
2807
|
+
address: `0x${string}`;
|
|
2808
2808
|
name: string;
|
|
2809
2809
|
symbol: string;
|
|
2810
2810
|
decimals: number;
|
|
@@ -2815,10 +2815,10 @@ type GetVaultsQuery = {
|
|
|
2815
2815
|
};
|
|
2816
2816
|
type ApiValidatorMinimalFragment = {
|
|
2817
2817
|
__typename?: 'GqlValidator';
|
|
2818
|
-
id: string
|
|
2819
|
-
pubkey: string
|
|
2820
|
-
operator?: string | null;
|
|
2821
|
-
rewardAllocator?: string | null;
|
|
2818
|
+
id: `0x${string}`;
|
|
2819
|
+
pubkey: `0x${string}`;
|
|
2820
|
+
operator?: `0x${string}` | null;
|
|
2821
|
+
rewardAllocator?: `0x${string}` | null;
|
|
2822
2822
|
metadata?: {
|
|
2823
2823
|
__typename?: 'GqlValidatorMetadata';
|
|
2824
2824
|
name: string;
|
|
@@ -2841,23 +2841,23 @@ type ApiValidatorMinimalFragment = {
|
|
|
2841
2841
|
};
|
|
2842
2842
|
type ApiValidatorFragment = {
|
|
2843
2843
|
__typename?: 'GqlValidator';
|
|
2844
|
-
operator?: string | null;
|
|
2845
|
-
id: string
|
|
2846
|
-
pubkey: string
|
|
2847
|
-
rewardAllocator?: string | null;
|
|
2844
|
+
operator?: `0x${string}` | null;
|
|
2845
|
+
id: `0x${string}`;
|
|
2846
|
+
pubkey: `0x${string}`;
|
|
2847
|
+
rewardAllocator?: `0x${string}` | null;
|
|
2848
2848
|
rewardAllocationWeights: Array<{
|
|
2849
2849
|
__typename?: 'GqlValidatorRewardAllocationWeight';
|
|
2850
2850
|
percentageNumerator: number;
|
|
2851
|
-
validatorId: string
|
|
2852
|
-
receiver: string
|
|
2851
|
+
validatorId: `0x${string}`;
|
|
2852
|
+
receiver: `0x${string}`;
|
|
2853
2853
|
startBlock: number;
|
|
2854
2854
|
receivingVault?: {
|
|
2855
2855
|
__typename?: 'GqlRewardVault';
|
|
2856
|
-
vaultAddress: string
|
|
2856
|
+
vaultAddress: `0x${string}`;
|
|
2857
2857
|
isVaultWhitelisted: boolean;
|
|
2858
2858
|
stakingTokenAmount: string;
|
|
2859
|
-
id: string
|
|
2860
|
-
address: string
|
|
2859
|
+
id: `0x${string}`;
|
|
2860
|
+
address: `0x${string}`;
|
|
2861
2861
|
dynamicData?: {
|
|
2862
2862
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
2863
2863
|
allTimeReceivedBGTAmount: string;
|
|
@@ -2870,7 +2870,7 @@ type ApiValidatorFragment = {
|
|
|
2870
2870
|
} | null;
|
|
2871
2871
|
stakingToken: {
|
|
2872
2872
|
__typename?: 'GqlToken';
|
|
2873
|
-
address: string
|
|
2873
|
+
address: `0x${string}`;
|
|
2874
2874
|
name: string;
|
|
2875
2875
|
symbol: string;
|
|
2876
2876
|
decimals: number;
|
|
@@ -2893,10 +2893,10 @@ type ApiValidatorFragment = {
|
|
|
2893
2893
|
remainingAmountUsd: string;
|
|
2894
2894
|
incentiveRate: string;
|
|
2895
2895
|
incentiveRateUsd: string;
|
|
2896
|
-
tokenAddress: string
|
|
2896
|
+
tokenAddress: `0x${string}`;
|
|
2897
2897
|
token: {
|
|
2898
2898
|
__typename?: 'GqlToken';
|
|
2899
|
-
address: string
|
|
2899
|
+
address: `0x${string}`;
|
|
2900
2900
|
name: string;
|
|
2901
2901
|
symbol: string;
|
|
2902
2902
|
decimals: number;
|
|
@@ -2937,16 +2937,16 @@ type ApiValidatorFragment = {
|
|
|
2937
2937
|
type ApiRewardAllocationWeightFragment = {
|
|
2938
2938
|
__typename?: 'GqlValidatorRewardAllocationWeight';
|
|
2939
2939
|
percentageNumerator: number;
|
|
2940
|
-
validatorId: string
|
|
2941
|
-
receiver: string
|
|
2940
|
+
validatorId: `0x${string}`;
|
|
2941
|
+
receiver: `0x${string}`;
|
|
2942
2942
|
startBlock: number;
|
|
2943
2943
|
receivingVault?: {
|
|
2944
2944
|
__typename?: 'GqlRewardVault';
|
|
2945
|
-
vaultAddress: string
|
|
2945
|
+
vaultAddress: `0x${string}`;
|
|
2946
2946
|
isVaultWhitelisted: boolean;
|
|
2947
2947
|
stakingTokenAmount: string;
|
|
2948
|
-
id: string
|
|
2949
|
-
address: string
|
|
2948
|
+
id: `0x${string}`;
|
|
2949
|
+
address: `0x${string}`;
|
|
2950
2950
|
dynamicData?: {
|
|
2951
2951
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
2952
2952
|
allTimeReceivedBGTAmount: string;
|
|
@@ -2959,7 +2959,7 @@ type ApiRewardAllocationWeightFragment = {
|
|
|
2959
2959
|
} | null;
|
|
2960
2960
|
stakingToken: {
|
|
2961
2961
|
__typename?: 'GqlToken';
|
|
2962
|
-
address: string
|
|
2962
|
+
address: `0x${string}`;
|
|
2963
2963
|
name: string;
|
|
2964
2964
|
symbol: string;
|
|
2965
2965
|
decimals: number;
|
|
@@ -2982,10 +2982,10 @@ type ApiRewardAllocationWeightFragment = {
|
|
|
2982
2982
|
remainingAmountUsd: string;
|
|
2983
2983
|
incentiveRate: string;
|
|
2984
2984
|
incentiveRateUsd: string;
|
|
2985
|
-
tokenAddress: string
|
|
2985
|
+
tokenAddress: `0x${string}`;
|
|
2986
2986
|
token: {
|
|
2987
2987
|
__typename?: 'GqlToken';
|
|
2988
|
-
address: string
|
|
2988
|
+
address: `0x${string}`;
|
|
2989
2989
|
name: string;
|
|
2990
2990
|
symbol: string;
|
|
2991
2991
|
decimals: number;
|
|
@@ -3009,23 +3009,23 @@ type GetValidatorQuery = {
|
|
|
3009
3009
|
__typename?: 'Query';
|
|
3010
3010
|
validator?: {
|
|
3011
3011
|
__typename?: 'GqlValidator';
|
|
3012
|
-
operator?: string | null;
|
|
3013
|
-
id: string
|
|
3014
|
-
pubkey: string
|
|
3015
|
-
rewardAllocator?: string | null;
|
|
3012
|
+
operator?: `0x${string}` | null;
|
|
3013
|
+
id: `0x${string}`;
|
|
3014
|
+
pubkey: `0x${string}`;
|
|
3015
|
+
rewardAllocator?: `0x${string}` | null;
|
|
3016
3016
|
rewardAllocationWeights: Array<{
|
|
3017
3017
|
__typename?: 'GqlValidatorRewardAllocationWeight';
|
|
3018
3018
|
percentageNumerator: number;
|
|
3019
|
-
validatorId: string
|
|
3020
|
-
receiver: string
|
|
3019
|
+
validatorId: `0x${string}`;
|
|
3020
|
+
receiver: `0x${string}`;
|
|
3021
3021
|
startBlock: number;
|
|
3022
3022
|
receivingVault?: {
|
|
3023
3023
|
__typename?: 'GqlRewardVault';
|
|
3024
|
-
vaultAddress: string
|
|
3024
|
+
vaultAddress: `0x${string}`;
|
|
3025
3025
|
isVaultWhitelisted: boolean;
|
|
3026
3026
|
stakingTokenAmount: string;
|
|
3027
|
-
id: string
|
|
3028
|
-
address: string
|
|
3027
|
+
id: `0x${string}`;
|
|
3028
|
+
address: `0x${string}`;
|
|
3029
3029
|
dynamicData?: {
|
|
3030
3030
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
3031
3031
|
allTimeReceivedBGTAmount: string;
|
|
@@ -3038,7 +3038,7 @@ type GetValidatorQuery = {
|
|
|
3038
3038
|
} | null;
|
|
3039
3039
|
stakingToken: {
|
|
3040
3040
|
__typename?: 'GqlToken';
|
|
3041
|
-
address: string
|
|
3041
|
+
address: `0x${string}`;
|
|
3042
3042
|
name: string;
|
|
3043
3043
|
symbol: string;
|
|
3044
3044
|
decimals: number;
|
|
@@ -3061,10 +3061,10 @@ type GetValidatorQuery = {
|
|
|
3061
3061
|
remainingAmountUsd: string;
|
|
3062
3062
|
incentiveRate: string;
|
|
3063
3063
|
incentiveRateUsd: string;
|
|
3064
|
-
tokenAddress: string
|
|
3064
|
+
tokenAddress: `0x${string}`;
|
|
3065
3065
|
token: {
|
|
3066
3066
|
__typename?: 'GqlToken';
|
|
3067
|
-
address: string
|
|
3067
|
+
address: `0x${string}`;
|
|
3068
3068
|
name: string;
|
|
3069
3069
|
symbol: string;
|
|
3070
3070
|
decimals: number;
|
|
@@ -3133,23 +3133,23 @@ type GetValidatorsQuery = {
|
|
|
3133
3133
|
};
|
|
3134
3134
|
validators: Array<{
|
|
3135
3135
|
__typename?: 'GqlValidator';
|
|
3136
|
-
operator?: string | null;
|
|
3137
|
-
id: string
|
|
3138
|
-
pubkey: string
|
|
3139
|
-
rewardAllocator?: string | null;
|
|
3136
|
+
operator?: `0x${string}` | null;
|
|
3137
|
+
id: `0x${string}`;
|
|
3138
|
+
pubkey: `0x${string}`;
|
|
3139
|
+
rewardAllocator?: `0x${string}` | null;
|
|
3140
3140
|
rewardAllocationWeights: Array<{
|
|
3141
3141
|
__typename?: 'GqlValidatorRewardAllocationWeight';
|
|
3142
3142
|
percentageNumerator: number;
|
|
3143
|
-
validatorId: string
|
|
3144
|
-
receiver: string
|
|
3143
|
+
validatorId: `0x${string}`;
|
|
3144
|
+
receiver: `0x${string}`;
|
|
3145
3145
|
startBlock: number;
|
|
3146
3146
|
receivingVault?: {
|
|
3147
3147
|
__typename?: 'GqlRewardVault';
|
|
3148
|
-
vaultAddress: string
|
|
3148
|
+
vaultAddress: `0x${string}`;
|
|
3149
3149
|
isVaultWhitelisted: boolean;
|
|
3150
3150
|
stakingTokenAmount: string;
|
|
3151
|
-
id: string
|
|
3152
|
-
address: string
|
|
3151
|
+
id: `0x${string}`;
|
|
3152
|
+
address: `0x${string}`;
|
|
3153
3153
|
dynamicData?: {
|
|
3154
3154
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
3155
3155
|
allTimeReceivedBGTAmount: string;
|
|
@@ -3162,7 +3162,7 @@ type GetValidatorsQuery = {
|
|
|
3162
3162
|
} | null;
|
|
3163
3163
|
stakingToken: {
|
|
3164
3164
|
__typename?: 'GqlToken';
|
|
3165
|
-
address: string
|
|
3165
|
+
address: `0x${string}`;
|
|
3166
3166
|
name: string;
|
|
3167
3167
|
symbol: string;
|
|
3168
3168
|
decimals: number;
|
|
@@ -3185,10 +3185,10 @@ type GetValidatorsQuery = {
|
|
|
3185
3185
|
remainingAmountUsd: string;
|
|
3186
3186
|
incentiveRate: string;
|
|
3187
3187
|
incentiveRateUsd: string;
|
|
3188
|
-
tokenAddress: string
|
|
3188
|
+
tokenAddress: `0x${string}`;
|
|
3189
3189
|
token: {
|
|
3190
3190
|
__typename?: 'GqlToken';
|
|
3191
|
-
address: string
|
|
3191
|
+
address: `0x${string}`;
|
|
3192
3192
|
name: string;
|
|
3193
3193
|
symbol: string;
|
|
3194
3194
|
decimals: number;
|
|
@@ -3244,23 +3244,23 @@ type GetVaultValidatorsQuery = {
|
|
|
3244
3244
|
};
|
|
3245
3245
|
validators: Array<{
|
|
3246
3246
|
__typename?: 'GqlValidator';
|
|
3247
|
-
operator?: string | null;
|
|
3248
|
-
id: string
|
|
3249
|
-
pubkey: string
|
|
3250
|
-
rewardAllocator?: string | null;
|
|
3247
|
+
operator?: `0x${string}` | null;
|
|
3248
|
+
id: `0x${string}`;
|
|
3249
|
+
pubkey: `0x${string}`;
|
|
3250
|
+
rewardAllocator?: `0x${string}` | null;
|
|
3251
3251
|
rewardAllocationWeights: Array<{
|
|
3252
3252
|
__typename?: 'GqlValidatorRewardAllocationWeight';
|
|
3253
3253
|
percentageNumerator: number;
|
|
3254
|
-
validatorId: string
|
|
3255
|
-
receiver: string
|
|
3254
|
+
validatorId: `0x${string}`;
|
|
3255
|
+
receiver: `0x${string}`;
|
|
3256
3256
|
startBlock: number;
|
|
3257
3257
|
receivingVault?: {
|
|
3258
3258
|
__typename?: 'GqlRewardVault';
|
|
3259
|
-
vaultAddress: string
|
|
3259
|
+
vaultAddress: `0x${string}`;
|
|
3260
3260
|
isVaultWhitelisted: boolean;
|
|
3261
3261
|
stakingTokenAmount: string;
|
|
3262
|
-
id: string
|
|
3263
|
-
address: string
|
|
3262
|
+
id: `0x${string}`;
|
|
3263
|
+
address: `0x${string}`;
|
|
3264
3264
|
dynamicData?: {
|
|
3265
3265
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
3266
3266
|
allTimeReceivedBGTAmount: string;
|
|
@@ -3273,7 +3273,7 @@ type GetVaultValidatorsQuery = {
|
|
|
3273
3273
|
} | null;
|
|
3274
3274
|
stakingToken: {
|
|
3275
3275
|
__typename?: 'GqlToken';
|
|
3276
|
-
address: string
|
|
3276
|
+
address: `0x${string}`;
|
|
3277
3277
|
name: string;
|
|
3278
3278
|
symbol: string;
|
|
3279
3279
|
decimals: number;
|
|
@@ -3296,10 +3296,10 @@ type GetVaultValidatorsQuery = {
|
|
|
3296
3296
|
remainingAmountUsd: string;
|
|
3297
3297
|
incentiveRate: string;
|
|
3298
3298
|
incentiveRateUsd: string;
|
|
3299
|
-
tokenAddress: string
|
|
3299
|
+
tokenAddress: `0x${string}`;
|
|
3300
3300
|
token: {
|
|
3301
3301
|
__typename?: 'GqlToken';
|
|
3302
|
-
address: string
|
|
3302
|
+
address: `0x${string}`;
|
|
3303
3303
|
name: string;
|
|
3304
3304
|
symbol: string;
|
|
3305
3305
|
decimals: number;
|
|
@@ -3347,11 +3347,11 @@ type GetRewardVaultQuery = {
|
|
|
3347
3347
|
__typename?: 'Query';
|
|
3348
3348
|
rewardVault?: {
|
|
3349
3349
|
__typename?: 'GqlRewardVault';
|
|
3350
|
-
vaultAddress: string
|
|
3350
|
+
vaultAddress: `0x${string}`;
|
|
3351
3351
|
isVaultWhitelisted: boolean;
|
|
3352
3352
|
stakingTokenAmount: string;
|
|
3353
|
-
id: string
|
|
3354
|
-
address: string
|
|
3353
|
+
id: `0x${string}`;
|
|
3354
|
+
address: `0x${string}`;
|
|
3355
3355
|
dynamicData?: {
|
|
3356
3356
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
3357
3357
|
allTimeReceivedBGTAmount: string;
|
|
@@ -3364,7 +3364,7 @@ type GetRewardVaultQuery = {
|
|
|
3364
3364
|
} | null;
|
|
3365
3365
|
stakingToken: {
|
|
3366
3366
|
__typename?: 'GqlToken';
|
|
3367
|
-
address: string
|
|
3367
|
+
address: `0x${string}`;
|
|
3368
3368
|
name: string;
|
|
3369
3369
|
symbol: string;
|
|
3370
3370
|
decimals: number;
|
|
@@ -3387,10 +3387,10 @@ type GetRewardVaultQuery = {
|
|
|
3387
3387
|
remainingAmountUsd: string;
|
|
3388
3388
|
incentiveRate: string;
|
|
3389
3389
|
incentiveRateUsd: string;
|
|
3390
|
-
tokenAddress: string
|
|
3390
|
+
tokenAddress: `0x${string}`;
|
|
3391
3391
|
token: {
|
|
3392
3392
|
__typename?: 'GqlToken';
|
|
3393
|
-
address: string
|
|
3393
|
+
address: `0x${string}`;
|
|
3394
3394
|
name: string;
|
|
3395
3395
|
symbol: string;
|
|
3396
3396
|
decimals: number;
|
|
@@ -3412,10 +3412,10 @@ type GlobalDataQuery = {
|
|
|
3412
3412
|
};
|
|
3413
3413
|
validators: Array<{
|
|
3414
3414
|
__typename?: 'GqlValidator';
|
|
3415
|
-
id: string
|
|
3416
|
-
pubkey: string
|
|
3417
|
-
operator?: string | null;
|
|
3418
|
-
rewardAllocator?: string | null;
|
|
3415
|
+
id: `0x${string}`;
|
|
3416
|
+
pubkey: `0x${string}`;
|
|
3417
|
+
operator?: `0x${string}` | null;
|
|
3418
|
+
rewardAllocator?: `0x${string}` | null;
|
|
3419
3419
|
metadata?: {
|
|
3420
3420
|
__typename?: 'GqlValidatorMetadata';
|
|
3421
3421
|
name: string;
|
|
@@ -3474,14 +3474,14 @@ type GetUserVaultsQuery = {
|
|
|
3474
3474
|
deposits: Array<{
|
|
3475
3475
|
__typename?: 'GqlUserVaultDeposit';
|
|
3476
3476
|
amount: string;
|
|
3477
|
-
vaultAddress: string
|
|
3477
|
+
vaultAddress: `0x${string}`;
|
|
3478
3478
|
vault?: {
|
|
3479
3479
|
__typename?: 'GqlRewardVault';
|
|
3480
|
-
vaultAddress: string
|
|
3480
|
+
vaultAddress: `0x${string}`;
|
|
3481
3481
|
isVaultWhitelisted: boolean;
|
|
3482
3482
|
stakingTokenAmount: string;
|
|
3483
|
-
id: string
|
|
3484
|
-
address: string
|
|
3483
|
+
id: `0x${string}`;
|
|
3484
|
+
address: `0x${string}`;
|
|
3485
3485
|
dynamicData?: {
|
|
3486
3486
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
3487
3487
|
allTimeReceivedBGTAmount: string;
|
|
@@ -3494,7 +3494,7 @@ type GetUserVaultsQuery = {
|
|
|
3494
3494
|
} | null;
|
|
3495
3495
|
stakingToken: {
|
|
3496
3496
|
__typename?: 'GqlToken';
|
|
3497
|
-
address: string
|
|
3497
|
+
address: `0x${string}`;
|
|
3498
3498
|
name: string;
|
|
3499
3499
|
symbol: string;
|
|
3500
3500
|
decimals: number;
|
|
@@ -3517,10 +3517,10 @@ type GetUserVaultsQuery = {
|
|
|
3517
3517
|
remainingAmountUsd: string;
|
|
3518
3518
|
incentiveRate: string;
|
|
3519
3519
|
incentiveRateUsd: string;
|
|
3520
|
-
tokenAddress: string
|
|
3520
|
+
tokenAddress: `0x${string}`;
|
|
3521
3521
|
token: {
|
|
3522
3522
|
__typename?: 'GqlToken';
|
|
3523
|
-
address: string
|
|
3523
|
+
address: `0x${string}`;
|
|
3524
3524
|
name: string;
|
|
3525
3525
|
symbol: string;
|
|
3526
3526
|
decimals: number;
|
|
@@ -3605,7 +3605,7 @@ type GetSWberaVaultSnapshotsQuery = {
|
|
|
3605
3605
|
id: string;
|
|
3606
3606
|
timestamp: number;
|
|
3607
3607
|
totalAssets: string;
|
|
3608
|
-
vaultAddress: string
|
|
3608
|
+
vaultAddress: `0x${string}`;
|
|
3609
3609
|
}>;
|
|
3610
3610
|
};
|
|
3611
3611
|
type GetPolStakeBeraVaultEventsByOwnerQueryVariables = Exact<{
|
|
@@ -3623,6 +3623,17 @@ type GetPolStakeBeraVaultEventsByOwnerQuery = {
|
|
|
3623
3623
|
_timestamp: number;
|
|
3624
3624
|
}>;
|
|
3625
3625
|
};
|
|
3626
|
+
type GetStakeBeraVaultEarningsByOwnerQueryVariables = Exact<{
|
|
3627
|
+
owner: Scalars['String']['input'];
|
|
3628
|
+
}>;
|
|
3629
|
+
type GetStakeBeraVaultEarningsByOwnerQuery = {
|
|
3630
|
+
__typename?: 'Query';
|
|
3631
|
+
polGetStakeBeraVaultEarningsByOwner: {
|
|
3632
|
+
__typename?: 'GqlStakeBeraVaultEarnings';
|
|
3633
|
+
earnings: string;
|
|
3634
|
+
owner: string;
|
|
3635
|
+
};
|
|
3636
|
+
};
|
|
3626
3637
|
declare const ApiValidatorMinimal: _apollo_client.DocumentNode;
|
|
3627
3638
|
declare const ApiVaultIncentive: _apollo_client.DocumentNode;
|
|
3628
3639
|
declare const ApiVault: _apollo_client.DocumentNode;
|
|
@@ -3643,6 +3654,7 @@ declare const GetCommissionChangeDelay: _apollo_client.DocumentNode;
|
|
|
3643
3654
|
declare const GetSWberaVaultMetadata: _apollo_client.DocumentNode;
|
|
3644
3655
|
declare const GetSWberaVaultSnapshots: _apollo_client.DocumentNode;
|
|
3645
3656
|
declare const GetPolStakeBeraVaultEventsByOwner: _apollo_client.DocumentNode;
|
|
3657
|
+
declare const GetStakeBeraVaultEarningsByOwner: _apollo_client.DocumentNode;
|
|
3646
3658
|
interface PossibleTypesResultData {
|
|
3647
3659
|
possibleTypes: {
|
|
3648
3660
|
[key: string]: string[];
|
|
@@ -3650,4 +3662,4 @@ interface PossibleTypesResultData {
|
|
|
3650
3662
|
}
|
|
3651
3663
|
declare const result: PossibleTypesResultData;
|
|
3652
3664
|
|
|
3653
|
-
export { ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultsResponse, type Exact, GetBoostDelay, type GetBoostDelayQuery, type GetBoostDelayQueryVariables, GetCommissionChangeDelay, type GetCommissionChangeDelayQuery, type GetCommissionChangeDelayQueryVariables, GetPolStakeBeraVaultEventsByOwner, type GetPolStakeBeraVaultEventsByOwnerQuery, type GetPolStakeBeraVaultEventsByOwnerQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultDurations, type GetVaultDurationsQuery, type GetVaultDurationsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlContentNewsItem, GqlContentNewsItemSource, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlFeaturePoolGroupItemExternalLink, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFeaturedPool, type GqlPoolFeaturedPoolGroup, type GqlPoolFeaturedPoolGroupItem, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolMutationResult, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlStakeBeraVaultEarnings, type GqlStakeBeraVaultEvent, GqlStakeBeraVaultEventType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserBgtBalance, type GqlUserPoolBalance, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, type GqlValidatorBoostDelay, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionDelay, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, type GqlVaultDurations, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Mutation, type MutationPoolDeletePoolArgs, type MutationPoolInitializeSnapshotsForPoolArgs, type MutationPoolLoadSnapshotsForPoolsArgs, type MutationPoolReloadAllPoolAprsArgs, type MutationPoolReloadPoolsArgs, type MutationPoolSyncAllCowSnapshotsArgs, type MutationPoolSyncLatestSnapshotsForAllPoolsArgs, type MutationPoolSyncPoolArgs, type MutationPoolUpdateAprsArgs, type MutationTokenDeleteTokenTypeArgs, type MutationTokenReloadErc4626TokensArgs, type MutationTokenReloadTokenPricesArgs, type MutationTokenSyncLatestFxPricesArgs, type MutationUserInitWalletBalancesForPoolArgs, type MutationUserSyncBalanceArgs, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryContentGetNewsItemsArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetDefaultRewardAllocationsArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetStakeBeraVaultEarningsByOwnerArgs, type QueryPolGetStakeBeraVaultEventsByOwnerArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetBatchSwapsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetFeaturedPoolGroupsArgs, type QueryPoolGetFeaturedPoolsArgs, type QueryPoolGetJoinExitsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryPoolGetSwapsArgs, type QueryPoolGetUserBalancesArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCandlestickChartDataArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetPriceChartDataArgs, type QueryTokenGetProtocolTokenPriceArgs, type QueryTokenGetRelativePriceChartDataArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDataArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDataArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, type QueryUserGetTopBgtBalanceArgs, type Scalars, type Token, result as default };
|
|
3665
|
+
export { ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultsResponse, type Exact, GetBoostDelay, type GetBoostDelayQuery, type GetBoostDelayQueryVariables, GetCommissionChangeDelay, type GetCommissionChangeDelayQuery, type GetCommissionChangeDelayQueryVariables, GetPolStakeBeraVaultEventsByOwner, type GetPolStakeBeraVaultEventsByOwnerQuery, type GetPolStakeBeraVaultEventsByOwnerQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetStakeBeraVaultEarningsByOwner, type GetStakeBeraVaultEarningsByOwnerQuery, type GetStakeBeraVaultEarningsByOwnerQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultDurations, type GetVaultDurationsQuery, type GetVaultDurationsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlContentNewsItem, GqlContentNewsItemSource, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlFeaturePoolGroupItemExternalLink, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFeaturedPool, type GqlPoolFeaturedPoolGroup, type GqlPoolFeaturedPoolGroupItem, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolMutationResult, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlStakeBeraVaultEarnings, type GqlStakeBeraVaultEvent, GqlStakeBeraVaultEventType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserBgtBalance, type GqlUserPoolBalance, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, type GqlValidatorBoostDelay, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionDelay, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, type GqlVaultDurations, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Mutation, type MutationPoolDeletePoolArgs, type MutationPoolInitializeSnapshotsForPoolArgs, type MutationPoolLoadSnapshotsForPoolsArgs, type MutationPoolReloadAllPoolAprsArgs, type MutationPoolReloadPoolsArgs, type MutationPoolSyncAllCowSnapshotsArgs, type MutationPoolSyncLatestSnapshotsForAllPoolsArgs, type MutationPoolSyncPoolArgs, type MutationPoolUpdateAprsArgs, type MutationTokenDeleteTokenTypeArgs, type MutationTokenReloadErc4626TokensArgs, type MutationTokenReloadTokenPricesArgs, type MutationTokenSyncLatestFxPricesArgs, type MutationUserInitWalletBalancesForPoolArgs, type MutationUserSyncBalanceArgs, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryContentGetNewsItemsArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetDefaultRewardAllocationsArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetStakeBeraVaultEarningsByOwnerArgs, type QueryPolGetStakeBeraVaultEventsByOwnerArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetBatchSwapsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetFeaturedPoolGroupsArgs, type QueryPoolGetFeaturedPoolsArgs, type QueryPoolGetJoinExitsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryPoolGetSwapsArgs, type QueryPoolGetUserBalancesArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCandlestickChartDataArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetPriceChartDataArgs, type QueryTokenGetProtocolTokenPriceArgs, type QueryTokenGetRelativePriceChartDataArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDataArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDataArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, type QueryUserGetTopBgtBalanceArgs, type Scalars, type Token, result as default };
|