@berachain/graphql 0.1.0-alpha.9 → 0.1.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.
@@ -1,4 +1,4 @@
1
- import * as _apollo_client from '@apollo/client';
1
+ import * as graphql from 'graphql';
2
2
 
3
3
  type Maybe<T> = T | null;
4
4
  type InputMaybe<T> = Maybe<T>;
@@ -1373,17 +1373,17 @@ type GqlRewardVaultDynamicData = {
1373
1373
  activeIncentivesRateUsd: Scalars['String']['output'];
1374
1374
  activeIncentivesValueUsd: Scalars['String']['output'];
1375
1375
  allTimeReceivedBGTAmount: Scalars['String']['output'];
1376
- apr?: Maybe<Scalars['String']['output']>;
1376
+ apr?: Maybe<Scalars['Float']['output']>;
1377
1377
  /** @deprecated Use apr instead */
1378
- apy?: Maybe<Scalars['String']['output']>;
1378
+ apy?: Maybe<Scalars['Float']['output']>;
1379
1379
  bgtCapturePerBlock: Scalars['String']['output'];
1380
1380
  bgtCapturePercentage: Scalars['String']['output'];
1381
1381
  chain: GqlChain;
1382
1382
  lastDayReceivedBGTAmount: Scalars['String']['output'];
1383
- projectedApr?: Maybe<Scalars['String']['output']>;
1383
+ projectedApr?: Maybe<Scalars['Float']['output']>;
1384
1384
  /** @deprecated Use projectedApr instead */
1385
- projectedApy?: Maybe<Scalars['String']['output']>;
1386
- tvl: Scalars['String']['output'];
1385
+ projectedApy?: Maybe<Scalars['Float']['output']>;
1386
+ tvl?: Maybe<Scalars['Float']['output']>;
1387
1387
  vaultAddress: Scalars['String']['output'];
1388
1388
  };
1389
1389
  type GqlRewardVaultFilter = {
@@ -1655,6 +1655,11 @@ declare enum GqlSorSwapType {
1655
1655
  ExactIn = "EXACT_IN",
1656
1656
  ExactOut = "EXACT_OUT"
1657
1657
  }
1658
+ type GqlStakeBeraVaultEarnings = {
1659
+ __typename?: 'GqlStakeBeraVaultEarnings';
1660
+ earnings: Scalars['String']['output'];
1661
+ owner: Scalars['String']['output'];
1662
+ };
1658
1663
  type GqlStakeBeraVaultEvent = {
1659
1664
  __typename?: 'GqlStakeBeraVaultEvent';
1660
1665
  _from: Scalars['String']['output'];
@@ -1940,7 +1945,7 @@ type GqlValidatorDynamicData = {
1940
1945
  apy: Scalars['String']['output'];
1941
1946
  bgtCapturePerBlock: Scalars['String']['output'];
1942
1947
  bgtCapturePercentage: Scalars['String']['output'];
1943
- boostApr: Scalars['String']['output'];
1948
+ boostApr: Scalars['Float']['output'];
1944
1949
  chain: GqlChain;
1945
1950
  commissionOnIncentives: Scalars['Int']['output'];
1946
1951
  commissionOnIncentivesHistory: Array<GqlValidatorCommissionHistory>;
@@ -2192,6 +2197,7 @@ type Query = {
2192
2197
  polGetRewardVaults: PaginatedRewardVaultsResponse;
2193
2198
  polGetSWberaVaultMetadata: GqlSWberaVaultMetadata;
2194
2199
  polGetSWberaVaultSnapshots: Array<GqlSWberaVaultSnapshot>;
2200
+ polGetStakeBeraVaultEarningsByOwner: GqlStakeBeraVaultEarnings;
2195
2201
  polGetStakeBeraVaultEventsByOwner: Array<GqlStakeBeraVaultEvent>;
2196
2202
  polGetTopVaultDeposits: Array<GqlUserVaultDepositMinimal>;
2197
2203
  polGetUserVaultDeposits: PaginatedUserVaultDepositsResponse;
@@ -2340,6 +2346,9 @@ type QueryPolGetSWberaVaultSnapshotsArgs = {
2340
2346
  chain: GqlChain;
2341
2347
  range?: InputMaybe<GqlVaultSnapshotDataRange>;
2342
2348
  };
2349
+ type QueryPolGetStakeBeraVaultEarningsByOwnerArgs = {
2350
+ owner: Scalars['String']['input'];
2351
+ };
2343
2352
  type QueryPolGetStakeBeraVaultEventsByOwnerArgs = {
2344
2353
  owner: Scalars['String']['input'];
2345
2354
  };
@@ -2573,7 +2582,7 @@ type RewardVaultFragment = {
2573
2582
  dynamicData?: {
2574
2583
  __typename?: 'GqlRewardVaultDynamicData';
2575
2584
  activeIncentivesValueUsd: string;
2576
- apr?: string | null;
2585
+ apr?: number | null;
2577
2586
  bgtCapturePercentage: string;
2578
2587
  allTimeReceivedBGTAmount: string;
2579
2588
  } | null;
@@ -2639,7 +2648,7 @@ type MinimalPoolInListFragment = {
2639
2648
  dynamicData?: {
2640
2649
  __typename?: 'GqlRewardVaultDynamicData';
2641
2650
  activeIncentivesValueUsd: string;
2642
- apr?: string | null;
2651
+ apr?: number | null;
2643
2652
  bgtCapturePercentage: string;
2644
2653
  allTimeReceivedBGTAmount: string;
2645
2654
  } | null;
@@ -2689,7 +2698,7 @@ type MinimalPool_GqlPoolComposableStable_Fragment = {
2689
2698
  dynamicData?: {
2690
2699
  __typename?: 'GqlRewardVaultDynamicData';
2691
2700
  activeIncentivesValueUsd: string;
2692
- apr?: string | null;
2701
+ apr?: number | null;
2693
2702
  bgtCapturePercentage: string;
2694
2703
  allTimeReceivedBGTAmount: string;
2695
2704
  } | null;
@@ -2739,7 +2748,7 @@ type MinimalPool_GqlPoolElement_Fragment = {
2739
2748
  dynamicData?: {
2740
2749
  __typename?: 'GqlRewardVaultDynamicData';
2741
2750
  activeIncentivesValueUsd: string;
2742
- apr?: string | null;
2751
+ apr?: number | null;
2743
2752
  bgtCapturePercentage: string;
2744
2753
  allTimeReceivedBGTAmount: string;
2745
2754
  } | null;
@@ -2789,7 +2798,7 @@ type MinimalPool_GqlPoolFx_Fragment = {
2789
2798
  dynamicData?: {
2790
2799
  __typename?: 'GqlRewardVaultDynamicData';
2791
2800
  activeIncentivesValueUsd: string;
2792
- apr?: string | null;
2801
+ apr?: number | null;
2793
2802
  bgtCapturePercentage: string;
2794
2803
  allTimeReceivedBGTAmount: string;
2795
2804
  } | null;
@@ -2839,7 +2848,7 @@ type MinimalPool_GqlPoolGyro_Fragment = {
2839
2848
  dynamicData?: {
2840
2849
  __typename?: 'GqlRewardVaultDynamicData';
2841
2850
  activeIncentivesValueUsd: string;
2842
- apr?: string | null;
2851
+ apr?: number | null;
2843
2852
  bgtCapturePercentage: string;
2844
2853
  allTimeReceivedBGTAmount: string;
2845
2854
  } | null;
@@ -2889,7 +2898,7 @@ type MinimalPool_GqlPoolLiquidityBootstrapping_Fragment = {
2889
2898
  dynamicData?: {
2890
2899
  __typename?: 'GqlRewardVaultDynamicData';
2891
2900
  activeIncentivesValueUsd: string;
2892
- apr?: string | null;
2901
+ apr?: number | null;
2893
2902
  bgtCapturePercentage: string;
2894
2903
  allTimeReceivedBGTAmount: string;
2895
2904
  } | null;
@@ -2939,7 +2948,7 @@ type MinimalPool_GqlPoolMetaStable_Fragment = {
2939
2948
  dynamicData?: {
2940
2949
  __typename?: 'GqlRewardVaultDynamicData';
2941
2950
  activeIncentivesValueUsd: string;
2942
- apr?: string | null;
2951
+ apr?: number | null;
2943
2952
  bgtCapturePercentage: string;
2944
2953
  allTimeReceivedBGTAmount: string;
2945
2954
  } | null;
@@ -2989,7 +2998,7 @@ type MinimalPool_GqlPoolStable_Fragment = {
2989
2998
  dynamicData?: {
2990
2999
  __typename?: 'GqlRewardVaultDynamicData';
2991
3000
  activeIncentivesValueUsd: string;
2992
- apr?: string | null;
3001
+ apr?: number | null;
2993
3002
  bgtCapturePercentage: string;
2994
3003
  allTimeReceivedBGTAmount: string;
2995
3004
  } | null;
@@ -3039,7 +3048,7 @@ type MinimalPool_GqlPoolWeighted_Fragment = {
3039
3048
  dynamicData?: {
3040
3049
  __typename?: 'GqlRewardVaultDynamicData';
3041
3050
  activeIncentivesValueUsd: string;
3042
- apr?: string | null;
3051
+ apr?: number | null;
3043
3052
  bgtCapturePercentage: string;
3044
3053
  allTimeReceivedBGTAmount: string;
3045
3054
  } | null;
@@ -3104,7 +3113,7 @@ type GetPoolsQuery = {
3104
3113
  dynamicData?: {
3105
3114
  __typename?: 'GqlRewardVaultDynamicData';
3106
3115
  activeIncentivesValueUsd: string;
3107
- apr?: string | null;
3116
+ apr?: number | null;
3108
3117
  bgtCapturePercentage: string;
3109
3118
  allTimeReceivedBGTAmount: string;
3110
3119
  } | null;
@@ -3162,7 +3171,7 @@ type GetPoolQuery = {
3162
3171
  dynamicData?: {
3163
3172
  __typename?: 'GqlRewardVaultDynamicData';
3164
3173
  activeIncentivesValueUsd: string;
3165
- apr?: string | null;
3174
+ apr?: number | null;
3166
3175
  bgtCapturePercentage: string;
3167
3176
  allTimeReceivedBGTAmount: string;
3168
3177
  } | null;
@@ -3211,7 +3220,7 @@ type GetPoolQuery = {
3211
3220
  dynamicData?: {
3212
3221
  __typename?: 'GqlRewardVaultDynamicData';
3213
3222
  activeIncentivesValueUsd: string;
3214
- apr?: string | null;
3223
+ apr?: number | null;
3215
3224
  bgtCapturePercentage: string;
3216
3225
  allTimeReceivedBGTAmount: string;
3217
3226
  } | null;
@@ -3260,7 +3269,7 @@ type GetPoolQuery = {
3260
3269
  dynamicData?: {
3261
3270
  __typename?: 'GqlRewardVaultDynamicData';
3262
3271
  activeIncentivesValueUsd: string;
3263
- apr?: string | null;
3272
+ apr?: number | null;
3264
3273
  bgtCapturePercentage: string;
3265
3274
  allTimeReceivedBGTAmount: string;
3266
3275
  } | null;
@@ -3309,7 +3318,7 @@ type GetPoolQuery = {
3309
3318
  dynamicData?: {
3310
3319
  __typename?: 'GqlRewardVaultDynamicData';
3311
3320
  activeIncentivesValueUsd: string;
3312
- apr?: string | null;
3321
+ apr?: number | null;
3313
3322
  bgtCapturePercentage: string;
3314
3323
  allTimeReceivedBGTAmount: string;
3315
3324
  } | null;
@@ -3358,7 +3367,7 @@ type GetPoolQuery = {
3358
3367
  dynamicData?: {
3359
3368
  __typename?: 'GqlRewardVaultDynamicData';
3360
3369
  activeIncentivesValueUsd: string;
3361
- apr?: string | null;
3370
+ apr?: number | null;
3362
3371
  bgtCapturePercentage: string;
3363
3372
  allTimeReceivedBGTAmount: string;
3364
3373
  } | null;
@@ -3407,7 +3416,7 @@ type GetPoolQuery = {
3407
3416
  dynamicData?: {
3408
3417
  __typename?: 'GqlRewardVaultDynamicData';
3409
3418
  activeIncentivesValueUsd: string;
3410
- apr?: string | null;
3419
+ apr?: number | null;
3411
3420
  bgtCapturePercentage: string;
3412
3421
  allTimeReceivedBGTAmount: string;
3413
3422
  } | null;
@@ -3456,7 +3465,7 @@ type GetPoolQuery = {
3456
3465
  dynamicData?: {
3457
3466
  __typename?: 'GqlRewardVaultDynamicData';
3458
3467
  activeIncentivesValueUsd: string;
3459
- apr?: string | null;
3468
+ apr?: number | null;
3460
3469
  bgtCapturePercentage: string;
3461
3470
  allTimeReceivedBGTAmount: string;
3462
3471
  } | null;
@@ -3505,7 +3514,7 @@ type GetPoolQuery = {
3505
3514
  dynamicData?: {
3506
3515
  __typename?: 'GqlRewardVaultDynamicData';
3507
3516
  activeIncentivesValueUsd: string;
3508
- apr?: string | null;
3517
+ apr?: number | null;
3509
3518
  bgtCapturePercentage: string;
3510
3519
  allTimeReceivedBGTAmount: string;
3511
3520
  } | null;
@@ -3710,12 +3719,12 @@ type GetGlobalLiquidityAndSwapVolumeQuery = {
3710
3719
  totalLiquidity: any;
3711
3720
  };
3712
3721
  };
3713
- declare const DynamicData: _apollo_client.DocumentNode;
3714
- declare const UserBalance: _apollo_client.DocumentNode;
3715
- declare const RewardVault: _apollo_client.DocumentNode;
3716
- declare const MinimalPoolInList: _apollo_client.DocumentNode;
3717
- declare const MinimalPool: _apollo_client.DocumentNode;
3718
- declare const PoolHistoricalData: _apollo_client.DocumentNode;
3722
+ declare const DynamicData: graphql.DocumentNode;
3723
+ declare const UserBalance: graphql.DocumentNode;
3724
+ declare const RewardVault: graphql.DocumentNode;
3725
+ declare const MinimalPoolInList: graphql.DocumentNode;
3726
+ declare const MinimalPool: graphql.DocumentNode;
3727
+ declare const PoolHistoricalData: graphql.DocumentNode;
3719
3728
  /** Represents an event that occurs when a swap is made in a pool using the CowAmm protocol. */
3720
3729
  type GqlPoolSwapEventCowAmm = GqlPoolEvent & {
3721
3730
  __typename?: 'GqlPoolSwapEventCowAmm';
@@ -3752,7 +3761,7 @@ type GqlPoolSwapEventCowAmm = GqlPoolEvent & {
3752
3761
  /** The value of the event in USD. */
3753
3762
  valueUSD: Scalars['Float']['output'];
3754
3763
  };
3755
- declare const GqlPoolSwapEventCowAmm: _apollo_client.DocumentNode;
3764
+ declare const GqlPoolSwapEventCowAmm: graphql.DocumentNode;
3756
3765
  /** Represents an event that occurs when a swap is made in a pool. */
3757
3766
  type GqlPoolSwapEventV3 = GqlPoolEvent & {
3758
3767
  __typename?: 'GqlPoolSwapEventV3';
@@ -3787,7 +3796,7 @@ type GqlPoolSwapEventV3 = GqlPoolEvent & {
3787
3796
  /** The value of the event in USD. */
3788
3797
  valueUSD: Scalars['Float']['output'];
3789
3798
  };
3790
- declare const GqlPoolSwapEventV3: _apollo_client.DocumentNode;
3799
+ declare const GqlPoolSwapEventV3: graphql.DocumentNode;
3791
3800
  /** Represents an event that occurs when liquidity is added or removed from a pool. */
3792
3801
  type GqlPoolAddRemoveEventV3 = GqlPoolEvent & {
3793
3802
  __typename?: 'GqlPoolAddRemoveEventV3';
@@ -3818,14 +3827,14 @@ type GqlPoolAddRemoveEventV3 = GqlPoolEvent & {
3818
3827
  /** The value of the event in USD. */
3819
3828
  valueUSD: Scalars['Float']['output'];
3820
3829
  };
3821
- declare const GqlPoolAddRemoveEventV3: _apollo_client.DocumentNode;
3822
- declare const PoolEvent: _apollo_client.DocumentNode;
3823
- declare const GetPools: _apollo_client.DocumentNode;
3824
- declare const GetPool: _apollo_client.DocumentNode;
3825
- declare const GetPoolHistoricalData: _apollo_client.DocumentNode;
3826
- declare const GetPoolEvents: _apollo_client.DocumentNode;
3827
- declare const GetTokenCurrentPrices: _apollo_client.DocumentNode;
3828
- declare const GetGlobalLiquidityAndSwapVolume: _apollo_client.DocumentNode;
3830
+ declare const GqlPoolAddRemoveEventV3: graphql.DocumentNode;
3831
+ declare const PoolEvent: graphql.DocumentNode;
3832
+ declare const GetPools: graphql.DocumentNode;
3833
+ declare const GetPool: graphql.DocumentNode;
3834
+ declare const GetPoolHistoricalData: graphql.DocumentNode;
3835
+ declare const GetPoolEvents: graphql.DocumentNode;
3836
+ declare const GetTokenCurrentPrices: graphql.DocumentNode;
3837
+ declare const GetGlobalLiquidityAndSwapVolume: graphql.DocumentNode;
3829
3838
  interface PossibleTypesResultData {
3830
3839
  possibleTypes: {
3831
3840
  [key: string]: string[];
@@ -3833,4 +3842,4 @@ interface PossibleTypesResultData {
3833
3842
  }
3834
3843
  declare const result: PossibleTypesResultData;
3835
3844
 
3836
- export { 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 GqlContentNewsItem, GqlContentNewsItemSource, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlFeaturePoolGroupItemExternalLink, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, 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 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, 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 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, MinimalPool, type MinimalPoolFragment, MinimalPoolInList, type MinimalPoolInListFragment, 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, PoolEvent, type PoolEventFragment, PoolHistoricalData, type PoolHistoricalDataFragment, 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 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, RewardVault, type RewardVaultFragment, type Scalars, type Token, UserBalance, type UserBalanceFragment, result as default };
3845
+ export { 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 GqlContentNewsItem, GqlContentNewsItemSource, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlFeaturePoolGroupItemExternalLink, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, 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 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, 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 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, MinimalPool, type MinimalPoolFragment, MinimalPoolInList, type MinimalPoolInListFragment, 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, PoolEvent, type PoolEventFragment, PoolHistoricalData, type PoolHistoricalDataFragment, 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, RewardVault, type RewardVaultFragment, type Scalars, type Token, UserBalance, type UserBalanceFragment, result as default };
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _client = require('@apollo/client');var m=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(m||{}),d= exports.GqlContentNewsItemSource =(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(d||{}),g= exports.GqlPoolAprItemType =(s=>(s.Aura="AURA",s.IbYield="IB_YIELD",s.Locking="LOCKING",s.MabeetsEmissions="MABEETS_EMISSIONS",s.Merkl="MERKL",s.Nested="NESTED",s.Staking="STAKING",s.StakingBoost="STAKING_BOOST",s.Surplus="SURPLUS",s.SwapFee="SWAP_FEE",s.VebalEmissions="VEBAL_EMISSIONS",s.Voting="VOTING",s))(g||{}),G= exports.GqlPoolEventType =(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(G||{}),P= exports.GqlPoolEventsDataRange =(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),q= exports.GqlPoolFilterCategory =(u=>(u.BlackListed="BLACK_LISTED",u.Incentivized="INCENTIVIZED",u.Lrt="LRT",u.Points="POINTS",u.PointsEigenlayer="POINTS_EIGENLAYER",u.PointsGyro="POINTS_GYRO",u.PointsKelp="POINTS_KELP",u.PointsRenzo="POINTS_RENZO",u.PointsSwell="POINTS_SWELL",u.Superfest="SUPERFEST",u))(q||{}),b= exports.GqlPoolJoinExitType =(t=>(t.Exit="Exit",t.Join="Join",t))(b||{}),A= exports.GqlPoolNestingType =(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(A||{}),I= exports.GqlPoolOrderBy =(p=>(p.Apr="apr",p.BgtApr="bgtApr",p.Fees24h="fees24h",p.TotalLiquidity="totalLiquidity",p.TotalShares="totalShares",p.UserbalanceUsd="userbalanceUsd",p.Volume24h="volume24h",p))(I||{}),h= exports.GqlPoolOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),_= exports.GqlPoolSnapshotDataRange =(e=>(e.AllTime="ALL_TIME",e.NinetyDays="NINETY_DAYS",e.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",e.OneYear="ONE_YEAR",e.ThirtyDays="THIRTY_DAYS",e))(_||{}),D= exports.GqlPoolType =(l=>(l.ComposableStable="COMPOSABLE_STABLE",l.CowAmm="COW_AMM",l.Element="ELEMENT",l.Fx="FX",l.Gyro="GYRO",l.Gyro3="GYRO3",l.Gyroe="GYROE",l.Investment="INVESTMENT",l.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",l.MetaStable="META_STABLE",l.PhantomStable="PHANTOM_STABLE",l.Stable="STABLE",l.Unknown="UNKNOWN",l.Weighted="WEIGHTED",l))(D||{}),T= exports.GqlRewardVaultIncentiveOrderBy =(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k= exports.GqlRewardVaultIncentiveOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M= exports.GqlRewardVaultOrderBy =(i=>(i.ActiveIncentivesRateUsd="activeIncentivesRateUsd",i.ActiveIncentivesValueUsd="activeIncentivesValueUsd",i.AllTimeBgtReceived="allTimeBGTReceived",i.Apr="apr",i.Apy="apy",i.BgtCapturePercentage="bgtCapturePercentage",i.Last24hBgtReceived="last24hBGTReceived",i.ProjectedApr="projectedApr",i))(M||{}),v= exports.GqlRewardVaultOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(v||{}),B= exports.GqlRewardVaultSnapshotDataRange =(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(B||{}),w= exports.GqlRewardVaultSnapshotResolution =(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),x= exports.GqlSWberaVaultMetadataResolution =(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(x||{}),V= exports.GqlSorSwapType =(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),C= exports.GqlStakeBeraVaultEventType =(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(C||{}),R= exports.GqlTokenChartDataRange =(e=>(e.NinetyDay="NINETY_DAY",e.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",e.OneYear="ONE_YEAR",e.SevenDay="SEVEN_DAY",e.ThirtyDay="THIRTY_DAY",e))(R||{}),E= exports.GqlTokenType =(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(E||{}),f= exports.GqlUserVaultDepositOrderBy =(S=>(S.Amount="amount",S))(f||{}),F= exports.GqlUserVaultDepositOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(F||{}),U= exports.GqlValidatorBlockUptimeStatus =(n=>(n.Inactive="INACTIVE",n.Offline="OFFLINE",n.Proposed="PROPOSED",n.Signed="SIGNED",n))(U||{}),N= exports.GqlValidatorBoostOrderBy =(e=>(e.ActiveBoostAmount="activeBoostAmount",e.LatestBlock="latestBlock",e.LatestBlockTime="latestBlockTime",e.QueuedBoostAmount="queuedBoostAmount",e.QueuedDropBoostAmount="queuedDropBoostAmount",e))(N||{}),L= exports.GqlValidatorBoostOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H= exports.GqlValidatorOrderBy =(r=>(r.ActiveBoostAmount="activeBoostAmount",r.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",r.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.BoostApr="boostApr",r.CommissionOnIncentives="commissionOnIncentives",r.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",r.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",r.QueuedBoostAmount="queuedBoostAmount",r.QueuedDropBoostAmount="queuedDropBoostAmount",r.RewardRate="rewardRate",r.StakedBeraAmount="stakedBeraAmount",r.UsersActiveBoostCount="usersActiveBoostCount",r.UsersQueuedBoostCount="usersQueuedBoostCount",r))(H||{}),W= exports.GqlValidatorOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O= exports.GqlVaultSnapshotDataRange =(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(O||{}),c= exports.DynamicData =_client.gql`
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _client = require('@apollo/client');var m=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(m||{}),d= exports.GqlContentNewsItemSource =(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(d||{}),g= exports.GqlPoolAprItemType =(s=>(s.Aura="AURA",s.IbYield="IB_YIELD",s.Locking="LOCKING",s.MabeetsEmissions="MABEETS_EMISSIONS",s.Merkl="MERKL",s.Nested="NESTED",s.Staking="STAKING",s.StakingBoost="STAKING_BOOST",s.Surplus="SURPLUS",s.SwapFee="SWAP_FEE",s.VebalEmissions="VEBAL_EMISSIONS",s.Voting="VOTING",s))(g||{}),G= exports.GqlPoolEventType =(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(G||{}),P= exports.GqlPoolEventsDataRange =(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),b= exports.GqlPoolFilterCategory =(u=>(u.BlackListed="BLACK_LISTED",u.Incentivized="INCENTIVIZED",u.Lrt="LRT",u.Points="POINTS",u.PointsEigenlayer="POINTS_EIGENLAYER",u.PointsGyro="POINTS_GYRO",u.PointsKelp="POINTS_KELP",u.PointsRenzo="POINTS_RENZO",u.PointsSwell="POINTS_SWELL",u.Superfest="SUPERFEST",u))(b||{}),q= exports.GqlPoolJoinExitType =(t=>(t.Exit="Exit",t.Join="Join",t))(q||{}),A= exports.GqlPoolNestingType =(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(A||{}),I= exports.GqlPoolOrderBy =(p=>(p.Apr="apr",p.BgtApr="bgtApr",p.Fees24h="fees24h",p.TotalLiquidity="totalLiquidity",p.TotalShares="totalShares",p.UserbalanceUsd="userbalanceUsd",p.Volume24h="volume24h",p))(I||{}),h= exports.GqlPoolOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),_= exports.GqlPoolSnapshotDataRange =(e=>(e.AllTime="ALL_TIME",e.NinetyDays="NINETY_DAYS",e.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",e.OneYear="ONE_YEAR",e.ThirtyDays="THIRTY_DAYS",e))(_||{}),D= exports.GqlPoolType =(l=>(l.ComposableStable="COMPOSABLE_STABLE",l.CowAmm="COW_AMM",l.Element="ELEMENT",l.Fx="FX",l.Gyro="GYRO",l.Gyro3="GYRO3",l.Gyroe="GYROE",l.Investment="INVESTMENT",l.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",l.MetaStable="META_STABLE",l.PhantomStable="PHANTOM_STABLE",l.Stable="STABLE",l.Unknown="UNKNOWN",l.Weighted="WEIGHTED",l))(D||{}),T= exports.GqlRewardVaultIncentiveOrderBy =(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k= exports.GqlRewardVaultIncentiveOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M= exports.GqlRewardVaultOrderBy =(i=>(i.ActiveIncentivesRateUsd="activeIncentivesRateUsd",i.ActiveIncentivesValueUsd="activeIncentivesValueUsd",i.AllTimeBgtReceived="allTimeBGTReceived",i.Apr="apr",i.Apy="apy",i.BgtCapturePercentage="bgtCapturePercentage",i.Last24hBgtReceived="last24hBGTReceived",i.ProjectedApr="projectedApr",i))(M||{}),B= exports.GqlRewardVaultOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(B||{}),v= exports.GqlRewardVaultSnapshotDataRange =(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(v||{}),w= exports.GqlRewardVaultSnapshotResolution =(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),x= exports.GqlSWberaVaultMetadataResolution =(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(x||{}),V= exports.GqlSorSwapType =(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),C= exports.GqlStakeBeraVaultEventType =(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(C||{}),R= exports.GqlTokenChartDataRange =(e=>(e.NinetyDay="NINETY_DAY",e.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",e.OneYear="ONE_YEAR",e.SevenDay="SEVEN_DAY",e.ThirtyDay="THIRTY_DAY",e))(R||{}),E= exports.GqlTokenType =(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(E||{}),F= exports.GqlUserVaultDepositOrderBy =(S=>(S.Amount="amount",S))(F||{}),f= exports.GqlUserVaultDepositOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(f||{}),U= exports.GqlValidatorBlockUptimeStatus =(n=>(n.Inactive="INACTIVE",n.Offline="OFFLINE",n.Proposed="PROPOSED",n.Signed="SIGNED",n))(U||{}),N= exports.GqlValidatorBoostOrderBy =(e=>(e.ActiveBoostAmount="activeBoostAmount",e.LatestBlock="latestBlock",e.LatestBlockTime="latestBlockTime",e.QueuedBoostAmount="queuedBoostAmount",e.QueuedDropBoostAmount="queuedDropBoostAmount",e))(N||{}),L= exports.GqlValidatorBoostOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H= exports.GqlValidatorOrderBy =(r=>(r.ActiveBoostAmount="activeBoostAmount",r.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",r.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.BoostApr="boostApr",r.CommissionOnIncentives="commissionOnIncentives",r.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",r.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",r.QueuedBoostAmount="queuedBoostAmount",r.QueuedDropBoostAmount="queuedDropBoostAmount",r.RewardRate="rewardRate",r.StakedBeraAmount="stakedBeraAmount",r.UsersActiveBoostCount="usersActiveBoostCount",r.UsersQueuedBoostCount="usersQueuedBoostCount",r))(H||{}),W= exports.GqlValidatorOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O= exports.GqlVaultSnapshotDataRange =(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(O||{}),c= exports.DynamicData =_client.gql`
2
2
  fragment DynamicData on GqlPoolDynamicData {
3
3
  totalShares
4
4
  fees24h
@@ -196,4 +196,4 @@ ${X}`,at= exports.GetPools =_client.gql`
196
196
  totalLiquidity
197
197
  }
198
198
  }
199
- `,Z={possibleTypes:{GqlPoolAprValue:["GqlPoolAprRange","GqlPoolAprTotal"],GqlPoolBase:["GqlPoolComposableStable","GqlPoolElement","GqlPoolFx","GqlPoolGyro","GqlPoolLiquidityBootstrapping","GqlPoolMetaStable","GqlPoolStable","GqlPoolWeighted"],GqlPoolEvent:["GqlPoolAddRemoveEventV3","GqlPoolSwapEventCowAmm","GqlPoolSwapEventV3"],GqlPoolFeaturedPoolGroupItem:["GqlFeaturePoolGroupItemExternalLink","GqlPoolMinimal"],GqlPoolNestedUnion:["GqlPoolComposableStableNested"],GqlPoolTokenBase:["GqlPoolToken","GqlPoolTokenComposableStable"],GqlPoolTokenComposableStableNestedUnion:["GqlPoolToken"],GqlPoolTokenUnion:["GqlPoolToken","GqlPoolTokenComposableStable"],GqlPoolUnion:["GqlPoolComposableStable","GqlPoolElement","GqlPoolFx","GqlPoolGyro","GqlPoolLiquidityBootstrapping","GqlPoolMetaStable","GqlPoolStable","GqlPoolWeighted"]}},st= exports.default =Z;exports.DynamicData = c; exports.GetGlobalLiquidityAndSwapVolume = lt; exports.GetPool = et; exports.GetPoolEvents = rt; exports.GetPoolHistoricalData = ot; exports.GetPools = at; exports.GetTokenCurrentPrices = nt; exports.GqlChain = m; exports.GqlContentNewsItemSource = d; exports.GqlPoolAddRemoveEventV3 = X; exports.GqlPoolAprItemType = g; exports.GqlPoolEventType = G; exports.GqlPoolEventsDataRange = P; exports.GqlPoolFilterCategory = q; exports.GqlPoolJoinExitType = b; exports.GqlPoolNestingType = A; exports.GqlPoolOrderBy = I; exports.GqlPoolOrderDirection = h; exports.GqlPoolSnapshotDataRange = _; exports.GqlPoolSwapEventCowAmm = J; exports.GqlPoolSwapEventV3 = z; exports.GqlPoolType = D; exports.GqlRewardVaultIncentiveOrderBy = T; exports.GqlRewardVaultIncentiveOrderDirection = k; exports.GqlRewardVaultOrderBy = M; exports.GqlRewardVaultOrderDirection = v; exports.GqlRewardVaultSnapshotDataRange = B; exports.GqlRewardVaultSnapshotResolution = w; exports.GqlSWberaVaultMetadataResolution = x; exports.GqlSorSwapType = V; exports.GqlStakeBeraVaultEventType = C; exports.GqlTokenChartDataRange = R; exports.GqlTokenType = E; exports.GqlUserVaultDepositOrderBy = f; exports.GqlUserVaultDepositOrderDirection = F; exports.GqlValidatorBlockUptimeStatus = U; exports.GqlValidatorBoostOrderBy = N; exports.GqlValidatorBoostOrderDirection = L; exports.GqlValidatorOrderBy = H; exports.GqlValidatorOrderDirection = W; exports.GqlVaultSnapshotDataRange = O; exports.MinimalPool = $; exports.MinimalPoolInList = Y; exports.PoolEvent = j; exports.PoolHistoricalData = K; exports.RewardVault = y; exports.UserBalance = Q; exports.default = st;
199
+ `,Z={possibleTypes:{GqlPoolAprValue:["GqlPoolAprRange","GqlPoolAprTotal"],GqlPoolBase:["GqlPoolComposableStable","GqlPoolElement","GqlPoolFx","GqlPoolGyro","GqlPoolLiquidityBootstrapping","GqlPoolMetaStable","GqlPoolStable","GqlPoolWeighted"],GqlPoolEvent:["GqlPoolAddRemoveEventV3","GqlPoolSwapEventCowAmm","GqlPoolSwapEventV3"],GqlPoolFeaturedPoolGroupItem:["GqlFeaturePoolGroupItemExternalLink","GqlPoolMinimal"],GqlPoolNestedUnion:["GqlPoolComposableStableNested"],GqlPoolTokenBase:["GqlPoolToken","GqlPoolTokenComposableStable"],GqlPoolTokenComposableStableNestedUnion:["GqlPoolToken"],GqlPoolTokenUnion:["GqlPoolToken","GqlPoolTokenComposableStable"],GqlPoolUnion:["GqlPoolComposableStable","GqlPoolElement","GqlPoolFx","GqlPoolGyro","GqlPoolLiquidityBootstrapping","GqlPoolMetaStable","GqlPoolStable","GqlPoolWeighted"]}},st= exports.default =Z;exports.DynamicData = c; exports.GetGlobalLiquidityAndSwapVolume = lt; exports.GetPool = et; exports.GetPoolEvents = rt; exports.GetPoolHistoricalData = ot; exports.GetPools = at; exports.GetTokenCurrentPrices = nt; exports.GqlChain = m; exports.GqlContentNewsItemSource = d; exports.GqlPoolAddRemoveEventV3 = X; exports.GqlPoolAprItemType = g; exports.GqlPoolEventType = G; exports.GqlPoolEventsDataRange = P; exports.GqlPoolFilterCategory = b; exports.GqlPoolJoinExitType = q; exports.GqlPoolNestingType = A; exports.GqlPoolOrderBy = I; exports.GqlPoolOrderDirection = h; exports.GqlPoolSnapshotDataRange = _; exports.GqlPoolSwapEventCowAmm = J; exports.GqlPoolSwapEventV3 = z; exports.GqlPoolType = D; exports.GqlRewardVaultIncentiveOrderBy = T; exports.GqlRewardVaultIncentiveOrderDirection = k; exports.GqlRewardVaultOrderBy = M; exports.GqlRewardVaultOrderDirection = B; exports.GqlRewardVaultSnapshotDataRange = v; exports.GqlRewardVaultSnapshotResolution = w; exports.GqlSWberaVaultMetadataResolution = x; exports.GqlSorSwapType = V; exports.GqlStakeBeraVaultEventType = C; exports.GqlTokenChartDataRange = R; exports.GqlTokenType = E; exports.GqlUserVaultDepositOrderBy = F; exports.GqlUserVaultDepositOrderDirection = f; exports.GqlValidatorBlockUptimeStatus = U; exports.GqlValidatorBoostOrderBy = N; exports.GqlValidatorBoostOrderDirection = L; exports.GqlValidatorOrderBy = H; exports.GqlValidatorOrderDirection = W; exports.GqlVaultSnapshotDataRange = O; exports.MinimalPool = $; exports.MinimalPoolInList = Y; exports.PoolEvent = j; exports.PoolHistoricalData = K; exports.RewardVault = y; exports.UserBalance = Q; exports.default = st;
@@ -0,0 +1,199 @@
1
+ import{gql as o}from"@apollo/client";var m=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(m||{}),d=(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(d||{}),g=(s=>(s.Aura="AURA",s.IbYield="IB_YIELD",s.Locking="LOCKING",s.MabeetsEmissions="MABEETS_EMISSIONS",s.Merkl="MERKL",s.Nested="NESTED",s.Staking="STAKING",s.StakingBoost="STAKING_BOOST",s.Surplus="SURPLUS",s.SwapFee="SWAP_FEE",s.VebalEmissions="VEBAL_EMISSIONS",s.Voting="VOTING",s))(g||{}),G=(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(G||{}),P=(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),b=(u=>(u.BlackListed="BLACK_LISTED",u.Incentivized="INCENTIVIZED",u.Lrt="LRT",u.Points="POINTS",u.PointsEigenlayer="POINTS_EIGENLAYER",u.PointsGyro="POINTS_GYRO",u.PointsKelp="POINTS_KELP",u.PointsRenzo="POINTS_RENZO",u.PointsSwell="POINTS_SWELL",u.Superfest="SUPERFEST",u))(b||{}),q=(t=>(t.Exit="Exit",t.Join="Join",t))(q||{}),A=(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(A||{}),I=(p=>(p.Apr="apr",p.BgtApr="bgtApr",p.Fees24h="fees24h",p.TotalLiquidity="totalLiquidity",p.TotalShares="totalShares",p.UserbalanceUsd="userbalanceUsd",p.Volume24h="volume24h",p))(I||{}),h=(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),_=(e=>(e.AllTime="ALL_TIME",e.NinetyDays="NINETY_DAYS",e.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",e.OneYear="ONE_YEAR",e.ThirtyDays="THIRTY_DAYS",e))(_||{}),D=(l=>(l.ComposableStable="COMPOSABLE_STABLE",l.CowAmm="COW_AMM",l.Element="ELEMENT",l.Fx="FX",l.Gyro="GYRO",l.Gyro3="GYRO3",l.Gyroe="GYROE",l.Investment="INVESTMENT",l.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",l.MetaStable="META_STABLE",l.PhantomStable="PHANTOM_STABLE",l.Stable="STABLE",l.Unknown="UNKNOWN",l.Weighted="WEIGHTED",l))(D||{}),T=(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k=(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M=(i=>(i.ActiveIncentivesRateUsd="activeIncentivesRateUsd",i.ActiveIncentivesValueUsd="activeIncentivesValueUsd",i.AllTimeBgtReceived="allTimeBGTReceived",i.Apr="apr",i.Apy="apy",i.BgtCapturePercentage="bgtCapturePercentage",i.Last24hBgtReceived="last24hBGTReceived",i.ProjectedApr="projectedApr",i))(M||{}),B=(t=>(t.Asc="asc",t.Desc="desc",t))(B||{}),v=(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(v||{}),w=(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),x=(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(x||{}),V=(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),C=(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(C||{}),R=(e=>(e.NinetyDay="NINETY_DAY",e.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",e.OneYear="ONE_YEAR",e.SevenDay="SEVEN_DAY",e.ThirtyDay="THIRTY_DAY",e))(R||{}),E=(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(E||{}),F=(S=>(S.Amount="amount",S))(F||{}),f=(t=>(t.Asc="asc",t.Desc="desc",t))(f||{}),U=(n=>(n.Inactive="INACTIVE",n.Offline="OFFLINE",n.Proposed="PROPOSED",n.Signed="SIGNED",n))(U||{}),N=(e=>(e.ActiveBoostAmount="activeBoostAmount",e.LatestBlock="latestBlock",e.LatestBlockTime="latestBlockTime",e.QueuedBoostAmount="queuedBoostAmount",e.QueuedDropBoostAmount="queuedDropBoostAmount",e))(N||{}),L=(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H=(r=>(r.ActiveBoostAmount="activeBoostAmount",r.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",r.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.BoostApr="boostApr",r.CommissionOnIncentives="commissionOnIncentives",r.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",r.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",r.QueuedBoostAmount="queuedBoostAmount",r.QueuedDropBoostAmount="queuedDropBoostAmount",r.RewardRate="rewardRate",r.StakedBeraAmount="stakedBeraAmount",r.UsersActiveBoostCount="usersActiveBoostCount",r.UsersQueuedBoostCount="usersQueuedBoostCount",r))(H||{}),W=(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O=(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(O||{}),c=o`
2
+ fragment DynamicData on GqlPoolDynamicData {
3
+ totalShares
4
+ fees24h
5
+ volume24h
6
+ swapFee
7
+ isInRecoveryMode
8
+ isPaused
9
+ totalLiquidity
10
+ aprItems {
11
+ apr
12
+ type
13
+ id
14
+ }
15
+ }
16
+ `,Q=o`
17
+ fragment UserBalance on GqlPoolUserBalance {
18
+ totalBalanceUsd
19
+ walletBalance
20
+ walletBalanceUsd
21
+ }
22
+ `,y=o`
23
+ fragment RewardVault on GqlRewardVault {
24
+ dynamicData {
25
+ activeIncentivesValueUsd
26
+ apr
27
+ bgtCapturePercentage
28
+ allTimeReceivedBGTAmount
29
+ }
30
+ isVaultWhitelisted
31
+ vaultAddress
32
+ stakingTokenAddress
33
+ }
34
+ `,Y=o`
35
+ fragment MinimalPoolInList on GqlPoolMinimal {
36
+ id
37
+ name
38
+ address
39
+ factory
40
+ tokens: allTokens {
41
+ address
42
+ symbol
43
+ name
44
+ decimals
45
+ }
46
+ address
47
+ protocolVersion
48
+ type
49
+ dynamicData {
50
+ ...DynamicData
51
+ }
52
+ userBalance {
53
+ ...UserBalance
54
+ }
55
+ rewardVault {
56
+ ...RewardVault
57
+ }
58
+ }
59
+ ${c}
60
+ ${Q}
61
+ ${y}`,$=o`
62
+ fragment MinimalPool on GqlPoolBase {
63
+ id
64
+ name
65
+ address
66
+ factory
67
+ address
68
+ protocolVersion
69
+ type
70
+ createTime
71
+ tokens: poolTokens {
72
+ index
73
+ address
74
+ symbol
75
+ name
76
+ decimals
77
+ weight
78
+ balance
79
+ balanceUSD
80
+ }
81
+ dynamicData {
82
+ ...DynamicData
83
+ }
84
+ rewardVault {
85
+ ...RewardVault
86
+ }
87
+ }
88
+ ${c}
89
+ ${y}`,K=o`
90
+ fragment PoolHistoricalData on GqlPoolSnapshot {
91
+ id
92
+ volume24h
93
+ totalSwapVolume
94
+ timestamp
95
+ totalLiquidity
96
+ fees24h
97
+ totalSwapFee
98
+ }
99
+ `,J=o`
100
+ fragment GqlPoolSwapEventCowAmm on GqlPoolSwapEventCowAmm {
101
+ tokenIn {
102
+ address
103
+ amount
104
+ }
105
+ tokenOut {
106
+ address
107
+ amount
108
+ }
109
+ }
110
+ `,z=o`
111
+ fragment GqlPoolSwapEventV3 on GqlPoolSwapEventV3 {
112
+ tokenIn {
113
+ address
114
+ amount
115
+ }
116
+ tokenOut {
117
+ address
118
+ amount
119
+ }
120
+ }
121
+ `,X=o`
122
+ fragment GqlPoolAddRemoveEventV3 on GqlPoolAddRemoveEventV3 {
123
+ tokens {
124
+ address
125
+ amount
126
+ }
127
+ }
128
+ `,j=o`
129
+ fragment PoolEvent on GqlPoolEvent {
130
+ id
131
+ valueUSD
132
+ tx
133
+ type
134
+ sender
135
+ timestamp
136
+ ...GqlPoolSwapEventCowAmm
137
+ ...GqlPoolSwapEventV3
138
+ ...GqlPoolAddRemoveEventV3
139
+ }
140
+ ${J}
141
+ ${z}
142
+ ${X}`,at=o`
143
+ query GetPools($textSearch: String, $first: Int, $userAddress: String, $chain: [GqlChain!]!, $orderBy: GqlPoolOrderBy, $skip: Int, $orderDirection: GqlPoolOrderDirection, $blacklistedPoolIds: [String!]) {
144
+ poolGetPools(
145
+ textSearch: $textSearch
146
+ first: $first
147
+ orderBy: $orderBy
148
+ orderDirection: $orderDirection
149
+ skip: $skip
150
+ where: {userAddress: $userAddress, chainIn: $chain, idNotIn: $blacklistedPoolIds}
151
+ ) {
152
+ ...MinimalPoolInList
153
+ }
154
+ count: poolGetPoolsCount(
155
+ textSearch: $textSearch
156
+ where: {userAddress: $userAddress, chainIn: $chain}
157
+ )
158
+ }
159
+ ${Y}`,et=o`
160
+ query GetPool($id: String!, $userAddress: String, $chain: GqlChain!) {
161
+ poolGetPool(id: $id, userAddress: $userAddress, chain: $chain) {
162
+ ...MinimalPool
163
+ }
164
+ }
165
+ ${$}`,ot=o`
166
+ query GetPoolHistoricalData($poolId: String!, $chain: GqlChain!) {
167
+ poolGetSnapshots(id: $poolId, range: NINETY_DAYS, chain: $chain) {
168
+ ...PoolHistoricalData
169
+ }
170
+ }
171
+ ${K}`,rt=o`
172
+ query GetPoolEvents($poolId: String!, $typeIn: [GqlPoolEventType!]!, $chain: GqlChain!) {
173
+ poolGetEvents(
174
+ poolId: $poolId
175
+ chain: $chain
176
+ range: NINETY_DAYS
177
+ typeIn: $typeIn
178
+ ) {
179
+ ...PoolEvent
180
+ }
181
+ }
182
+ ${j}`,nt=o`
183
+ query GetTokenCurrentPrices($chains: [GqlChain!]!, $addressIn: [String!]!) {
184
+ tokenGetCurrentPrices(chains: $chains, addressIn: $addressIn) {
185
+ address
186
+ chain
187
+ price
188
+ updatedAt
189
+ updatedBy
190
+ }
191
+ }
192
+ `,lt=o`
193
+ query GetGlobalLiquidityAndSwapVolume($chain: GqlChain!) {
194
+ protocolMetricsAggregated(chains: [$chain]) {
195
+ swapVolume24h
196
+ totalLiquidity
197
+ }
198
+ }
199
+ `,Z={possibleTypes:{GqlPoolAprValue:["GqlPoolAprRange","GqlPoolAprTotal"],GqlPoolBase:["GqlPoolComposableStable","GqlPoolElement","GqlPoolFx","GqlPoolGyro","GqlPoolLiquidityBootstrapping","GqlPoolMetaStable","GqlPoolStable","GqlPoolWeighted"],GqlPoolEvent:["GqlPoolAddRemoveEventV3","GqlPoolSwapEventCowAmm","GqlPoolSwapEventV3"],GqlPoolFeaturedPoolGroupItem:["GqlFeaturePoolGroupItemExternalLink","GqlPoolMinimal"],GqlPoolNestedUnion:["GqlPoolComposableStableNested"],GqlPoolTokenBase:["GqlPoolToken","GqlPoolTokenComposableStable"],GqlPoolTokenComposableStableNestedUnion:["GqlPoolToken"],GqlPoolTokenUnion:["GqlPoolToken","GqlPoolTokenComposableStable"],GqlPoolUnion:["GqlPoolComposableStable","GqlPoolElement","GqlPoolFx","GqlPoolGyro","GqlPoolLiquidityBootstrapping","GqlPoolMetaStable","GqlPoolStable","GqlPoolWeighted"]}},st=Z;export{c as DynamicData,lt as GetGlobalLiquidityAndSwapVolume,et as GetPool,rt as GetPoolEvents,ot as GetPoolHistoricalData,at as GetPools,nt as GetTokenCurrentPrices,m as GqlChain,d as GqlContentNewsItemSource,X as GqlPoolAddRemoveEventV3,g as GqlPoolAprItemType,G as GqlPoolEventType,P as GqlPoolEventsDataRange,b as GqlPoolFilterCategory,q as GqlPoolJoinExitType,A as GqlPoolNestingType,I as GqlPoolOrderBy,h as GqlPoolOrderDirection,_ as GqlPoolSnapshotDataRange,J as GqlPoolSwapEventCowAmm,z as GqlPoolSwapEventV3,D as GqlPoolType,T as GqlRewardVaultIncentiveOrderBy,k as GqlRewardVaultIncentiveOrderDirection,M as GqlRewardVaultOrderBy,B as GqlRewardVaultOrderDirection,v as GqlRewardVaultSnapshotDataRange,w as GqlRewardVaultSnapshotResolution,x as GqlSWberaVaultMetadataResolution,V as GqlSorSwapType,C as GqlStakeBeraVaultEventType,R as GqlTokenChartDataRange,E as GqlTokenType,F as GqlUserVaultDepositOrderBy,f as GqlUserVaultDepositOrderDirection,U as GqlValidatorBlockUptimeStatus,N as GqlValidatorBoostOrderBy,L as GqlValidatorBoostOrderDirection,H as GqlValidatorOrderBy,W as GqlValidatorOrderDirection,O as GqlVaultSnapshotDataRange,$ as MinimalPool,Y as MinimalPoolInList,j as PoolEvent,K as PoolHistoricalData,y as RewardVault,Q as UserBalance,st as default};