@berachain/graphql 0.4.16-beta.7 → 0.4.16-beta.8
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.
|
@@ -122,8 +122,16 @@ type GqlDefaultRewardAllocationWeight = {
|
|
|
122
122
|
};
|
|
123
123
|
type GqlGlobalInfo = {
|
|
124
124
|
__typename?: 'GqlGlobalInfo';
|
|
125
|
+
/** @deprecated Use annualizedPoLEmissions instead */
|
|
125
126
|
annualizedBGTEmission: Scalars['String']['output'];
|
|
127
|
+
/** @deprecated Use annualizedInflation instead */
|
|
126
128
|
annualizedBGTInflation: Scalars['String']['output'];
|
|
129
|
+
annualizedInflation: Scalars['Float']['output'];
|
|
130
|
+
/**
|
|
131
|
+
* The annualized amount of PoL reward emitted to reward vaults and earned by validators.
|
|
132
|
+
* Calculated based on the last 24h emissions.
|
|
133
|
+
*/
|
|
134
|
+
annualizedPoLEmissions: Scalars['Float']['output'];
|
|
127
135
|
baseRewardRate: Scalars['String']['output'];
|
|
128
136
|
chain: GqlChain;
|
|
129
137
|
minBoostedRewardRate: Scalars['String']['output'];
|
|
@@ -133,7 +141,14 @@ type GqlGlobalInfo = {
|
|
|
133
141
|
totalActiveIncentivesValueUSD: Scalars['String']['output'];
|
|
134
142
|
totalActiveRewardVaults: Scalars['Int']['output'];
|
|
135
143
|
totalBGTEarnedByValidators: Scalars['String']['output'];
|
|
144
|
+
/** @deprecated Use totalDistributedRewards instead */
|
|
136
145
|
totalDistributedBGTAmount: Scalars['String']['output'];
|
|
146
|
+
/**
|
|
147
|
+
* The all-time amount of PoL reward distributed to reward vaults.
|
|
148
|
+
*
|
|
149
|
+
* This does not include emissions earned by validators that are not distributed to reward vaults.
|
|
150
|
+
*/
|
|
151
|
+
totalDistributedRewards: Scalars['String']['output'];
|
|
137
152
|
totalQueuedBoostAmount: Scalars['String']['output'];
|
|
138
153
|
totalStakedBeraAmount: Scalars['String']['output'];
|
|
139
154
|
totalValidatorsCount: Scalars['Int']['output'];
|
|
@@ -967,9 +982,11 @@ declare enum GqlPoolNestingType {
|
|
|
967
982
|
}
|
|
968
983
|
declare enum GqlPoolOrderBy {
|
|
969
984
|
Apr = "apr",
|
|
985
|
+
/** @deprecated Use polApr instead */
|
|
970
986
|
BgtApr = "bgtApr",
|
|
971
987
|
CombinedApr = "combinedApr",
|
|
972
988
|
Fees24h = "fees24h",
|
|
989
|
+
PolApr = "polApr",
|
|
973
990
|
TotalLiquidity = "totalLiquidity",
|
|
974
991
|
TotalShares = "totalShares",
|
|
975
992
|
UserbalanceUsd = "userbalanceUsd",
|
|
@@ -1349,17 +1366,25 @@ type GqlRewardVaultDynamicData = {
|
|
|
1349
1366
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
1350
1367
|
activeIncentivesRateUsd: Scalars['String']['output'];
|
|
1351
1368
|
activeIncentivesValueUsd: Scalars['String']['output'];
|
|
1369
|
+
/** @deprecated Use allTimeRewards instead */
|
|
1352
1370
|
allTimeReceivedBGTAmount: Scalars['String']['output'];
|
|
1371
|
+
allTimeRewards: Scalars['String']['output'];
|
|
1353
1372
|
apr?: Maybe<Scalars['Float']['output']>;
|
|
1354
1373
|
/** @deprecated Use apr instead */
|
|
1355
1374
|
apy?: Maybe<Scalars['Float']['output']>;
|
|
1375
|
+
/** @deprecated Use rewardCapturePerBlock instead */
|
|
1356
1376
|
bgtCapturePerBlock: Scalars['String']['output'];
|
|
1377
|
+
/** @deprecated Use rewardCapturePercentage instead */
|
|
1357
1378
|
bgtCapturePercentage: Scalars['String']['output'];
|
|
1358
1379
|
chain: GqlChain;
|
|
1380
|
+
/** @deprecated Use lastDayRewards instead */
|
|
1359
1381
|
lastDayReceivedBGTAmount: Scalars['String']['output'];
|
|
1382
|
+
lastDayRewards: Scalars['String']['output'];
|
|
1360
1383
|
projectedApr?: Maybe<Scalars['Float']['output']>;
|
|
1361
1384
|
/** @deprecated Use projectedApr instead */
|
|
1362
1385
|
projectedApy?: Maybe<Scalars['Float']['output']>;
|
|
1386
|
+
rewardCapturePerBlock: Scalars['Float']['output'];
|
|
1387
|
+
rewardCapturePercentage: Scalars['Float']['output'];
|
|
1363
1388
|
tvl?: Maybe<Scalars['Float']['output']>;
|
|
1364
1389
|
vaultAddress: Scalars['Bytes']['output'];
|
|
1365
1390
|
};
|
|
@@ -1418,10 +1443,12 @@ declare enum GqlRewardVaultOrderBy {
|
|
|
1418
1443
|
AllTimeBgtReceived = "allTimeBGTReceived",
|
|
1419
1444
|
Apr = "apr",
|
|
1420
1445
|
Apy = "apy",
|
|
1446
|
+
/** @deprecated Use rewardCapturePercentage instead */
|
|
1421
1447
|
BgtCapturePercentage = "bgtCapturePercentage",
|
|
1422
1448
|
/** @deprecated This will be removed at mid April 2026 */
|
|
1423
1449
|
Last24hBgtReceived = "last24hBGTReceived",
|
|
1424
|
-
ProjectedApr = "projectedApr"
|
|
1450
|
+
ProjectedApr = "projectedApr",
|
|
1451
|
+
RewardCapturePercentage = "rewardCapturePercentage"
|
|
1425
1452
|
}
|
|
1426
1453
|
declare enum GqlRewardVaultOrderDirection {
|
|
1427
1454
|
Asc = "asc",
|
|
@@ -1431,9 +1458,11 @@ type GqlRewardVaultSnapshot = {
|
|
|
1431
1458
|
__typename?: 'GqlRewardVaultSnapshot';
|
|
1432
1459
|
activeIncentivesValueUsd: Scalars['String']['output'];
|
|
1433
1460
|
apr: Scalars['String']['output'];
|
|
1461
|
+
/** @deprecated Use rewardCapturePercentage instead */
|
|
1434
1462
|
bgtCapturePercentage: Scalars['String']['output'];
|
|
1435
1463
|
chain: GqlChain;
|
|
1436
1464
|
id: Scalars['ID']['output'];
|
|
1465
|
+
rewardCapturePercentage: Scalars['Float']['output'];
|
|
1437
1466
|
timestamp: Scalars['Int']['output'];
|
|
1438
1467
|
tvl: Scalars['String']['output'];
|
|
1439
1468
|
vaultAddress: Scalars['Bytes']['output'];
|
|
@@ -1778,14 +1807,6 @@ declare enum GqlTokenType {
|
|
|
1778
1807
|
PhantomBpt = "PHANTOM_BPT",
|
|
1779
1808
|
WhiteListed = "WHITE_LISTED"
|
|
1780
1809
|
}
|
|
1781
|
-
type GqlUserBgtBalance = {
|
|
1782
|
-
__typename?: 'GqlUserBGTBalance';
|
|
1783
|
-
boostedBGTBalance: Scalars['String']['output'];
|
|
1784
|
-
chain: GqlChain;
|
|
1785
|
-
totalBGTBalance: Scalars['String']['output'];
|
|
1786
|
-
unboostedBGTBalance: Scalars['String']['output'];
|
|
1787
|
-
userAddress: Scalars['Bytes']['output'];
|
|
1788
|
-
};
|
|
1789
1810
|
type GqlUserSwapVolumeFilter = {
|
|
1790
1811
|
poolIdIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1791
1812
|
tokenInIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -1883,19 +1904,29 @@ type GqlValidatorDynamicData = {
|
|
|
1883
1904
|
__typename?: 'GqlValidatorDynamicData';
|
|
1884
1905
|
activeBoostAmount: Scalars['String']['output'];
|
|
1885
1906
|
activeBoostAmountRank: Scalars['Int']['output'];
|
|
1907
|
+
/** @deprecated Use allTimeDistributedRewards instead */
|
|
1886
1908
|
allTimeDistributedBGTAmount: Scalars['String']['output'];
|
|
1909
|
+
allTimeDistributedRewards: Scalars['String']['output'];
|
|
1887
1910
|
allTimeEarnedBGTAmount: Scalars['String']['output'];
|
|
1911
|
+
allTimeEarnedRewards: Scalars['String']['output'];
|
|
1888
1912
|
allTimeProposedBlockCount: Scalars['Int']['output'];
|
|
1889
1913
|
apy: Scalars['String']['output'];
|
|
1914
|
+
/** @deprecated Use rewardCapturePerBlock instead */
|
|
1890
1915
|
bgtCapturePerBlock: Scalars['String']['output'];
|
|
1916
|
+
/** @deprecated Use rewardCapturePercentage instead */
|
|
1891
1917
|
bgtCapturePercentage: Scalars['String']['output'];
|
|
1918
|
+
/** @deprecated Boost APR belongs to previous version of POL. */
|
|
1892
1919
|
boostApr: Scalars['Float']['output'];
|
|
1893
1920
|
chain: GqlChain;
|
|
1894
1921
|
commissionOnIncentives: Scalars['Int']['output'];
|
|
1895
1922
|
lastDayDistributedBGTAmount: Scalars['String']['output'];
|
|
1923
|
+
lastDayDistributedRewards: Scalars['String']['output'];
|
|
1896
1924
|
lastDayEarnedBGTAmount: Scalars['String']['output'];
|
|
1925
|
+
lastDayEarnedRewards: Scalars['String']['output'];
|
|
1897
1926
|
lastDayProposedBlockCount: Scalars['Int']['output'];
|
|
1898
1927
|
queuedBoostAmount: Scalars['String']['output'];
|
|
1928
|
+
rewardCapturePerBlock: Scalars['Float']['output'];
|
|
1929
|
+
rewardCapturePercentage: Scalars['Float']['output'];
|
|
1899
1930
|
rewardRate: Scalars['String']['output'];
|
|
1900
1931
|
stakedBeraAmount: Scalars['String']['output'];
|
|
1901
1932
|
usersActiveBoostCount: Scalars['Int']['output'];
|
|
@@ -3590,4 +3621,4 @@ interface PossibleTypesResultData {
|
|
|
3590
3621
|
}
|
|
3591
3622
|
declare const result: PossibleTypesResultData;
|
|
3592
3623
|
|
|
3593
|
-
export { type BendVaultDynamicData, type BendVaultResponse, DynamicData, type DynamicDataFragment, type Exact, GetGlobalLiquidityAndSwapVolume, type GetGlobalLiquidityAndSwapVolumeQuery, type GetGlobalLiquidityAndSwapVolumeQueryVariables, GetPool, GetPoolEvents, type GetPoolEventsQuery, type GetPoolEventsQueryVariables, GetPoolHistoricalData, type GetPoolHistoricalDataQuery, type GetPoolHistoricalDataQueryVariables, type GetPoolQuery, type GetPoolQueryVariables, GetPools, type GetPoolsQuery, type GetPoolsQueryVariables, GetTokenCurrentPrices, type GetTokenCurrentPricesQuery, type GetTokenCurrentPricesQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, GqlPoolAddRemoveEventV3, type GqlPoolAddRemoveEventV3Fragment, 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 GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, GqlPoolSwapEventCowAmm, type GqlPoolSwapEventCowAmmFragment, GqlPoolSwapEventV3, type GqlPoolSwapEventV3Fragment, 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 GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type
|
|
3624
|
+
export { type BendVaultDynamicData, type BendVaultResponse, DynamicData, type DynamicDataFragment, type Exact, GetGlobalLiquidityAndSwapVolume, type GetGlobalLiquidityAndSwapVolumeQuery, type GetGlobalLiquidityAndSwapVolumeQueryVariables, GetPool, GetPoolEvents, type GetPoolEventsQuery, type GetPoolEventsQueryVariables, GetPoolHistoricalData, type GetPoolHistoricalDataQuery, type GetPoolHistoricalDataQueryVariables, type GetPoolQuery, type GetPoolQueryVariables, GetPools, type GetPoolsQuery, type GetPoolsQueryVariables, GetTokenCurrentPrices, type GetTokenCurrentPricesQuery, type GetTokenCurrentPricesQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, GqlPoolAddRemoveEventV3, type GqlPoolAddRemoveEventV3Fragment, 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 GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, GqlPoolSwapEventCowAmm, type GqlPoolSwapEventCowAmmFragment, GqlPoolSwapEventV3, type GqlPoolSwapEventV3Fragment, 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 GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorInList, type GqlValidatorIncentive, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, MinimalPool, type MinimalPoolFragment, MinimalPoolInList, type MinimalPoolInListFragment, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, PoolEvent, type PoolEventFragment, PoolHistoricalData, type PoolHistoricalDataFragment, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, RewardVault, type RewardVaultFragment, type Scalars, type Token, UserBalance, type UserBalanceFragment, result as default };
|
package/dist/dex/api.codegen.mjs
CHANGED
|
@@ -62,6 +62,7 @@ var GqlPoolOrderBy = /* @__PURE__ */ ((GqlPoolOrderBy2) => {
|
|
|
62
62
|
GqlPoolOrderBy2["BgtApr"] = "bgtApr";
|
|
63
63
|
GqlPoolOrderBy2["CombinedApr"] = "combinedApr";
|
|
64
64
|
GqlPoolOrderBy2["Fees24h"] = "fees24h";
|
|
65
|
+
GqlPoolOrderBy2["PolApr"] = "polApr";
|
|
65
66
|
GqlPoolOrderBy2["TotalLiquidity"] = "totalLiquidity";
|
|
66
67
|
GqlPoolOrderBy2["TotalShares"] = "totalShares";
|
|
67
68
|
GqlPoolOrderBy2["UserbalanceUsd"] = "userbalanceUsd";
|
|
@@ -118,6 +119,7 @@ var GqlRewardVaultOrderBy = /* @__PURE__ */ ((GqlRewardVaultOrderBy2) => {
|
|
|
118
119
|
GqlRewardVaultOrderBy2["BgtCapturePercentage"] = "bgtCapturePercentage";
|
|
119
120
|
GqlRewardVaultOrderBy2["Last24hBgtReceived"] = "last24hBGTReceived";
|
|
120
121
|
GqlRewardVaultOrderBy2["ProjectedApr"] = "projectedApr";
|
|
122
|
+
GqlRewardVaultOrderBy2["RewardCapturePercentage"] = "rewardCapturePercentage";
|
|
121
123
|
return GqlRewardVaultOrderBy2;
|
|
122
124
|
})(GqlRewardVaultOrderBy || {});
|
|
123
125
|
var GqlRewardVaultOrderDirection = /* @__PURE__ */ ((GqlRewardVaultOrderDirection2) => {
|
|
@@ -122,8 +122,16 @@ type GqlDefaultRewardAllocationWeight = {
|
|
|
122
122
|
};
|
|
123
123
|
type GqlGlobalInfo = {
|
|
124
124
|
__typename?: 'GqlGlobalInfo';
|
|
125
|
+
/** @deprecated Use annualizedPoLEmissions instead */
|
|
125
126
|
annualizedBGTEmission: Scalars['String']['output'];
|
|
127
|
+
/** @deprecated Use annualizedInflation instead */
|
|
126
128
|
annualizedBGTInflation: Scalars['String']['output'];
|
|
129
|
+
annualizedInflation: Scalars['Float']['output'];
|
|
130
|
+
/**
|
|
131
|
+
* The annualized amount of PoL reward emitted to reward vaults and earned by validators.
|
|
132
|
+
* Calculated based on the last 24h emissions.
|
|
133
|
+
*/
|
|
134
|
+
annualizedPoLEmissions: Scalars['Float']['output'];
|
|
127
135
|
baseRewardRate: Scalars['String']['output'];
|
|
128
136
|
chain: GqlChain;
|
|
129
137
|
minBoostedRewardRate: Scalars['String']['output'];
|
|
@@ -133,7 +141,14 @@ type GqlGlobalInfo = {
|
|
|
133
141
|
totalActiveIncentivesValueUSD: Scalars['String']['output'];
|
|
134
142
|
totalActiveRewardVaults: Scalars['Int']['output'];
|
|
135
143
|
totalBGTEarnedByValidators: Scalars['String']['output'];
|
|
144
|
+
/** @deprecated Use totalDistributedRewards instead */
|
|
136
145
|
totalDistributedBGTAmount: Scalars['String']['output'];
|
|
146
|
+
/**
|
|
147
|
+
* The all-time amount of PoL reward distributed to reward vaults.
|
|
148
|
+
*
|
|
149
|
+
* This does not include emissions earned by validators that are not distributed to reward vaults.
|
|
150
|
+
*/
|
|
151
|
+
totalDistributedRewards: Scalars['String']['output'];
|
|
137
152
|
totalQueuedBoostAmount: Scalars['String']['output'];
|
|
138
153
|
totalStakedBeraAmount: Scalars['String']['output'];
|
|
139
154
|
totalValidatorsCount: Scalars['Int']['output'];
|
|
@@ -997,9 +1012,11 @@ declare enum GqlPoolNestingType {
|
|
|
997
1012
|
}
|
|
998
1013
|
declare enum GqlPoolOrderBy {
|
|
999
1014
|
Apr = "apr",
|
|
1015
|
+
/** @deprecated Use polApr instead */
|
|
1000
1016
|
BgtApr = "bgtApr",
|
|
1001
1017
|
CombinedApr = "combinedApr",
|
|
1002
1018
|
Fees24h = "fees24h",
|
|
1019
|
+
PolApr = "polApr",
|
|
1003
1020
|
TotalLiquidity = "totalLiquidity",
|
|
1004
1021
|
TotalShares = "totalShares",
|
|
1005
1022
|
UserbalanceUsd = "userbalanceUsd",
|
|
@@ -1449,17 +1466,25 @@ type GqlRewardVaultDynamicData = {
|
|
|
1449
1466
|
__typename?: 'GqlRewardVaultDynamicData';
|
|
1450
1467
|
activeIncentivesRateUsd: Scalars['String']['output'];
|
|
1451
1468
|
activeIncentivesValueUsd: Scalars['String']['output'];
|
|
1469
|
+
/** @deprecated Use allTimeRewards instead */
|
|
1452
1470
|
allTimeReceivedBGTAmount: Scalars['String']['output'];
|
|
1471
|
+
allTimeRewards: Scalars['String']['output'];
|
|
1453
1472
|
apr?: Maybe<Scalars['Float']['output']>;
|
|
1454
1473
|
/** @deprecated Use apr instead */
|
|
1455
1474
|
apy?: Maybe<Scalars['Float']['output']>;
|
|
1475
|
+
/** @deprecated Use rewardCapturePerBlock instead */
|
|
1456
1476
|
bgtCapturePerBlock: Scalars['String']['output'];
|
|
1477
|
+
/** @deprecated Use rewardCapturePercentage instead */
|
|
1457
1478
|
bgtCapturePercentage: Scalars['String']['output'];
|
|
1458
1479
|
chain: GqlChain;
|
|
1480
|
+
/** @deprecated Use lastDayRewards instead */
|
|
1459
1481
|
lastDayReceivedBGTAmount: Scalars['String']['output'];
|
|
1482
|
+
lastDayRewards: Scalars['String']['output'];
|
|
1460
1483
|
projectedApr?: Maybe<Scalars['Float']['output']>;
|
|
1461
1484
|
/** @deprecated Use projectedApr instead */
|
|
1462
1485
|
projectedApy?: Maybe<Scalars['Float']['output']>;
|
|
1486
|
+
rewardCapturePerBlock: Scalars['Float']['output'];
|
|
1487
|
+
rewardCapturePercentage: Scalars['Float']['output'];
|
|
1463
1488
|
tvl?: Maybe<Scalars['Float']['output']>;
|
|
1464
1489
|
vaultAddress: Scalars['Bytes']['output'];
|
|
1465
1490
|
};
|
|
@@ -1518,10 +1543,12 @@ declare enum GqlRewardVaultOrderBy {
|
|
|
1518
1543
|
AllTimeBgtReceived = "allTimeBGTReceived",
|
|
1519
1544
|
Apr = "apr",
|
|
1520
1545
|
Apy = "apy",
|
|
1546
|
+
/** @deprecated Use rewardCapturePercentage instead */
|
|
1521
1547
|
BgtCapturePercentage = "bgtCapturePercentage",
|
|
1522
1548
|
/** @deprecated This will be removed at mid April 2026 */
|
|
1523
1549
|
Last24hBgtReceived = "last24hBGTReceived",
|
|
1524
|
-
ProjectedApr = "projectedApr"
|
|
1550
|
+
ProjectedApr = "projectedApr",
|
|
1551
|
+
RewardCapturePercentage = "rewardCapturePercentage"
|
|
1525
1552
|
}
|
|
1526
1553
|
declare enum GqlRewardVaultOrderDirection {
|
|
1527
1554
|
Asc = "asc",
|
|
@@ -1531,9 +1558,11 @@ type GqlRewardVaultSnapshot = {
|
|
|
1531
1558
|
__typename?: 'GqlRewardVaultSnapshot';
|
|
1532
1559
|
activeIncentivesValueUsd: Scalars['String']['output'];
|
|
1533
1560
|
apr: Scalars['String']['output'];
|
|
1561
|
+
/** @deprecated Use rewardCapturePercentage instead */
|
|
1534
1562
|
bgtCapturePercentage: Scalars['String']['output'];
|
|
1535
1563
|
chain: GqlChain;
|
|
1536
1564
|
id: Scalars['ID']['output'];
|
|
1565
|
+
rewardCapturePercentage: Scalars['Float']['output'];
|
|
1537
1566
|
timestamp: Scalars['Int']['output'];
|
|
1538
1567
|
tvl: Scalars['String']['output'];
|
|
1539
1568
|
vaultAddress: Scalars['Bytes']['output'];
|
|
@@ -1878,14 +1907,6 @@ declare enum GqlTokenType {
|
|
|
1878
1907
|
PhantomBpt = "PHANTOM_BPT",
|
|
1879
1908
|
WhiteListed = "WHITE_LISTED"
|
|
1880
1909
|
}
|
|
1881
|
-
type GqlUserBgtBalance = {
|
|
1882
|
-
__typename?: 'GqlUserBGTBalance';
|
|
1883
|
-
boostedBGTBalance: Scalars['String']['output'];
|
|
1884
|
-
chain: GqlChain;
|
|
1885
|
-
totalBGTBalance: Scalars['String']['output'];
|
|
1886
|
-
unboostedBGTBalance: Scalars['String']['output'];
|
|
1887
|
-
userAddress: Scalars['Bytes']['output'];
|
|
1888
|
-
};
|
|
1889
1910
|
type GqlUserSwapVolumeFilter = {
|
|
1890
1911
|
poolIdIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1891
1912
|
tokenInIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -1983,19 +2004,29 @@ type GqlValidatorDynamicData = {
|
|
|
1983
2004
|
__typename?: 'GqlValidatorDynamicData';
|
|
1984
2005
|
activeBoostAmount: Scalars['String']['output'];
|
|
1985
2006
|
activeBoostAmountRank: Scalars['Int']['output'];
|
|
2007
|
+
/** @deprecated Use allTimeDistributedRewards instead */
|
|
1986
2008
|
allTimeDistributedBGTAmount: Scalars['String']['output'];
|
|
2009
|
+
allTimeDistributedRewards: Scalars['String']['output'];
|
|
1987
2010
|
allTimeEarnedBGTAmount: Scalars['String']['output'];
|
|
2011
|
+
allTimeEarnedRewards: Scalars['String']['output'];
|
|
1988
2012
|
allTimeProposedBlockCount: Scalars['Int']['output'];
|
|
1989
2013
|
apy: Scalars['String']['output'];
|
|
2014
|
+
/** @deprecated Use rewardCapturePerBlock instead */
|
|
1990
2015
|
bgtCapturePerBlock: Scalars['String']['output'];
|
|
2016
|
+
/** @deprecated Use rewardCapturePercentage instead */
|
|
1991
2017
|
bgtCapturePercentage: Scalars['String']['output'];
|
|
2018
|
+
/** @deprecated Boost APR belongs to previous version of POL. */
|
|
1992
2019
|
boostApr: Scalars['Float']['output'];
|
|
1993
2020
|
chain: GqlChain;
|
|
1994
2021
|
commissionOnIncentives: Scalars['Int']['output'];
|
|
1995
2022
|
lastDayDistributedBGTAmount: Scalars['String']['output'];
|
|
2023
|
+
lastDayDistributedRewards: Scalars['String']['output'];
|
|
1996
2024
|
lastDayEarnedBGTAmount: Scalars['String']['output'];
|
|
2025
|
+
lastDayEarnedRewards: Scalars['String']['output'];
|
|
1997
2026
|
lastDayProposedBlockCount: Scalars['Int']['output'];
|
|
1998
2027
|
queuedBoostAmount: Scalars['String']['output'];
|
|
2028
|
+
rewardCapturePerBlock: Scalars['Float']['output'];
|
|
2029
|
+
rewardCapturePercentage: Scalars['Float']['output'];
|
|
1999
2030
|
rewardRate: Scalars['String']['output'];
|
|
2000
2031
|
stakedBeraAmount: Scalars['String']['output'];
|
|
2001
2032
|
usersActiveBoostCount: Scalars['Int']['output'];
|
|
@@ -3576,4 +3607,4 @@ interface PossibleTypesResultData {
|
|
|
3576
3607
|
}
|
|
3577
3608
|
declare const result: PossibleTypesResultData;
|
|
3578
3609
|
|
|
3579
|
-
export { ApiMinimalVaultIncentive, type ApiMinimalVaultIncentiveFragment, ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorInList, type ApiValidatorInListFragment, ApiValidatorIncentive, type ApiValidatorIncentiveFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiValidatorRewardAllocationWeight, type ApiValidatorRewardAllocationWeightFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, GetBendVaults, type GetBendVaultsQuery, type GetBendVaultsQueryVariables, GetHeroEarnVaults, type GetHeroEarnVaultsQuery, type GetHeroEarnVaultsQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserValidatorInformation, type GetUserValidatorInformationQuery, type GetUserValidatorInformationQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, 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 GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, 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 GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, 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 GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type
|
|
3610
|
+
export { ApiMinimalVaultIncentive, type ApiMinimalVaultIncentiveFragment, ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorInList, type ApiValidatorInListFragment, ApiValidatorIncentive, type ApiValidatorIncentiveFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiValidatorRewardAllocationWeight, type ApiValidatorRewardAllocationWeightFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, GetBendVaults, type GetBendVaultsQuery, type GetBendVaultsQueryVariables, GetHeroEarnVaults, type GetHeroEarnVaultsQuery, type GetHeroEarnVaultsQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserValidatorInformation, type GetUserValidatorInformationQuery, type GetUserValidatorInformationQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, 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 GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, 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 GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, 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 GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorInList, type GqlValidatorIncentive, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type Scalars, type Token, result as default };
|
package/dist/pol/api.codegen.mjs
CHANGED
|
@@ -62,6 +62,7 @@ var GqlPoolOrderBy = /* @__PURE__ */ ((GqlPoolOrderBy2) => {
|
|
|
62
62
|
GqlPoolOrderBy2["BgtApr"] = "bgtApr";
|
|
63
63
|
GqlPoolOrderBy2["CombinedApr"] = "combinedApr";
|
|
64
64
|
GqlPoolOrderBy2["Fees24h"] = "fees24h";
|
|
65
|
+
GqlPoolOrderBy2["PolApr"] = "polApr";
|
|
65
66
|
GqlPoolOrderBy2["TotalLiquidity"] = "totalLiquidity";
|
|
66
67
|
GqlPoolOrderBy2["TotalShares"] = "totalShares";
|
|
67
68
|
GqlPoolOrderBy2["UserbalanceUsd"] = "userbalanceUsd";
|
|
@@ -118,6 +119,7 @@ var GqlRewardVaultOrderBy = /* @__PURE__ */ ((GqlRewardVaultOrderBy2) => {
|
|
|
118
119
|
GqlRewardVaultOrderBy2["BgtCapturePercentage"] = "bgtCapturePercentage";
|
|
119
120
|
GqlRewardVaultOrderBy2["Last24hBgtReceived"] = "last24hBGTReceived";
|
|
120
121
|
GqlRewardVaultOrderBy2["ProjectedApr"] = "projectedApr";
|
|
122
|
+
GqlRewardVaultOrderBy2["RewardCapturePercentage"] = "rewardCapturePercentage";
|
|
121
123
|
return GqlRewardVaultOrderBy2;
|
|
122
124
|
})(GqlRewardVaultOrderBy || {});
|
|
123
125
|
var GqlRewardVaultOrderDirection = /* @__PURE__ */ ((GqlRewardVaultOrderDirection2) => {
|
|
@@ -4057,6 +4057,23 @@ type GetValidatorAnalyticsQuery = {
|
|
|
4057
4057
|
activeBoostAmount: string;
|
|
4058
4058
|
};
|
|
4059
4059
|
}>;
|
|
4060
|
+
userValidatorBoostQueued: Array<{
|
|
4061
|
+
__typename?: 'UserBoost';
|
|
4062
|
+
queuedBoostAmount: string;
|
|
4063
|
+
user: `0x${string}`;
|
|
4064
|
+
}>;
|
|
4065
|
+
userValidatorBoostDeposited: Array<{
|
|
4066
|
+
__typename?: 'UserBoost';
|
|
4067
|
+
activeBoostAmount: string;
|
|
4068
|
+
user: `0x${string}`;
|
|
4069
|
+
}>;
|
|
4070
|
+
};
|
|
4071
|
+
type GetValidatorIncentiveDistributionQueryVariables = Exact<{
|
|
4072
|
+
pubKey: Scalars['Bytes']['input'];
|
|
4073
|
+
timestamp: Scalars['Timestamp']['input'];
|
|
4074
|
+
}>;
|
|
4075
|
+
type GetValidatorIncentiveDistributionQuery = {
|
|
4076
|
+
__typename?: 'Query';
|
|
4060
4077
|
incentiveDistributionByValidators: Array<{
|
|
4061
4078
|
__typename?: 'IncentiveDistributionByValidator';
|
|
4062
4079
|
receivedTokenAmount: string;
|
|
@@ -4069,16 +4086,6 @@ type GetValidatorAnalyticsQuery = {
|
|
|
4069
4086
|
symbol: string;
|
|
4070
4087
|
};
|
|
4071
4088
|
}>;
|
|
4072
|
-
userValidatorBoostQueued: Array<{
|
|
4073
|
-
__typename?: 'UserBoost';
|
|
4074
|
-
queuedBoostAmount: string;
|
|
4075
|
-
user: `0x${string}`;
|
|
4076
|
-
}>;
|
|
4077
|
-
userValidatorBoostDeposited: Array<{
|
|
4078
|
-
__typename?: 'UserBoost';
|
|
4079
|
-
activeBoostAmount: string;
|
|
4080
|
-
user: `0x${string}`;
|
|
4081
|
-
}>;
|
|
4082
4089
|
};
|
|
4083
4090
|
type GetIncentiveFeeClaimStatsQueryVariables = Exact<{
|
|
4084
4091
|
[key: string]: never;
|
|
@@ -4122,6 +4129,7 @@ declare const BlockRewardStatsByValidator: _apollo_client.DocumentNode;
|
|
|
4122
4129
|
declare const StakingToken: _apollo_client.DocumentNode;
|
|
4123
4130
|
declare const GetValidatorBlockStats: _apollo_client.DocumentNode;
|
|
4124
4131
|
declare const GetValidatorAnalytics: _apollo_client.DocumentNode;
|
|
4132
|
+
declare const GetValidatorIncentiveDistribution: _apollo_client.DocumentNode;
|
|
4125
4133
|
declare const GetIncentiveFeeClaimStats: _apollo_client.DocumentNode;
|
|
4126
4134
|
interface PossibleTypesResultData {
|
|
4127
4135
|
possibleTypes: {
|
|
@@ -4130,4 +4138,4 @@ interface PossibleTypesResultData {
|
|
|
4130
4138
|
}
|
|
4131
4139
|
declare const result: PossibleTypesResultData;
|
|
4132
4140
|
|
|
4133
|
-
export { type ActiveIncentive, type ActiveIncentive_Filter, ActiveIncentive_OrderBy, Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type BlockReward, type BlockRewardStats, BlockRewardStatsByValidator, type BlockRewardStatsByValidatorFragment, type BlockRewardStatsByValidator_Filter, BlockRewardStatsByValidator_OrderBy, type BlockRewardStats_Filter, BlockRewardStats_OrderBy, type BlockReward_Filter, BlockReward_OrderBy, type BlockStats, type BlockStatsByValidator, type BlockStatsByValidator_Filter, BlockStatsByValidator_OrderBy, type BlockStats_Filter, BlockStats_OrderBy, type Block_Height, type Boost, BoostByValidator, type BoostByValidatorFragment, type BoostByValidator_Filter, BoostByValidator_OrderBy, type Boost_Filter, Boost_OrderBy, type Exact, GetIncentiveFeeClaimStats, type GetIncentiveFeeClaimStatsQuery, type GetIncentiveFeeClaimStatsQueryVariables, GetValidatorAnalytics, type GetValidatorAnalyticsQuery, type GetValidatorAnalyticsQueryVariables, GetValidatorBlockStats, type GetValidatorBlockStatsQuery, type GetValidatorBlockStatsQueryVariables, type GlobalInfo, type GlobalInfo_Filter, GlobalInfo_OrderBy, type GlobalRewardDistribution, type GlobalRewardDistribution_Filter, GlobalRewardDistribution_OrderBy, type IncentiveDistribution, type IncentiveDistributionByValidator, type IncentiveDistributionByValidator_Filter, IncentiveDistributionByValidator_OrderBy, type IncentiveDistributionByVault, type IncentiveDistributionByVault_Filter, IncentiveDistributionByVault_OrderBy, type IncentiveDistribution_Filter, IncentiveDistribution_OrderBy, type IncentiveFeeClaim, type IncentiveFeeClaimStats, type IncentiveFeeClaimStats_Filter, IncentiveFeeClaimStats_OrderBy, type IncentiveFeeClaim_Filter, IncentiveFeeClaim_OrderBy, type IncentiveFeePayoutAmountHistory, type IncentiveFeePayoutAmountHistory_Filter, IncentiveFeePayoutAmountHistory_OrderBy, type IncentiveTokensByValidator, type IncentiveTokensByValidator_Filter, IncentiveTokensByValidator_OrderBy, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryActiveIncentiveArgs, type QueryActiveIncentivesArgs, type QueryBlockRewardArgs, type QueryBlockRewardStatsByValidatorsArgs, type QueryBlockRewardStats_CollectionArgs, type QueryBlockRewardsArgs, type QueryBlockStatsByValidatorsArgs, type QueryBlockStats_CollectionArgs, type QueryBoostArgs, type QueryBoostByValidatorsArgs, type QueryBoostsArgs, type QueryGlobalInfoArgs, type QueryGlobalInfosArgs, type QueryGlobalRewardDistributionsArgs, type QueryIncentiveDistributionArgs, type QueryIncentiveDistributionByValidatorsArgs, type QueryIncentiveDistributionByVaultsArgs, type QueryIncentiveDistributionsArgs, type QueryIncentiveFeeClaimArgs, type QueryIncentiveFeeClaimStats_CollectionArgs, type QueryIncentiveFeeClaimsArgs, type QueryIncentiveFeePayoutAmountHistoriesArgs, type QueryIncentiveFeePayoutAmountHistoryArgs, type QueryIncentiveTokensByValidatorArgs, type QueryIncentiveTokensByValidatorsArgs, type QueryRewardAllocationActivationArgs, type QueryRewardAllocationActivationsArgs, type QueryRewardAllocationArgs, type QueryRewardAllocationMaxWeightHistoriesArgs, type QueryRewardAllocationMaxWeightHistoryArgs, type QueryRewardAllocationQueueArgs, type QueryRewardAllocationQueuesArgs, type QueryRewardAllocationWeightArgs, type QueryRewardAllocationWeightsArgs, type QueryRewardAllocationsArgs, type QueryRewardDistributionArgs, type QueryRewardDistributionByVaultsArgs, type QueryRewardDistributionsArgs, type QueryRewardsDistributionByValidatorsArgs, type QueryTokenInformationArgs, type QueryTokenInformationsArgs, type QueryUserBoostArgs, type QueryUserBoostsArgs, type QueryUserFeeHistoriesArgs, type QueryUserFeeHistoryArgs, type QueryUserVaultStakeArgs, type QueryUserVaultStakesArgs, type QueryValidatorArgs, type QueryValidatorCommissionHistoriesArgs, type QueryValidatorCommissionHistoryArgs, type QueryValidatorsArgs, type QueryVaultArgs, type QueryVaultsArgs, type QueryWhitelistedTokenArgs, type QueryWhitelistedTokensArgs, type Query_MetaArgs, type RewardAllocation, type RewardAllocationActivation, type RewardAllocationActivation_Filter, RewardAllocationActivation_OrderBy, type RewardAllocationActivationsArgs, type RewardAllocationMaxWeightHistory, type RewardAllocationMaxWeightHistory_Filter, RewardAllocationMaxWeightHistory_OrderBy, type RewardAllocationQueue, type RewardAllocationQueue_Filter, RewardAllocationQueue_OrderBy, type RewardAllocationQueuesArgs, type RewardAllocationWeight, type RewardAllocationWeight_Filter, RewardAllocationWeight_OrderBy, type RewardAllocationWeightsArgs, type RewardAllocation_Filter, RewardAllocation_OrderBy, type RewardDistribution, type RewardDistributionByVault, type RewardDistributionByVault_Filter, RewardDistributionByVault_OrderBy, type RewardDistribution_Filter, RewardDistribution_OrderBy, type RewardsDistributionByValidator, type RewardsDistributionByValidator_Filter, RewardsDistributionByValidator_OrderBy, type Scalars, StakingToken, type StakingTokenFragment, type TokenInformation, type TokenInformationActiveIncentivesArgs, type TokenInformationDistributedIncentivesArgs, type TokenInformationDistributedIncentivesByVaultArgs, type TokenInformationReceivedValidatorsArgs, type TokenInformationStakedVaultsArgs, type TokenInformationWhitelistedVaultsArgs, type TokenInformation_Filter, TokenInformation_OrderBy, type UserBoost, type UserBoost_Filter, UserBoost_OrderBy, type UserFeeHistory, type UserFeeHistory_Filter, UserFeeHistory_OrderBy, type UserVaultStake, type UserVaultStake_Filter, UserVaultStake_OrderBy, type Validator, type ValidatorBlockRewardsArgs, type ValidatorBoostHistoryArgs, type ValidatorBoostStatsArgs, type ValidatorCommissionHistory, type ValidatorCommissionHistory_Filter, ValidatorCommissionHistory_OrderBy, type ValidatorDistributedIncentivesArgs, ValidatorMinimal, type ValidatorMinimalFragment, type ValidatorReceivedIncentiveTokensArgs, type ValidatorRewardAllocationActivationHistoryArgs, type ValidatorRewardAllocationQueueHistoryArgs, type ValidatorUserBoostsArgs, type Validator_Filter, Validator_OrderBy, type Vault, type VaultActiveIncentivesArgs, type VaultDistributedIncentivesArgs, type VaultRewardAllocationWeightsArgs, type VaultStakedUsersArgs, type VaultWhitelistedTokensArgs, type Vault_Filter, Vault_OrderBy, type WhitelistedToken, type WhitelistedToken_Filter, WhitelistedToken_OrderBy, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
|
|
4141
|
+
export { type ActiveIncentive, type ActiveIncentive_Filter, ActiveIncentive_OrderBy, Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type BlockReward, type BlockRewardStats, BlockRewardStatsByValidator, type BlockRewardStatsByValidatorFragment, type BlockRewardStatsByValidator_Filter, BlockRewardStatsByValidator_OrderBy, type BlockRewardStats_Filter, BlockRewardStats_OrderBy, type BlockReward_Filter, BlockReward_OrderBy, type BlockStats, type BlockStatsByValidator, type BlockStatsByValidator_Filter, BlockStatsByValidator_OrderBy, type BlockStats_Filter, BlockStats_OrderBy, type Block_Height, type Boost, BoostByValidator, type BoostByValidatorFragment, type BoostByValidator_Filter, BoostByValidator_OrderBy, type Boost_Filter, Boost_OrderBy, type Exact, GetIncentiveFeeClaimStats, type GetIncentiveFeeClaimStatsQuery, type GetIncentiveFeeClaimStatsQueryVariables, GetValidatorAnalytics, type GetValidatorAnalyticsQuery, type GetValidatorAnalyticsQueryVariables, GetValidatorBlockStats, type GetValidatorBlockStatsQuery, type GetValidatorBlockStatsQueryVariables, GetValidatorIncentiveDistribution, type GetValidatorIncentiveDistributionQuery, type GetValidatorIncentiveDistributionQueryVariables, type GlobalInfo, type GlobalInfo_Filter, GlobalInfo_OrderBy, type GlobalRewardDistribution, type GlobalRewardDistribution_Filter, GlobalRewardDistribution_OrderBy, type IncentiveDistribution, type IncentiveDistributionByValidator, type IncentiveDistributionByValidator_Filter, IncentiveDistributionByValidator_OrderBy, type IncentiveDistributionByVault, type IncentiveDistributionByVault_Filter, IncentiveDistributionByVault_OrderBy, type IncentiveDistribution_Filter, IncentiveDistribution_OrderBy, type IncentiveFeeClaim, type IncentiveFeeClaimStats, type IncentiveFeeClaimStats_Filter, IncentiveFeeClaimStats_OrderBy, type IncentiveFeeClaim_Filter, IncentiveFeeClaim_OrderBy, type IncentiveFeePayoutAmountHistory, type IncentiveFeePayoutAmountHistory_Filter, IncentiveFeePayoutAmountHistory_OrderBy, type IncentiveTokensByValidator, type IncentiveTokensByValidator_Filter, IncentiveTokensByValidator_OrderBy, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryActiveIncentiveArgs, type QueryActiveIncentivesArgs, type QueryBlockRewardArgs, type QueryBlockRewardStatsByValidatorsArgs, type QueryBlockRewardStats_CollectionArgs, type QueryBlockRewardsArgs, type QueryBlockStatsByValidatorsArgs, type QueryBlockStats_CollectionArgs, type QueryBoostArgs, type QueryBoostByValidatorsArgs, type QueryBoostsArgs, type QueryGlobalInfoArgs, type QueryGlobalInfosArgs, type QueryGlobalRewardDistributionsArgs, type QueryIncentiveDistributionArgs, type QueryIncentiveDistributionByValidatorsArgs, type QueryIncentiveDistributionByVaultsArgs, type QueryIncentiveDistributionsArgs, type QueryIncentiveFeeClaimArgs, type QueryIncentiveFeeClaimStats_CollectionArgs, type QueryIncentiveFeeClaimsArgs, type QueryIncentiveFeePayoutAmountHistoriesArgs, type QueryIncentiveFeePayoutAmountHistoryArgs, type QueryIncentiveTokensByValidatorArgs, type QueryIncentiveTokensByValidatorsArgs, type QueryRewardAllocationActivationArgs, type QueryRewardAllocationActivationsArgs, type QueryRewardAllocationArgs, type QueryRewardAllocationMaxWeightHistoriesArgs, type QueryRewardAllocationMaxWeightHistoryArgs, type QueryRewardAllocationQueueArgs, type QueryRewardAllocationQueuesArgs, type QueryRewardAllocationWeightArgs, type QueryRewardAllocationWeightsArgs, type QueryRewardAllocationsArgs, type QueryRewardDistributionArgs, type QueryRewardDistributionByVaultsArgs, type QueryRewardDistributionsArgs, type QueryRewardsDistributionByValidatorsArgs, type QueryTokenInformationArgs, type QueryTokenInformationsArgs, type QueryUserBoostArgs, type QueryUserBoostsArgs, type QueryUserFeeHistoriesArgs, type QueryUserFeeHistoryArgs, type QueryUserVaultStakeArgs, type QueryUserVaultStakesArgs, type QueryValidatorArgs, type QueryValidatorCommissionHistoriesArgs, type QueryValidatorCommissionHistoryArgs, type QueryValidatorsArgs, type QueryVaultArgs, type QueryVaultsArgs, type QueryWhitelistedTokenArgs, type QueryWhitelistedTokensArgs, type Query_MetaArgs, type RewardAllocation, type RewardAllocationActivation, type RewardAllocationActivation_Filter, RewardAllocationActivation_OrderBy, type RewardAllocationActivationsArgs, type RewardAllocationMaxWeightHistory, type RewardAllocationMaxWeightHistory_Filter, RewardAllocationMaxWeightHistory_OrderBy, type RewardAllocationQueue, type RewardAllocationQueue_Filter, RewardAllocationQueue_OrderBy, type RewardAllocationQueuesArgs, type RewardAllocationWeight, type RewardAllocationWeight_Filter, RewardAllocationWeight_OrderBy, type RewardAllocationWeightsArgs, type RewardAllocation_Filter, RewardAllocation_OrderBy, type RewardDistribution, type RewardDistributionByVault, type RewardDistributionByVault_Filter, RewardDistributionByVault_OrderBy, type RewardDistribution_Filter, RewardDistribution_OrderBy, type RewardsDistributionByValidator, type RewardsDistributionByValidator_Filter, RewardsDistributionByValidator_OrderBy, type Scalars, StakingToken, type StakingTokenFragment, type TokenInformation, type TokenInformationActiveIncentivesArgs, type TokenInformationDistributedIncentivesArgs, type TokenInformationDistributedIncentivesByVaultArgs, type TokenInformationReceivedValidatorsArgs, type TokenInformationStakedVaultsArgs, type TokenInformationWhitelistedVaultsArgs, type TokenInformation_Filter, TokenInformation_OrderBy, type UserBoost, type UserBoost_Filter, UserBoost_OrderBy, type UserFeeHistory, type UserFeeHistory_Filter, UserFeeHistory_OrderBy, type UserVaultStake, type UserVaultStake_Filter, UserVaultStake_OrderBy, type Validator, type ValidatorBlockRewardsArgs, type ValidatorBoostHistoryArgs, type ValidatorBoostStatsArgs, type ValidatorCommissionHistory, type ValidatorCommissionHistory_Filter, ValidatorCommissionHistory_OrderBy, type ValidatorDistributedIncentivesArgs, ValidatorMinimal, type ValidatorMinimalFragment, type ValidatorReceivedIncentiveTokensArgs, type ValidatorRewardAllocationActivationHistoryArgs, type ValidatorRewardAllocationQueueHistoryArgs, type ValidatorUserBoostsArgs, type Validator_Filter, Validator_OrderBy, type Vault, type VaultActiveIncentivesArgs, type VaultDistributedIncentivesArgs, type VaultRewardAllocationWeightsArgs, type VaultStakedUsersArgs, type VaultWhitelistedTokensArgs, type Vault_Filter, Vault_OrderBy, type WhitelistedToken, type WhitelistedToken_Filter, WhitelistedToken_OrderBy, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
|
|
@@ -759,17 +759,6 @@ var GetValidatorAnalytics = gql`
|
|
|
759
759
|
) {
|
|
760
760
|
...BlockRewardStatsByValidator
|
|
761
761
|
}
|
|
762
|
-
incentiveDistributionByValidators(
|
|
763
|
-
interval: day
|
|
764
|
-
first: 1000
|
|
765
|
-
where: {validator_: {publicKey: $pubKey}, timestamp_gte: $timestamp}
|
|
766
|
-
) {
|
|
767
|
-
token {
|
|
768
|
-
...StakingToken
|
|
769
|
-
}
|
|
770
|
-
receivedTokenAmount
|
|
771
|
-
timestamp
|
|
772
|
-
}
|
|
773
762
|
userValidatorBoostQueued: userBoosts(
|
|
774
763
|
first: 10
|
|
775
764
|
where: {validator_: {publicKey: $pubKey}, queuedBoostAmount_gt: "0"}
|
|
@@ -790,8 +779,22 @@ var GetValidatorAnalytics = gql`
|
|
|
790
779
|
}
|
|
791
780
|
}
|
|
792
781
|
${BoostByValidator}
|
|
793
|
-
${BlockRewardStatsByValidator}
|
|
794
|
-
|
|
782
|
+
${BlockRewardStatsByValidator}`;
|
|
783
|
+
var GetValidatorIncentiveDistribution = gql`
|
|
784
|
+
query GetValidatorIncentiveDistribution($pubKey: Bytes!, $timestamp: Timestamp!) {
|
|
785
|
+
incentiveDistributionByValidators(
|
|
786
|
+
interval: day
|
|
787
|
+
first: 1000
|
|
788
|
+
where: {validator_: {publicKey: $pubKey}, timestamp_gte: $timestamp}
|
|
789
|
+
) {
|
|
790
|
+
token {
|
|
791
|
+
...StakingToken
|
|
792
|
+
}
|
|
793
|
+
receivedTokenAmount
|
|
794
|
+
timestamp
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
${StakingToken}`;
|
|
795
798
|
var GetIncentiveFeeClaimStats = gql`
|
|
796
799
|
query GetIncentiveFeeClaimStats {
|
|
797
800
|
incentiveFeeClaims {
|
|
@@ -821,6 +824,7 @@ export {
|
|
|
821
824
|
GetIncentiveFeeClaimStats,
|
|
822
825
|
GetValidatorAnalytics,
|
|
823
826
|
GetValidatorBlockStats,
|
|
827
|
+
GetValidatorIncentiveDistribution,
|
|
824
828
|
GlobalInfo_OrderBy,
|
|
825
829
|
GlobalRewardDistribution_OrderBy,
|
|
826
830
|
IncentiveDistributionByValidator_OrderBy,
|