@berachain/graphql 0.4.8-beta.2 → 0.4.9-0

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.
@@ -2129,87 +2129,6 @@ type HookData = {
2129
2129
  removeLiquidityFeePercentage?: Maybe<Scalars['String']['output']>;
2130
2130
  swapFeePercentage?: Maybe<Scalars['String']['output']>;
2131
2131
  };
2132
- type Mutation = {
2133
- __typename?: 'Mutation';
2134
- cacheAverageBlockTime: Scalars['String']['output'];
2135
- polSyncAllRewardVaultsFromSubgraph: Array<Scalars['String']['output']>;
2136
- polSyncAllValidatorsFromSubgraph: Array<Scalars['String']['output']>;
2137
- poolDeletePool: Scalars['String']['output'];
2138
- poolInitOnChainDataForAllPools: Scalars['String']['output'];
2139
- poolInitializeSnapshotsForPool: Scalars['String']['output'];
2140
- poolLoadOnChainDataForAllPools: Scalars['String']['output'];
2141
- poolLoadOnChainDataForPoolsWithActiveUpdates: Scalars['String']['output'];
2142
- poolLoadSnapshotsForAllPools: Scalars['String']['output'];
2143
- poolLoadSnapshotsForPools: Scalars['String']['output'];
2144
- poolReloadAllPoolAprs: Scalars['String']['output'];
2145
- poolReloadAllTokenNestedPoolIds: Scalars['String']['output'];
2146
- poolSyncAllPoolsFromSubgraph: Array<Scalars['String']['output']>;
2147
- poolSyncLatestSnapshotsForAllPools: Scalars['String']['output'];
2148
- poolSyncNewPoolsFromSubgraph: Array<Scalars['String']['output']>;
2149
- poolSyncPool: Scalars['String']['output'];
2150
- poolSyncPoolAllTokensRelationship: Scalars['String']['output'];
2151
- poolSyncSanityPoolData: Scalars['String']['output'];
2152
- poolSyncSwapsForLast48Hours: Scalars['String']['output'];
2153
- poolSyncTotalShares: Scalars['String']['output'];
2154
- poolUpdateAprs: Scalars['String']['output'];
2155
- poolUpdateLifetimeValuesForAllPools: Scalars['String']['output'];
2156
- poolUpdateLiquidity24hAgoForAllPools: Scalars['String']['output'];
2157
- poolUpdateLiquidityValuesForAllPools: Scalars['String']['output'];
2158
- poolUpdateVolumeAndFeeValuesForAllPools: Scalars['String']['output'];
2159
- protocolCacheMetrics: Scalars['String']['output'];
2160
- tokenDeleteTokenType: Scalars['String']['output'];
2161
- tokenReloadAllTokenTypes: Scalars['String']['output'];
2162
- tokenReloadErc4626Tokens: Array<GqlTokenMutationResult>;
2163
- tokenReloadTokenPrices?: Maybe<Scalars['Boolean']['output']>;
2164
- tokenSyncLatestFxPrices: Scalars['String']['output'];
2165
- tokenSyncTokenDefinitions: Scalars['String']['output'];
2166
- userInitWalletBalancesForAllPools: Scalars['String']['output'];
2167
- userInitWalletBalancesForPool: Scalars['String']['output'];
2168
- userSyncBalance: Scalars['String']['output'];
2169
- userSyncBalanceAllPools: Scalars['String']['output'];
2170
- userSyncChangedWalletBalancesForAllPools: Scalars['String']['output'];
2171
- };
2172
- type MutationPoolDeletePoolArgs = {
2173
- poolId: Scalars['String']['input'];
2174
- };
2175
- type MutationPoolInitializeSnapshotsForPoolArgs = {
2176
- poolId: Scalars['String']['input'];
2177
- };
2178
- type MutationPoolLoadSnapshotsForPoolsArgs = {
2179
- poolIds: Array<Scalars['String']['input']>;
2180
- reload?: InputMaybe<Scalars['Boolean']['input']>;
2181
- };
2182
- type MutationPoolReloadAllPoolAprsArgs = {
2183
- chain: GqlChain;
2184
- };
2185
- type MutationPoolSyncLatestSnapshotsForAllPoolsArgs = {
2186
- chain: GqlChain;
2187
- };
2188
- type MutationPoolSyncPoolArgs = {
2189
- poolId: Scalars['String']['input'];
2190
- };
2191
- type MutationPoolUpdateAprsArgs = {
2192
- chain: GqlChain;
2193
- };
2194
- type MutationTokenDeleteTokenTypeArgs = {
2195
- tokenAddress: Scalars['String']['input'];
2196
- type: GqlTokenType;
2197
- };
2198
- type MutationTokenReloadErc4626TokensArgs = {
2199
- chains: Array<GqlChain>;
2200
- };
2201
- type MutationTokenReloadTokenPricesArgs = {
2202
- chains: Array<GqlChain>;
2203
- };
2204
- type MutationTokenSyncLatestFxPricesArgs = {
2205
- chain: GqlChain;
2206
- };
2207
- type MutationUserInitWalletBalancesForPoolArgs = {
2208
- poolId: Scalars['String']['input'];
2209
- };
2210
- type MutationUserSyncBalanceArgs = {
2211
- poolId: Scalars['String']['input'];
2212
- };
2213
2132
  type PaginatedRewardVaultIncentivesResponse = {
2214
2133
  __typename?: 'PaginatedRewardVaultIncentivesResponse';
2215
2134
  incentives: Array<GqlRewardVaultIncentive>;
@@ -2554,6 +2473,21 @@ type Token = {
2554
2473
  type ApiVaultIncentiveFragment = {
2555
2474
  __typename?: 'GqlRewardVaultIncentive';
2556
2475
  active: boolean;
2476
+ tokenAddress: `0x${string}`;
2477
+ remainingAmount: string;
2478
+ remainingAmountUsd: string;
2479
+ incentiveRate: string;
2480
+ incentiveRateUsd: string;
2481
+ token: {
2482
+ __typename?: 'GqlToken';
2483
+ address: `0x${string}`;
2484
+ name: string;
2485
+ symbol: string;
2486
+ decimals: number;
2487
+ };
2488
+ };
2489
+ type ApiMinimalVaultIncentiveFragment = {
2490
+ __typename?: 'GqlRewardVaultIncentive';
2557
2491
  remainingAmount: string;
2558
2492
  remainingAmountUsd: string;
2559
2493
  incentiveRate: string;
@@ -2605,11 +2539,11 @@ type ApiVaultFragment = {
2605
2539
  activeIncentives: Array<{
2606
2540
  __typename?: 'GqlRewardVaultIncentive';
2607
2541
  active: boolean;
2542
+ tokenAddress: `0x${string}`;
2608
2543
  remainingAmount: string;
2609
2544
  remainingAmountUsd: string;
2610
2545
  incentiveRate: string;
2611
2546
  incentiveRateUsd: string;
2612
- tokenAddress: `0x${string}`;
2613
2547
  token: {
2614
2548
  __typename?: 'GqlToken';
2615
2549
  address: `0x${string}`;
@@ -2674,11 +2608,11 @@ type GetVaultsQuery = {
2674
2608
  activeIncentives: Array<{
2675
2609
  __typename?: 'GqlRewardVaultIncentive';
2676
2610
  active: boolean;
2611
+ tokenAddress: `0x${string}`;
2677
2612
  remainingAmount: string;
2678
2613
  remainingAmountUsd: string;
2679
2614
  incentiveRate: string;
2680
2615
  incentiveRateUsd: string;
2681
- tokenAddress: `0x${string}`;
2682
2616
  token: {
2683
2617
  __typename?: 'GqlToken';
2684
2618
  address: `0x${string}`;
@@ -2765,17 +2699,97 @@ type ApiValidatorFragment = {
2765
2699
  activeIncentives: Array<{
2766
2700
  __typename?: 'GqlRewardVaultIncentive';
2767
2701
  active: boolean;
2702
+ tokenAddress: `0x${string}`;
2703
+ remainingAmount: string;
2704
+ remainingAmountUsd: string;
2705
+ incentiveRate: string;
2706
+ incentiveRateUsd: string;
2707
+ token: {
2708
+ __typename?: 'GqlToken';
2709
+ address: `0x${string}`;
2710
+ name: string;
2711
+ symbol: string;
2712
+ decimals: number;
2713
+ };
2714
+ }>;
2715
+ } | null;
2716
+ }>;
2717
+ lastBlockUptime?: {
2718
+ __typename?: 'GqlValidatorBlockUptime';
2719
+ isActive: boolean;
2720
+ isProposer: boolean;
2721
+ isSigner: boolean;
2722
+ status: GqlValidatorBlockUptimeStatus;
2723
+ blockNumber: number;
2724
+ } | null;
2725
+ metadata?: {
2726
+ __typename?: 'GqlValidatorMetadata';
2727
+ name: string;
2728
+ logoURI: string;
2729
+ website: string;
2730
+ description: string;
2731
+ } | null;
2732
+ dynamicData?: {
2733
+ __typename?: 'GqlValidatorDynamicData';
2734
+ activeBoostAmount: string;
2735
+ usersActiveBoostCount: number;
2736
+ queuedBoostAmount: string;
2737
+ usersQueuedBoostCount: number;
2738
+ allTimeDistributedBGTAmount: string;
2739
+ rewardRate: string;
2740
+ stakedBeraAmount: string;
2741
+ lastDayDistributedBGTAmount: string;
2742
+ activeBoostAmountRank: number;
2743
+ boostApr: number;
2744
+ commissionOnIncentives: number;
2745
+ } | null;
2746
+ };
2747
+ type ApiValidatorRewardAllocationWeightFragment = {
2748
+ __typename?: 'GqlValidatorRewardAllocationWeight';
2749
+ percentage: number;
2750
+ receivingVault?: {
2751
+ __typename?: 'GqlRewardVault';
2752
+ activeIncentives: Array<{
2753
+ __typename?: 'GqlRewardVaultIncentive';
2754
+ remainingAmount: string;
2755
+ remainingAmountUsd: string;
2756
+ incentiveRate: string;
2757
+ incentiveRateUsd: string;
2758
+ token: {
2759
+ __typename?: 'GqlToken';
2760
+ address: `0x${string}`;
2761
+ name: string;
2762
+ symbol: string;
2763
+ decimals: number;
2764
+ logoURI?: string | null;
2765
+ };
2766
+ }>;
2767
+ } | null;
2768
+ };
2769
+ type ApiValidatorInListFragment = {
2770
+ __typename?: 'GqlValidator';
2771
+ operator?: `0x${string}` | null;
2772
+ id: `0x${string}`;
2773
+ pubkey: `0x${string}`;
2774
+ rewardAllocator?: `0x${string}` | null;
2775
+ rewardAllocationWeights: Array<{
2776
+ __typename?: 'GqlValidatorRewardAllocationWeight';
2777
+ percentage: number;
2778
+ receivingVault?: {
2779
+ __typename?: 'GqlRewardVault';
2780
+ activeIncentives: Array<{
2781
+ __typename?: 'GqlRewardVaultIncentive';
2768
2782
  remainingAmount: string;
2769
2783
  remainingAmountUsd: string;
2770
2784
  incentiveRate: string;
2771
2785
  incentiveRateUsd: string;
2772
- tokenAddress: `0x${string}`;
2773
2786
  token: {
2774
2787
  __typename?: 'GqlToken';
2775
2788
  address: `0x${string}`;
2776
2789
  name: string;
2777
2790
  symbol: string;
2778
2791
  decimals: number;
2792
+ logoURI?: string | null;
2779
2793
  };
2780
2794
  }>;
2781
2795
  } | null;
@@ -2853,11 +2867,11 @@ type ApiRewardAllocationWeightFragment = {
2853
2867
  activeIncentives: Array<{
2854
2868
  __typename?: 'GqlRewardVaultIncentive';
2855
2869
  active: boolean;
2870
+ tokenAddress: `0x${string}`;
2856
2871
  remainingAmount: string;
2857
2872
  remainingAmountUsd: string;
2858
2873
  incentiveRate: string;
2859
2874
  incentiveRateUsd: string;
2860
- tokenAddress: `0x${string}`;
2861
2875
  token: {
2862
2876
  __typename?: 'GqlToken';
2863
2877
  address: `0x${string}`;
@@ -2931,11 +2945,11 @@ type GetValidatorQuery = {
2931
2945
  activeIncentives: Array<{
2932
2946
  __typename?: 'GqlRewardVaultIncentive';
2933
2947
  active: boolean;
2948
+ tokenAddress: `0x${string}`;
2934
2949
  remainingAmount: string;
2935
2950
  remainingAmountUsd: string;
2936
2951
  incentiveRate: string;
2937
2952
  incentiveRateUsd: string;
2938
- tokenAddress: `0x${string}`;
2939
2953
  token: {
2940
2954
  __typename?: 'GqlToken';
2941
2955
  address: `0x${string}`;
@@ -3054,11 +3068,11 @@ type GetValidatorsQuery = {
3054
3068
  activeIncentives: Array<{
3055
3069
  __typename?: 'GqlRewardVaultIncentive';
3056
3070
  active: boolean;
3071
+ tokenAddress: `0x${string}`;
3057
3072
  remainingAmount: string;
3058
3073
  remainingAmountUsd: string;
3059
3074
  incentiveRate: string;
3060
3075
  incentiveRateUsd: string;
3061
- tokenAddress: `0x${string}`;
3062
3076
  token: {
3063
3077
  __typename?: 'GqlToken';
3064
3078
  address: `0x${string}`;
@@ -3164,11 +3178,11 @@ type GetVaultValidatorsQuery = {
3164
3178
  activeIncentives: Array<{
3165
3179
  __typename?: 'GqlRewardVaultIncentive';
3166
3180
  active: boolean;
3181
+ tokenAddress: `0x${string}`;
3167
3182
  remainingAmount: string;
3168
3183
  remainingAmountUsd: string;
3169
3184
  incentiveRate: string;
3170
3185
  incentiveRateUsd: string;
3171
- tokenAddress: `0x${string}`;
3172
3186
  token: {
3173
3187
  __typename?: 'GqlToken';
3174
3188
  address: `0x${string}`;
@@ -3255,11 +3269,11 @@ type GetRewardVaultQuery = {
3255
3269
  activeIncentives: Array<{
3256
3270
  __typename?: 'GqlRewardVaultIncentive';
3257
3271
  active: boolean;
3272
+ tokenAddress: `0x${string}`;
3258
3273
  remainingAmount: string;
3259
3274
  remainingAmountUsd: string;
3260
3275
  incentiveRate: string;
3261
3276
  incentiveRateUsd: string;
3262
- tokenAddress: `0x${string}`;
3263
3277
  token: {
3264
3278
  __typename?: 'GqlToken';
3265
3279
  address: `0x${string}`;
@@ -3385,11 +3399,11 @@ type GetUserVaultsQuery = {
3385
3399
  activeIncentives: Array<{
3386
3400
  __typename?: 'GqlRewardVaultIncentive';
3387
3401
  active: boolean;
3402
+ tokenAddress: `0x${string}`;
3388
3403
  remainingAmount: string;
3389
3404
  remainingAmountUsd: string;
3390
3405
  incentiveRate: string;
3391
3406
  incentiveRateUsd: string;
3392
- tokenAddress: `0x${string}`;
3393
3407
  token: {
3394
3408
  __typename?: 'GqlToken';
3395
3409
  address: `0x${string}`;
@@ -3472,11 +3486,14 @@ type GetUserValidatorInformationQuery = {
3472
3486
  }>;
3473
3487
  };
3474
3488
  };
3489
+ declare const ApiMinimalVaultIncentive: _apollo_client.DocumentNode;
3475
3490
  declare const ApiValidatorMinimal: _apollo_client.DocumentNode;
3476
3491
  declare const ApiVaultIncentive: _apollo_client.DocumentNode;
3477
3492
  declare const ApiVault: _apollo_client.DocumentNode;
3478
3493
  declare const ApiRewardAllocationWeight: _apollo_client.DocumentNode;
3479
3494
  declare const ApiValidator: _apollo_client.DocumentNode;
3495
+ declare const ApiValidatorRewardAllocationWeight: _apollo_client.DocumentNode;
3496
+ declare const ApiValidatorInList: _apollo_client.DocumentNode;
3480
3497
  declare const ApiValidatorBlockUptime: _apollo_client.DocumentNode;
3481
3498
  declare const GetVaults: _apollo_client.DocumentNode;
3482
3499
  declare const GetValidator: _apollo_client.DocumentNode;
@@ -3496,4 +3513,4 @@ interface PossibleTypesResultData {
3496
3513
  }
3497
3514
  declare const result: PossibleTypesResultData;
3498
3515
 
3499
- export { ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, 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 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 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 GqlValidatorInList, 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 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 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 QueryTokenGetCandlestickChartDataArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetPriceChartDataArgs, type QueryTokenGetProtocolTokenPriceArgs, type QueryTokenGetRelativePriceChartDataArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, type Scalars, type Token, result as default };
3516
+ export { ApiMinimalVaultIncentive, type ApiMinimalVaultIncentiveFragment, ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorInList, type ApiValidatorInListFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiValidatorRewardAllocationWeight, type ApiValidatorRewardAllocationWeightFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, 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 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 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 GqlValidatorInList, 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 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 QueryTokenGetCandlestickChartDataArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetPriceChartDataArgs, type QueryTokenGetProtocolTokenPriceArgs, type QueryTokenGetRelativePriceChartDataArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, type Scalars, type Token, result as default };