@berachain/graphql 0.3.3 → 0.4.1-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/bend/whisk.codegen.cjs +9 -9
  2. package/dist/bend/whisk.codegen.d.cts +155 -1
  3. package/dist/bend/whisk.codegen.d.ts +155 -1
  4. package/dist/bend/whisk.codegen.mjs +6 -6
  5. package/dist/chain/chain.codegen.cjs +1 -1
  6. package/dist/chain/chain.codegen.d.cts +1 -26
  7. package/dist/chain/chain.codegen.d.ts +1 -26
  8. package/dist/chain/chain.codegen.mjs +2 -2
  9. package/dist/dex/api.codegen.cjs +3 -3
  10. package/dist/dex/api.codegen.d.cts +24 -5
  11. package/dist/dex/api.codegen.d.ts +24 -5
  12. package/dist/dex/api.codegen.mjs +6 -6
  13. package/dist/dex/subgraph.codegen.cjs +5 -5
  14. package/dist/dex/subgraph.codegen.d.cts +30 -475
  15. package/dist/dex/subgraph.codegen.d.ts +30 -475
  16. package/dist/dex/subgraph.codegen.mjs +6 -6
  17. package/dist/governance/governance.codegen.cjs +7 -7
  18. package/dist/governance/governance.codegen.d.cts +1 -90
  19. package/dist/governance/governance.codegen.d.ts +1 -90
  20. package/dist/governance/governance.codegen.mjs +10 -10
  21. package/dist/honey/honey.codegen.cjs +7 -7
  22. package/dist/honey/honey.codegen.d.cts +14 -108
  23. package/dist/honey/honey.codegen.d.ts +14 -108
  24. package/dist/honey/honey.codegen.mjs +7 -7
  25. package/dist/pol/api.codegen.cjs +20 -44
  26. package/dist/pol/api.codegen.d.cts +24 -48
  27. package/dist/pol/api.codegen.d.ts +24 -48
  28. package/dist/pol/api.codegen.mjs +5 -29
  29. package/dist/pol/subgraph.codegen.cjs +23 -23
  30. package/dist/pol/subgraph.codegen.d.cts +238 -600
  31. package/dist/pol/subgraph.codegen.d.ts +238 -600
  32. package/dist/pol/subgraph.codegen.mjs +23 -23
  33. package/package.json +1 -1
@@ -80,6 +80,10 @@ type Adapter = {
80
80
  * @deprecated Schema is subject to change, not yet stable
81
81
  */
82
82
  isEnabled: Scalars['Boolean']['output'];
83
+ /** Name of the adapter */
84
+ name: Maybe<Scalars['String']['output']>;
85
+ /** Risk assessment for the adapter */
86
+ riskAssessment: Maybe<AdapterRiskAssessment>;
83
87
  };
84
88
  type AdapterCap = Cap & {
85
89
  __typename?: 'AdapterCap';
@@ -104,6 +108,22 @@ type AdapterCap = Cap & {
104
108
  */
105
109
  relativeCap: OnchainAmount;
106
110
  };
111
+ /** Risk assessment for an adapter */
112
+ type AdapterRiskAssessment = {
113
+ __typename?: 'AdapterRiskAssessment';
114
+ /** Steakhouse risk assessment */
115
+ steakhouse: Maybe<SteakhouseRiskAssessment>;
116
+ };
117
+ /** Pending withdrawals or deposits for an account in an Aera vault */
118
+ type AeraPendingAction = {
119
+ __typename?: 'AeraPendingAction';
120
+ /** Amount of the action */
121
+ amount: TokenAmount;
122
+ /** Hash of the action */
123
+ hash: Scalars['Hex']['output'];
124
+ /** Token of the action */
125
+ token: Token;
126
+ };
107
127
  /** Aera vault */
108
128
  type AeraVault = {
109
129
  __typename?: 'AeraVault';
@@ -156,6 +176,10 @@ type AeraVaultPosition = {
156
176
  hasPendingDeposit: Scalars['Boolean']['output'];
157
177
  /** Whether the account has a pending withdrawal */
158
178
  hasPendingWithdrawal: Scalars['Boolean']['output'];
179
+ /** Pending deposits for the account */
180
+ pendingDeposits: Array<AeraPendingAction>;
181
+ /** Pending withdrawals for the account */
182
+ pendingWithdrawals: Array<AeraPendingAction>;
159
183
  /** Position balance in numeraire assets */
160
184
  supplyAmount: TokenAmount;
161
185
  /** Position balance in shares */
@@ -223,6 +247,8 @@ type BoxVault = Erc4626Vault & {
223
247
  decimals: Scalars['Int']['output'];
224
248
  /** Name of the vault */
225
249
  name: Scalars['String']['output'];
250
+ /** Risk assessment for the vault */
251
+ riskAssessment: BoxVaultRiskAssessment;
226
252
  /** Symbol of the vault */
227
253
  symbol: Scalars['String']['output'];
228
254
  /** Total amount of the underlying assets supplied to the vault */
@@ -250,9 +276,22 @@ type BoxVaultAdapter = Adapter & {
250
276
  * @deprecated Schema is subject to change, not yet stable
251
277
  */
252
278
  isEnabled: Scalars['Boolean']['output'];
279
+ /**
280
+ * Name of the adapter
281
+ * @deprecated Schema is subject to change, not yet stable
282
+ */
283
+ name: Maybe<Scalars['String']['output']>;
284
+ /** Risk assessment for the adapter */
285
+ riskAssessment: Maybe<AdapterRiskAssessment>;
253
286
  /** @deprecated Schema is subject to change, not yet stable */
254
287
  vault: Maybe<BoxVault>;
255
288
  };
289
+ /** Risk assessment for a box vault */
290
+ type BoxVaultRiskAssessment = {
291
+ __typename?: 'BoxVaultRiskAssessment';
292
+ /** Steakhouse risk assessment */
293
+ steakhouse: Maybe<SteakhouseRiskAssessment>;
294
+ };
256
295
  /** V2: Caps for a Morpho vault adapter id */
257
296
  type Cap = {
258
297
  /**
@@ -374,6 +413,40 @@ type Erc4626VaultPage = {
374
413
  /** Total number of items */
375
414
  totalCount: Scalars['Int']['output'];
376
415
  };
416
+ type Erc4626VaultPosition = {
417
+ /** Address of the account */
418
+ accountAddress: Scalars['Address']['output'];
419
+ /** Underlying assets the shares are redeemable for */
420
+ assets: TokenAmount;
421
+ /** Vault shares owned by the account */
422
+ shares: OnchainAmount;
423
+ /** Vault the position is in */
424
+ vault: Erc4626Vault;
425
+ /** Holding of the underlying asset in the accounts wallet - just for convenience, technically not part of the positions */
426
+ walletAssetHolding: TokenHolding;
427
+ };
428
+ type Erc4626VaultPositionFilter = {
429
+ keys: InputMaybe<Array<Erc4626VaultPositionKey>>;
430
+ };
431
+ type Erc4626VaultPositionKey = {
432
+ /** Address of the account to get the position for */
433
+ accountAddress: Scalars['Address']['input'];
434
+ /** Chain the vault is deployed on */
435
+ chainId: Scalars['ChainId']['input'];
436
+ /** Protocol the vault is part of */
437
+ protocol: Erc4626VaultProtocol;
438
+ /** Address of the vault contract */
439
+ vaultAddress: Scalars['Address']['input'];
440
+ };
441
+ type Erc4626VaultPositionPage = {
442
+ __typename?: 'Erc4626VaultPositionPage';
443
+ /** The items in the page */
444
+ items: Array<Maybe<Erc4626VaultPosition>>;
445
+ /** Pagination information for the page */
446
+ pageInfo: PageInfo;
447
+ /** Total number of items */
448
+ totalCount: Scalars['Int']['output'];
449
+ };
377
450
  declare enum Erc4626VaultProtocol {
378
451
  Box = "box",
379
452
  Generic = "generic",
@@ -402,6 +475,19 @@ type GenericErc4626Vault = Erc4626Vault & {
402
475
  type GenericErc4626VaultApyArgs = {
403
476
  timeframe: ApyTimeframe;
404
477
  };
478
+ type GenericErc4626VaultPosition = Erc4626VaultPosition & {
479
+ __typename?: 'GenericErc4626VaultPosition';
480
+ /** Address of the account */
481
+ accountAddress: Scalars['Address']['output'];
482
+ /** Underlying assets the shares are redeemable for */
483
+ assets: TokenAmount;
484
+ /** Vault shares owned by the account */
485
+ shares: OnchainAmount;
486
+ /** Vault the position is in */
487
+ vault: Erc4626Vault;
488
+ /** Holding of the underlying asset in the accounts wallet - just for convenience, technically not part of the positions */
489
+ walletAssetHolding: TokenHolding;
490
+ };
405
491
  type Identity = {
406
492
  __typename?: 'Identity';
407
493
  aggregate: IdentityResolverOutput;
@@ -461,6 +547,13 @@ type MarketV1Adapter = Adapter & {
461
547
  * @deprecated Schema is subject to change, not yet stable
462
548
  */
463
549
  marketCaps: Array<MarketV1ExposureCap>;
550
+ /**
551
+ * Name of the adapter
552
+ * @deprecated Schema is subject to change, not yet stable
553
+ */
554
+ name: Maybe<Scalars['String']['output']>;
555
+ /** Risk assessment for the adapter */
556
+ riskAssessment: Maybe<AdapterRiskAssessment>;
464
557
  };
465
558
  type MarketV1ExposureCap = Cap & {
466
559
  __typename?: 'MarketV1ExposureCap';
@@ -583,6 +676,8 @@ type MorphoMarket = {
583
676
  oracleAddress: Scalars['Address']['output'];
584
677
  /** Amount of loan assets that can be allocated to this market via the public allocator */
585
678
  publicAllocatorSharedLiquidity: TokenAmount;
679
+ /** Risk assessment for the market */
680
+ riskAssessment: MorphoMarketV1RiskAssessment;
586
681
  /** APY earned for supplying to the market (instantaneous) */
587
682
  supplyApy: Apy;
588
683
  /** APY earned for supplying to the market smoothed over 1 day. Note rewards are instantaneous, and base is instantaneous when the market has been deployed less than 1 day ago. */
@@ -710,6 +805,12 @@ type MorphoMarketPositionPage = {
710
805
  /** Total number of items */
711
806
  totalCount: Scalars['Int']['output'];
712
807
  };
808
+ /** Risk assessment for a Morpho market */
809
+ type MorphoMarketV1RiskAssessment = {
810
+ __typename?: 'MorphoMarketV1RiskAssessment';
811
+ /** Steakhouse risk assessment */
812
+ steakhouse: Maybe<SteakhouseRiskAssessment>;
813
+ };
713
814
  /** Morpho vault */
714
815
  type MorphoVault = Erc4626Vault & {
715
816
  __typename?: 'MorphoVault';
@@ -739,6 +840,8 @@ type MorphoVault = Erc4626Vault & {
739
840
  ownerAddress: Scalars['Address']['output'];
740
841
  /** Performance fee of the vault, this is the fee that is taken from the vaults profits */
741
842
  performanceFee: Scalars['Float']['output'];
843
+ /** Risk assessment for the vault */
844
+ riskAssessment: MorphoVaultV1RiskAssessment;
742
845
  /**
743
846
  * APY earned when supplying to the vault
744
847
  * @deprecated Use apy(timeframe: one_day) instead
@@ -894,6 +997,12 @@ type MorphoVaultPositionPage = {
894
997
  /** Total number of items */
895
998
  totalCount: Scalars['Int']['output'];
896
999
  };
1000
+ /** Risk assessment for a Morpho vault */
1001
+ type MorphoVaultV1RiskAssessment = {
1002
+ __typename?: 'MorphoVaultV1RiskAssessment';
1003
+ /** Steakhouse risk assessment */
1004
+ steakhouse: Maybe<SteakhouseRiskAssessment>;
1005
+ };
897
1006
  type MorphoVaultV2 = Erc4626Vault & {
898
1007
  __typename?: 'MorphoVaultV2';
899
1008
  /**
@@ -983,6 +1092,8 @@ type MorphoVaultV2 = Erc4626Vault & {
983
1092
  * @deprecated Schema is subject to change, not yet stable
984
1093
  */
985
1094
  receiveSharesGateAddress: Scalars['Address']['output'];
1095
+ /** Risk assessment for the vault */
1096
+ riskAssessment: MorphoVaultV2RiskAssessment;
986
1097
  /**
987
1098
  * Send assets gate
988
1099
  * @deprecated Schema is subject to change, not yet stable
@@ -1017,6 +1128,12 @@ type MorphoVaultV2 = Erc4626Vault & {
1017
1128
  type MorphoVaultV2ApyArgs = {
1018
1129
  timeframe: ApyTimeframe;
1019
1130
  };
1131
+ /** Risk assessment for a Morpho vault */
1132
+ type MorphoVaultV2RiskAssessment = {
1133
+ __typename?: 'MorphoVaultV2RiskAssessment';
1134
+ /** Steakhouse risk assessment */
1135
+ steakhouse: Maybe<SteakhouseRiskAssessment>;
1136
+ };
1020
1137
  /** An arbitrary onchain amount */
1021
1138
  type OnchainAmount = {
1022
1139
  __typename?: 'OnchainAmount';
@@ -1051,6 +1168,7 @@ type Query = {
1051
1168
  aeraVaults: AeraVaultPage;
1052
1169
  /** Get supported chains (note that not all kits support all chains) */
1053
1170
  chains: Array<Chain>;
1171
+ erc4626VaultPositions: Erc4626VaultPositionPage;
1054
1172
  erc4626Vaults: Erc4626VaultPage;
1055
1173
  identities: Array<Identity>;
1056
1174
  identity: Maybe<Identity>;
@@ -1086,6 +1204,12 @@ type QueryAeraVaultsArgs = {
1086
1204
  type QueryChainsArgs = {
1087
1205
  where: InputMaybe<ChainFilter>;
1088
1206
  };
1207
+ type QueryErc4626VaultPositionsArgs = {
1208
+ after: InputMaybe<Scalars['String']['input']>;
1209
+ before: InputMaybe<Scalars['String']['input']>;
1210
+ limit: InputMaybe<Scalars['Int']['input']>;
1211
+ where: InputMaybe<Erc4626VaultPositionFilter>;
1212
+ };
1089
1213
  type QueryErc4626VaultsArgs = {
1090
1214
  after: InputMaybe<Scalars['String']['input']>;
1091
1215
  before: InputMaybe<Scalars['String']['input']>;
@@ -1145,6 +1269,14 @@ type Reward = {
1145
1269
  /** The token being rewarded */
1146
1270
  asset: Token;
1147
1271
  };
1272
+ /** Steakhouse risk assessment */
1273
+ type SteakhouseRiskAssessment = {
1274
+ __typename?: 'SteakhouseRiskAssessment';
1275
+ /** Rating of the risk assessment */
1276
+ rating: Scalars['String']['output'];
1277
+ /** Score of the risk assessment */
1278
+ score: Scalars['Float']['output'];
1279
+ };
1148
1280
  /** ERC-20 token with metadata and pricing information */
1149
1281
  type Token = {
1150
1282
  __typename?: 'Token';
@@ -1163,6 +1295,8 @@ type Token = {
1163
1295
  name: Scalars['String']['output'];
1164
1296
  /** Current price of the token in USD, null iff price data unavailable */
1165
1297
  priceUsd: Maybe<Scalars['Float']['output']>;
1298
+ /** Risk assessment for the token */
1299
+ riskAssessment: TokenRiskAssessment;
1166
1300
  /** The symbol of the token (e.g., 'ETH') */
1167
1301
  symbol: Scalars['String']['output'];
1168
1302
  };
@@ -1229,6 +1363,12 @@ type TokenInput = {
1229
1363
  /** The token contract address */
1230
1364
  tokenAddress: Scalars['Address']['input'];
1231
1365
  };
1366
+ /** Risk assessment for a token */
1367
+ type TokenRiskAssessment = {
1368
+ __typename?: 'TokenRiskAssessment';
1369
+ /** Steakhouse risk assessment */
1370
+ steakhouse: Maybe<SteakhouseRiskAssessment>;
1371
+ };
1232
1372
  type UnknownAdapter = Adapter & {
1233
1373
  __typename?: 'UnknownAdapter';
1234
1374
  /**
@@ -1246,6 +1386,13 @@ type UnknownAdapter = Adapter & {
1246
1386
  * @deprecated Schema is subject to change, not yet stable
1247
1387
  */
1248
1388
  isEnabled: Scalars['Boolean']['output'];
1389
+ /**
1390
+ * Name of the adapter
1391
+ * @deprecated Schema is subject to change, not yet stable
1392
+ */
1393
+ name: Maybe<Scalars['String']['output']>;
1394
+ /** Risk assessment for the adapter */
1395
+ riskAssessment: Maybe<AdapterRiskAssessment>;
1249
1396
  };
1250
1397
  type UnknownCap = Cap & {
1251
1398
  __typename?: 'UnknownCap';
@@ -1318,6 +1465,13 @@ type VaultV1Adapter = Adapter & {
1318
1465
  * @deprecated Schema is subject to change, not yet stable
1319
1466
  */
1320
1467
  isEnabled: Scalars['Boolean']['output'];
1468
+ /**
1469
+ * Name of the adapter
1470
+ * @deprecated Schema is subject to change, not yet stable
1471
+ */
1472
+ name: Maybe<Scalars['String']['output']>;
1473
+ /** Risk assessment for the adapter */
1474
+ riskAssessment: Maybe<AdapterRiskAssessment>;
1321
1475
  /**
1322
1476
  * Vault for the adapter
1323
1477
  * @deprecated Schema is subject to change, not yet stable
@@ -2848,4 +3002,4 @@ interface PossibleTypesResultData {
2848
3002
  }
2849
3003
  declare const result: PossibleTypesResultData;
2850
3004
 
2851
- export { type Adapter, type AdapterCap, type AeraVault, type AeraVaultFilter, type AeraVaultPage, type AeraVaultPosition, type AeraVaultPositionFilter, type AeraVaultPositionPage, type Apy, ApyFragment, type ApyFragmentFragment, ApySide, ApyTimeframe, type BoxVault, type BoxVaultAdapter, type BoxVaultApyArgs, type Cap, type Chain, type ChainFilter, ChainInfoFragment, type ChainInfoFragmentFragment, type CollateralExposureCap, type Curator, CuratorInfoFragment, type CuratorInfoFragmentFragment, type Erc4626Vault, type Erc4626VaultApyArgs, type Erc4626VaultFilter, type Erc4626VaultKey, type Erc4626VaultPage, Erc4626VaultProtocol, type Exact, type GenericErc4626Vault, type GenericErc4626VaultApyArgs, type Identity, IdentityResolver, type IdentityResolverOutput, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, Market, MarketHistoryData, type MarketHistoryDataQuery, type MarketHistoryDataQueryVariables, MarketIbrHistoryData, type MarketIbrHistoryDataQuery, type MarketIbrHistoryDataQueryVariables, MarketPositions, type MarketPositionsQuery, type MarketPositionsQueryVariables, type MarketQuery, type MarketQueryVariables, MarketSummaries, type MarketSummariesQuery, type MarketSummariesQueryVariables, MarketSummaryFragment, type MarketSummaryFragmentFragment, type MarketV1Adapter, type MarketV1ExposureCap, type Maybe, type MerklAccountReward, MerklAction, type MerklRewardInput, type MorphoIrm, type MorphoIrmCurvePoint, type MorphoMarket, type MorphoMarketFilter, type MorphoMarketHistorical, type MorphoMarketHistoricalEntry, type MorphoMarketPage, type MorphoMarketPosition, type MorphoMarketPositionFilter, type MorphoMarketPositionPage, type MorphoVault, type MorphoVaultApyArgs, type MorphoVaultFilter, type MorphoVaultHistorical, type MorphoVaultHistoricalEntry, type MorphoVaultMarketAllocation, type MorphoVaultMetadata, type MorphoVaultPage, type MorphoVaultPosition, type MorphoVaultPositionFilter, type MorphoVaultPositionPage, type MorphoVaultV2, type MorphoVaultV2ApyArgs, type OnchainAmount, type PageInfo, type PossibleTypesResultData, type Protocol, type Query, type QueryAeraVaultPositionsArgs, type QueryAeraVaultsArgs, type QueryChainsArgs, type QueryErc4626VaultsArgs, type QueryIdentitiesArgs, type QueryIdentityArgs, type QueryMerklAccountRewardsArgs, type QueryMorphoMarketPositionsArgs, type QueryMorphoMarketsArgs, type QueryMorphoVaultPositionsArgs, type QueryMorphoVaultsArgs, type QueryTokenHoldingsArgs, type QueryTokensArgs, type QueryVaultsArgs, type Reward, type Scalars, SupportedMarketIds, type SupportedMarketIdsQuery, type SupportedMarketIdsQueryVariables, type Token, type TokenAmount, TokenCategory, type TokenHistorical, type TokenHistoricalEntry, type TokenHolding, type TokenHoldingInput, TokenInfoFragment, type TokenInfoFragmentFragment, type TokenInput, type UnknownAdapter, type UnknownCap, Vault, VaultHistoryData, type VaultHistoryDataQuery, type VaultHistoryDataQueryVariables, type VaultInput, VaultMarketAllocationHistoryData, type VaultMarketAllocationHistoryDataQuery, type VaultMarketAllocationHistoryDataQueryVariables, VaultPositions, type VaultPositionsQuery, type VaultPositionsQueryVariables, VaultProtocol, type VaultQuery, type VaultQueryVariables, VaultSummaries, type VaultSummariesQuery, type VaultSummariesQueryVariables, VaultSummaryFragment, type VaultSummaryFragmentFragment, VaultType, type VaultV1Adapter, result as default };
3005
+ export { type Adapter, type AdapterCap, type AdapterRiskAssessment, type AeraPendingAction, type AeraVault, type AeraVaultFilter, type AeraVaultPage, type AeraVaultPosition, type AeraVaultPositionFilter, type AeraVaultPositionPage, type Apy, ApyFragment, type ApyFragmentFragment, ApySide, ApyTimeframe, type BoxVault, type BoxVaultAdapter, type BoxVaultApyArgs, type BoxVaultRiskAssessment, type Cap, type Chain, type ChainFilter, ChainInfoFragment, type ChainInfoFragmentFragment, type CollateralExposureCap, type Curator, CuratorInfoFragment, type CuratorInfoFragmentFragment, type Erc4626Vault, type Erc4626VaultApyArgs, type Erc4626VaultFilter, type Erc4626VaultKey, type Erc4626VaultPage, type Erc4626VaultPosition, type Erc4626VaultPositionFilter, type Erc4626VaultPositionKey, type Erc4626VaultPositionPage, Erc4626VaultProtocol, type Exact, type GenericErc4626Vault, type GenericErc4626VaultApyArgs, type GenericErc4626VaultPosition, type Identity, IdentityResolver, type IdentityResolverOutput, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, Market, MarketHistoryData, type MarketHistoryDataQuery, type MarketHistoryDataQueryVariables, MarketIbrHistoryData, type MarketIbrHistoryDataQuery, type MarketIbrHistoryDataQueryVariables, MarketPositions, type MarketPositionsQuery, type MarketPositionsQueryVariables, type MarketQuery, type MarketQueryVariables, MarketSummaries, type MarketSummariesQuery, type MarketSummariesQueryVariables, MarketSummaryFragment, type MarketSummaryFragmentFragment, type MarketV1Adapter, type MarketV1ExposureCap, type Maybe, type MerklAccountReward, MerklAction, type MerklRewardInput, type MorphoIrm, type MorphoIrmCurvePoint, type MorphoMarket, type MorphoMarketFilter, type MorphoMarketHistorical, type MorphoMarketHistoricalEntry, type MorphoMarketPage, type MorphoMarketPosition, type MorphoMarketPositionFilter, type MorphoMarketPositionPage, type MorphoMarketV1RiskAssessment, type MorphoVault, type MorphoVaultApyArgs, type MorphoVaultFilter, type MorphoVaultHistorical, type MorphoVaultHistoricalEntry, type MorphoVaultMarketAllocation, type MorphoVaultMetadata, type MorphoVaultPage, type MorphoVaultPosition, type MorphoVaultPositionFilter, type MorphoVaultPositionPage, type MorphoVaultV1RiskAssessment, type MorphoVaultV2, type MorphoVaultV2ApyArgs, type MorphoVaultV2RiskAssessment, type OnchainAmount, type PageInfo, type PossibleTypesResultData, type Protocol, type Query, type QueryAeraVaultPositionsArgs, type QueryAeraVaultsArgs, type QueryChainsArgs, type QueryErc4626VaultPositionsArgs, type QueryErc4626VaultsArgs, type QueryIdentitiesArgs, type QueryIdentityArgs, type QueryMerklAccountRewardsArgs, type QueryMorphoMarketPositionsArgs, type QueryMorphoMarketsArgs, type QueryMorphoVaultPositionsArgs, type QueryMorphoVaultsArgs, type QueryTokenHoldingsArgs, type QueryTokensArgs, type QueryVaultsArgs, type Reward, type Scalars, type SteakhouseRiskAssessment, SupportedMarketIds, type SupportedMarketIdsQuery, type SupportedMarketIdsQueryVariables, type Token, type TokenAmount, TokenCategory, type TokenHistorical, type TokenHistoricalEntry, type TokenHolding, type TokenHoldingInput, TokenInfoFragment, type TokenInfoFragmentFragment, type TokenInput, type TokenRiskAssessment, type UnknownAdapter, type UnknownCap, Vault, VaultHistoryData, type VaultHistoryDataQuery, type VaultHistoryDataQueryVariables, type VaultInput, VaultMarketAllocationHistoryData, type VaultMarketAllocationHistoryDataQuery, type VaultMarketAllocationHistoryDataQueryVariables, VaultPositions, type VaultPositionsQuery, type VaultPositionsQueryVariables, VaultProtocol, type VaultQuery, type VaultQueryVariables, VaultSummaries, type VaultSummariesQuery, type VaultSummariesQueryVariables, VaultSummaryFragment, type VaultSummaryFragmentFragment, VaultType, type VaultV1Adapter, result as default };
@@ -428,7 +428,7 @@ ${l}`,T=t`
428
428
  }
429
429
  }
430
430
  }
431
- `,C=t`
431
+ `,V=t`
432
432
  query SupportedMarketIds($chainIds: [ChainId!]!, $vaultAddresses: [Address!]!) {
433
433
  morphoVaults(where: {chainId_in: $chainIds, vaultAddress_in: $vaultAddresses}) {
434
434
  items {
@@ -443,7 +443,7 @@ ${l}`,T=t`
443
443
  }
444
444
  }
445
445
  }
446
- `,V=t`
446
+ `,C=t`
447
447
  query VaultHistoryData($chainId: ChainId!, $vaultId: Address!) {
448
448
  morphoVaults(where: {chainId_in: [$chainId], vaultAddress_in: [$vaultId]}) {
449
449
  items {
@@ -486,7 +486,7 @@ ${l}`,T=t`
486
486
  }
487
487
  }
488
488
  }
489
- `,$=t`
489
+ `,P=t`
490
490
  query VaultMarketAllocationHistoryData($chainId: ChainId!, $vaultId: Address!) {
491
491
  morphoVaults(where: {chainId_in: [$chainId], vaultAddress_in: [$vaultId]}) {
492
492
  items {
@@ -582,7 +582,7 @@ ${l}`,T=t`
582
582
  }
583
583
  }
584
584
  }
585
- `,v=t`
585
+ `,$=t`
586
586
  query MarketHistoryData($chainId: ChainId!, $marketId: Hex!) {
587
587
  morphoMarkets(where: {chainId_in: [$chainId], marketId_in: [$marketId]}) {
588
588
  items {
@@ -663,7 +663,7 @@ ${l}`,T=t`
663
663
  }
664
664
  }
665
665
  }
666
- `,P=t`
666
+ `,v=t`
667
667
  query MarketIBRHistoryData($chainId: ChainId!, $marketId: Hex!) {
668
668
  morphoMarkets(where: {chainId_in: [$chainId], marketId_in: [$marketId]}) {
669
669
  items {
@@ -684,4 +684,4 @@ ${l}`,T=t`
684
684
  }
685
685
  }
686
686
  }
687
- `,h={possibleTypes:{Adapter:["BoxVaultAdapter","MarketV1Adapter","UnknownAdapter","VaultV1Adapter"],Cap:["AdapterCap","CollateralExposureCap","MarketV1ExposureCap","UnknownCap"],Erc4626Vault:["BoxVault","GenericErc4626Vault","MorphoVault","MorphoVaultV2"]}},H=h;export{u as ApyFragment,m as ApySide,d as ApyTimeframe,p as ChainInfoFragment,l as CuratorInfoFragment,A as Erc4626VaultProtocol,c as IdentityResolver,w as Market,v as MarketHistoryData,P as MarketIbrHistoryData,f as MarketPositions,I as MarketSummaries,y as MarketSummaryFragment,_ as MerklAction,C as SupportedMarketIds,g as TokenCategory,o as TokenInfoFragment,x as Vault,V as VaultHistoryData,$ as VaultMarketAllocationHistoryData,T as VaultPositions,b as VaultProtocol,S as VaultSummaries,i as VaultSummaryFragment,k as VaultType,H as default};
687
+ `,h={possibleTypes:{Adapter:["BoxVaultAdapter","MarketV1Adapter","UnknownAdapter","VaultV1Adapter"],Cap:["AdapterCap","CollateralExposureCap","MarketV1ExposureCap","UnknownCap"],Erc4626Vault:["BoxVault","GenericErc4626Vault","MorphoVault","MorphoVaultV2"],Erc4626VaultPosition:["GenericErc4626VaultPosition"]}},H=h;export{u as ApyFragment,m as ApySide,d as ApyTimeframe,p as ChainInfoFragment,l as CuratorInfoFragment,A as Erc4626VaultProtocol,c as IdentityResolver,w as Market,$ as MarketHistoryData,v as MarketIbrHistoryData,f as MarketPositions,I as MarketSummaries,y as MarketSummaryFragment,_ as MerklAction,V as SupportedMarketIds,g as TokenCategory,o as TokenInfoFragment,x as Vault,C as VaultHistoryData,P as VaultMarketAllocationHistoryData,T as VaultPositions,b as VaultProtocol,S as VaultSummaries,i as VaultSummaryFragment,k as VaultType,H as default};
@@ -1,4 +1,4 @@
1
- "use strict";var i=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var S=(e,n)=>{for(var a in n)i(e,a,{get:n[a],enumerable:!0})},_=(e,n,a,p)=>{if(n&&typeof n=="object"||typeof n=="function")for(let s of I(n))!b.call(e,s)&&s!==a&&i(e,s,{get:()=>n[s],enumerable:!(p=c(n,s))||p.enumerable});return e};var M=e=>_(i({},"__esModule",{value:!0}),e);var h={};S(h,{Aggregation_Interval:()=>r,Block_OrderBy:()=>y,GetBlocksTimeStamp:()=>B,OrderDirection:()=>o,_SubgraphErrorPolicy_:()=>l,default:()=>m});module.exports=M(h);var u=require("@apollo/client"),r=(a=>(a.Day="day",a.Hour="hour",a))(r||{}),y=(t=>(t.Author="author",t.BaseFeePerGas="baseFeePerGas",t.Difficulty="difficulty",t.GasLimit="gasLimit",t.GasUsed="gasUsed",t.Hash="hash",t.Id="id",t.Number="number",t.ParentHash="parentHash",t.ReceiptsRoot="receiptsRoot",t.Size="size",t.StateRoot="stateRoot",t.Timestamp="timestamp",t.TotalDifficulty="totalDifficulty",t.TransactionsRoot="transactionsRoot",t.UnclesHash="unclesHash",t))(y||{}),o=(a=>(a.Asc="asc",a.Desc="desc",a))(o||{}),l=(a=>(a.Allow="allow",a.Deny="deny",a))(l||{}),B=u.gql`
1
+ "use strict";var u=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var S=(e,n)=>{for(var a in n)u(e,a,{get:n[a],enumerable:!0})},M=(e,n,a,i)=>{if(n&&typeof n=="object"||typeof n=="function")for(let s of I(n))!b.call(e,s)&&s!==a&&u(e,s,{get:()=>n[s],enumerable:!(i=c(n,s))||i.enumerable});return e};var _=e=>M(u({},"__esModule",{value:!0}),e);var h={};S(h,{Aggregation_Interval:()=>r,Block_OrderBy:()=>y,GetBlocksTimeStamp:()=>B,OrderDirection:()=>l,_SubgraphErrorPolicy_:()=>o,default:()=>m});module.exports=_(h);var p=require("@apollo/client"),r=(a=>(a.Day="day",a.Hour="hour",a))(r||{}),y=(t=>(t.Author="author",t.BaseFeePerGas="baseFeePerGas",t.Difficulty="difficulty",t.GasLimit="gasLimit",t.GasUsed="gasUsed",t.Hash="hash",t.Id="id",t.Number="number",t.ParentHash="parentHash",t.ReceiptsRoot="receiptsRoot",t.Size="size",t.StateRoot="stateRoot",t.Timestamp="timestamp",t.TotalDifficulty="totalDifficulty",t.TransactionsRoot="transactionsRoot",t.UnclesHash="unclesHash",t))(y||{}),l=(a=>(a.Asc="asc",a.Desc="desc",a))(l||{}),o=(a=>(a.Allow="allow",a.Deny="deny",a))(o||{}),B=p.gql`
2
2
  query GetBlocksTimeStamp($skip: Int!) {
3
3
  newest: blocks(first: 1, orderBy: timestamp, orderDirection: desc) {
4
4
  timestamp
@@ -292,30 +292,6 @@ type QueryBlocksArgs = {
292
292
  subgraphError?: _SubgraphErrorPolicy_;
293
293
  where?: InputMaybe<Block_Filter>;
294
294
  };
295
- type Subscription = {
296
- __typename?: 'Subscription';
297
- /** Access to subgraph metadata */
298
- _meta?: Maybe<_Meta_>;
299
- block?: Maybe<Block>;
300
- blocks: Array<Block>;
301
- };
302
- type Subscription_MetaArgs = {
303
- block?: InputMaybe<Block_Height>;
304
- };
305
- type SubscriptionBlockArgs = {
306
- block?: InputMaybe<Block_Height>;
307
- id: Scalars['ID']['input'];
308
- subgraphError?: _SubgraphErrorPolicy_;
309
- };
310
- type SubscriptionBlocksArgs = {
311
- block?: InputMaybe<Block_Height>;
312
- first?: InputMaybe<Scalars['Int']['input']>;
313
- orderBy?: InputMaybe<Block_OrderBy>;
314
- orderDirection?: InputMaybe<OrderDirection>;
315
- skip?: InputMaybe<Scalars['Int']['input']>;
316
- subgraphError?: _SubgraphErrorPolicy_;
317
- where?: InputMaybe<Block_Filter>;
318
- };
319
295
  type _Block_ = {
320
296
  __typename?: '_Block_';
321
297
  /** The hash of the block */
@@ -335,7 +311,6 @@ type _Meta_ = {
335
311
  * will be null if the _meta field has a block constraint that asks for
336
312
  * a block number. It will be filled if the _meta field has no block constraint
337
313
  * and therefore asks for the latest block
338
- *
339
314
  */
340
315
  block: _Block_;
341
316
  /** The deployment ID */
@@ -373,4 +348,4 @@ interface PossibleTypesResultData {
373
348
  }
374
349
  declare const result: PossibleTypesResultData;
375
350
 
376
- export { Aggregation_Interval, type Block, type BlockChangedFilter, type Block_Filter, type Block_Height, Block_OrderBy, type Exact, GetBlocksTimeStamp, type GetBlocksTimeStampQuery, type GetBlocksTimeStampQueryVariables, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryBlockArgs, type QueryBlocksArgs, type Query_MetaArgs, type Scalars, type Subscription, type SubscriptionBlockArgs, type SubscriptionBlocksArgs, type Subscription_MetaArgs, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
351
+ export { Aggregation_Interval, type Block, type BlockChangedFilter, type Block_Filter, type Block_Height, Block_OrderBy, type Exact, GetBlocksTimeStamp, type GetBlocksTimeStampQuery, type GetBlocksTimeStampQueryVariables, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryBlockArgs, type QueryBlocksArgs, type Query_MetaArgs, type Scalars, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
@@ -292,30 +292,6 @@ type QueryBlocksArgs = {
292
292
  subgraphError?: _SubgraphErrorPolicy_;
293
293
  where?: InputMaybe<Block_Filter>;
294
294
  };
295
- type Subscription = {
296
- __typename?: 'Subscription';
297
- /** Access to subgraph metadata */
298
- _meta?: Maybe<_Meta_>;
299
- block?: Maybe<Block>;
300
- blocks: Array<Block>;
301
- };
302
- type Subscription_MetaArgs = {
303
- block?: InputMaybe<Block_Height>;
304
- };
305
- type SubscriptionBlockArgs = {
306
- block?: InputMaybe<Block_Height>;
307
- id: Scalars['ID']['input'];
308
- subgraphError?: _SubgraphErrorPolicy_;
309
- };
310
- type SubscriptionBlocksArgs = {
311
- block?: InputMaybe<Block_Height>;
312
- first?: InputMaybe<Scalars['Int']['input']>;
313
- orderBy?: InputMaybe<Block_OrderBy>;
314
- orderDirection?: InputMaybe<OrderDirection>;
315
- skip?: InputMaybe<Scalars['Int']['input']>;
316
- subgraphError?: _SubgraphErrorPolicy_;
317
- where?: InputMaybe<Block_Filter>;
318
- };
319
295
  type _Block_ = {
320
296
  __typename?: '_Block_';
321
297
  /** The hash of the block */
@@ -335,7 +311,6 @@ type _Meta_ = {
335
311
  * will be null if the _meta field has a block constraint that asks for
336
312
  * a block number. It will be filled if the _meta field has no block constraint
337
313
  * and therefore asks for the latest block
338
- *
339
314
  */
340
315
  block: _Block_;
341
316
  /** The deployment ID */
@@ -373,4 +348,4 @@ interface PossibleTypesResultData {
373
348
  }
374
349
  declare const result: PossibleTypesResultData;
375
350
 
376
- export { Aggregation_Interval, type Block, type BlockChangedFilter, type Block_Filter, type Block_Height, Block_OrderBy, type Exact, GetBlocksTimeStamp, type GetBlocksTimeStampQuery, type GetBlocksTimeStampQueryVariables, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryBlockArgs, type QueryBlocksArgs, type Query_MetaArgs, type Scalars, type Subscription, type SubscriptionBlockArgs, type SubscriptionBlocksArgs, type Subscription_MetaArgs, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
351
+ export { Aggregation_Interval, type Block, type BlockChangedFilter, type Block_Filter, type Block_Height, Block_OrderBy, type Exact, GetBlocksTimeStamp, type GetBlocksTimeStampQuery, type GetBlocksTimeStampQueryVariables, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryBlockArgs, type QueryBlocksArgs, type Query_MetaArgs, type Scalars, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
@@ -1,4 +1,4 @@
1
- import{gql as n}from"@apollo/client";var e=(a=>(a.Day="day",a.Hour="hour",a))(e||{}),s=(t=>(t.Author="author",t.BaseFeePerGas="baseFeePerGas",t.Difficulty="difficulty",t.GasLimit="gasLimit",t.GasUsed="gasUsed",t.Hash="hash",t.Id="id",t.Number="number",t.ParentHash="parentHash",t.ReceiptsRoot="receiptsRoot",t.Size="size",t.StateRoot="stateRoot",t.Timestamp="timestamp",t.TotalDifficulty="totalDifficulty",t.TransactionsRoot="transactionsRoot",t.UnclesHash="unclesHash",t))(s||{}),i=(a=>(a.Asc="asc",a.Desc="desc",a))(i||{}),p=(a=>(a.Allow="allow",a.Deny="deny",a))(p||{}),y=n`
1
+ import{gql as n}from"@apollo/client";var e=(a=>(a.Day="day",a.Hour="hour",a))(e||{}),s=(t=>(t.Author="author",t.BaseFeePerGas="baseFeePerGas",t.Difficulty="difficulty",t.GasLimit="gasLimit",t.GasUsed="gasUsed",t.Hash="hash",t.Id="id",t.Number="number",t.ParentHash="parentHash",t.ReceiptsRoot="receiptsRoot",t.Size="size",t.StateRoot="stateRoot",t.Timestamp="timestamp",t.TotalDifficulty="totalDifficulty",t.TransactionsRoot="transactionsRoot",t.UnclesHash="unclesHash",t))(s||{}),u=(a=>(a.Asc="asc",a.Desc="desc",a))(u||{}),i=(a=>(a.Allow="allow",a.Deny="deny",a))(i||{}),y=n`
2
2
  query GetBlocksTimeStamp($skip: Int!) {
3
3
  newest: blocks(first: 1, orderBy: timestamp, orderDirection: desc) {
4
4
  timestamp
@@ -9,4 +9,4 @@ import{gql as n}from"@apollo/client";var e=(a=>(a.Day="day",a.Hour="hour",a))(e|
9
9
  number
10
10
  }
11
11
  }
12
- `,u={possibleTypes:{}},o=u;export{e as Aggregation_Interval,s as Block_OrderBy,y as GetBlocksTimeStamp,i as OrderDirection,p as _SubgraphErrorPolicy_,o as default};
12
+ `,p={possibleTypes:{}},l=p;export{e as Aggregation_Interval,s as Block_OrderBy,y as GetBlocksTimeStamp,u as OrderDirection,i as _SubgraphErrorPolicy_,l as default};
@@ -1,4 +1,4 @@
1
- "use strict";var y=Object.defineProperty;var tt=Object.getOwnPropertyDescriptor;var at=Object.getOwnPropertyNames;var et=Object.prototype.hasOwnProperty;var ot=(c,u)=>{for(var t in u)y(c,t,{get:u[t],enumerable:!0})},rt=(c,u,t,a)=>{if(u&&typeof u=="object"||typeof u=="function")for(let e of at(u))!et.call(c,e)&&e!==t&&y(c,e,{get:()=>u[e],enumerable:!(a=tt(u,e))||a.enumerable});return c};var nt=c=>rt(y({},"__esModule",{value:!0}),c);var mt={};ot(mt,{DynamicData:()=>S,GetGlobalLiquidityAndSwapVolume:()=>ct,GetPool:()=>st,GetPoolEvents:()=>ut,GetPoolHistoricalData:()=>it,GetPools:()=>lt,GetTokenCurrentPrices:()=>pt,GqlChain:()=>d,GqlContentNewsItemSource:()=>g,GqlPoolAddRemoveEventV3:()=>j,GqlPoolAprItemType:()=>G,GqlPoolEventType:()=>b,GqlPoolEventsDataRange:()=>P,GqlPoolFilterCategory:()=>q,GqlPoolJoinExitType:()=>A,GqlPoolNestingType:()=>I,GqlPoolOrderBy:()=>h,GqlPoolOrderDirection:()=>_,GqlPoolSnapshotDataRange:()=>D,GqlPoolSwapEventCowAmm:()=>z,GqlPoolSwapEventV3:()=>X,GqlPoolType:()=>B,GqlRewardVaultIncentiveOrderBy:()=>T,GqlRewardVaultIncentiveOrderDirection:()=>k,GqlRewardVaultOrderBy:()=>M,GqlRewardVaultOrderDirection:()=>x,GqlRewardVaultSnapshotDataRange:()=>v,GqlRewardVaultSnapshotResolution:()=>w,GqlSWberaVaultMetadataResolution:()=>V,GqlSorSwapType:()=>C,GqlStakeBeraVaultEventType:()=>R,GqlTokenChartDataRange:()=>E,GqlTokenType:()=>F,GqlUserVaultDepositOrderBy:()=>f,GqlUserVaultDepositOrderDirection:()=>U,GqlValidatorBlockUptimeStatus:()=>$,GqlValidatorBoostOrderBy:()=>N,GqlValidatorBoostOrderDirection:()=>L,GqlValidatorOrderBy:()=>H,GqlValidatorOrderDirection:()=>W,GqlVaultSnapshotDataRange:()=>O,MinimalPool:()=>K,MinimalPoolInList:()=>Y,PoolEvent:()=>Z,PoolHistoricalData:()=>J,RewardVault:()=>m,UserBalance:()=>Q,default:()=>St});module.exports=nt(mt);var n=require("@apollo/client"),d=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(d||{}),g=(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(g||{}),G=(i=>(i.Aura="AURA",i.IbYield="IB_YIELD",i.Locking="LOCKING",i.MabeetsEmissions="MABEETS_EMISSIONS",i.Merkl="MERKL",i.Nested="NESTED",i.Staking="STAKING",i.StakingBoost="STAKING_BOOST",i.Surplus="SURPLUS",i.SwapFee="SWAP_FEE",i.VebalEmissions="VEBAL_EMISSIONS",i.Voting="VOTING",i))(G||{}),b=(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(b||{}),P=(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),q=(p=>(p.BlackListed="BLACK_LISTED",p.Incentivized="INCENTIVIZED",p.Lrt="LRT",p.Points="POINTS",p.PointsEigenlayer="POINTS_EIGENLAYER",p.PointsGyro="POINTS_GYRO",p.PointsKelp="POINTS_KELP",p.PointsRenzo="POINTS_RENZO",p.PointsSwell="POINTS_SWELL",p.Superfest="SUPERFEST",p))(q||{}),A=(t=>(t.Exit="Exit",t.Join="Join",t))(A||{}),I=(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(I||{}),h=(r=>(r.Apr="apr",r.BgtApr="bgtApr",r.CombinedApr="combinedApr",r.Fees24h="fees24h",r.TotalLiquidity="totalLiquidity",r.TotalShares="totalShares",r.UserbalanceUsd="userbalanceUsd",r.Volume24h="volume24h",r))(h||{}),_=(t=>(t.Asc="asc",t.Desc="desc",t))(_||{}),D=(o=>(o.AllTime="ALL_TIME",o.NinetyDays="NINETY_DAYS",o.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",o.OneYear="ONE_YEAR",o.ThirtyDays="THIRTY_DAYS",o))(D||{}),B=(s=>(s.ComposableStable="COMPOSABLE_STABLE",s.CowAmm="COW_AMM",s.Element="ELEMENT",s.Fx="FX",s.Gyro="GYRO",s.Gyro3="GYRO3",s.Gyroe="GYROE",s.Investment="INVESTMENT",s.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",s.MetaStable="META_STABLE",s.PhantomStable="PHANTOM_STABLE",s.Stable="STABLE",s.Unknown="UNKNOWN",s.Weighted="WEIGHTED",s))(B||{}),T=(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k=(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M=(r=>(r.ActiveIncentivesRateUsd="activeIncentivesRateUsd",r.ActiveIncentivesValueUsd="activeIncentivesValueUsd",r.AllTimeBgtReceived="allTimeBGTReceived",r.Apr="apr",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.Last24hBgtReceived="last24hBGTReceived",r.ProjectedApr="projectedApr",r))(M||{}),x=(t=>(t.Asc="asc",t.Desc="desc",t))(x||{}),v=(e=>(e.NinetyDays="NINETY_DAYS",e.SevenDays="SEVEN_DAYS",e.SixtyDays="SIXTY_DAYS",e.ThirtyDays="THIRTY_DAYS",e))(v||{}),w=(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),V=(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(V||{}),C=(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(C||{}),R=(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(R||{}),E=(o=>(o.NinetyDay="NINETY_DAY",o.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",o.OneYear="ONE_YEAR",o.SevenDay="SEVEN_DAY",o.ThirtyDay="THIRTY_DAY",o))(E||{}),F=(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(F||{}),f=(u=>(u.Amount="amount",u))(f||{}),U=(t=>(t.Asc="asc",t.Desc="desc",t))(U||{}),$=(e=>(e.Inactive="INACTIVE",e.Offline="OFFLINE",e.Proposed="PROPOSED",e.Signed="SIGNED",e))($||{}),N=(o=>(o.ActiveBoostAmount="activeBoostAmount",o.LatestBlock="latestBlock",o.LatestBlockTime="latestBlockTime",o.QueuedBoostAmount="queuedBoostAmount",o.QueuedDropBoostAmount="queuedDropBoostAmount",o))(N||{}),L=(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H=(l=>(l.ActiveBoostAmount="activeBoostAmount",l.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",l.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",l.Apy="apy",l.BgtCapturePercentage="bgtCapturePercentage",l.BoostApr="boostApr",l.CommissionOnIncentives="commissionOnIncentives",l.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",l.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",l.QueuedBoostAmount="queuedBoostAmount",l.QueuedDropBoostAmount="queuedDropBoostAmount",l.RewardRate="rewardRate",l.StakedBeraAmount="stakedBeraAmount",l.UsersActiveBoostCount="usersActiveBoostCount",l.UsersQueuedBoostCount="usersQueuedBoostCount",l))(H||{}),W=(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O=(e=>(e.NinetyDays="NINETY_DAYS",e.SevenDays="SEVEN_DAYS",e.SixtyDays="SIXTY_DAYS",e.ThirtyDays="THIRTY_DAYS",e))(O||{}),S=n.gql`
1
+ "use strict";var y=Object.defineProperty;var tt=Object.getOwnPropertyDescriptor;var at=Object.getOwnPropertyNames;var et=Object.prototype.hasOwnProperty;var ot=(c,u)=>{for(var t in u)y(c,t,{get:u[t],enumerable:!0})},rt=(c,u,t,a)=>{if(u&&typeof u=="object"||typeof u=="function")for(let e of at(u))!et.call(c,e)&&e!==t&&y(c,e,{get:()=>u[e],enumerable:!(a=tt(u,e))||a.enumerable});return c};var nt=c=>rt(y({},"__esModule",{value:!0}),c);var mt={};ot(mt,{DynamicData:()=>S,GetGlobalLiquidityAndSwapVolume:()=>ct,GetPool:()=>st,GetPoolEvents:()=>ut,GetPoolHistoricalData:()=>it,GetPools:()=>lt,GetTokenCurrentPrices:()=>pt,GqlChain:()=>d,GqlContentNewsItemSource:()=>g,GqlPoolAddRemoveEventV3:()=>j,GqlPoolAprItemType:()=>G,GqlPoolEventType:()=>b,GqlPoolEventsDataRange:()=>P,GqlPoolFilterCategory:()=>q,GqlPoolJoinExitType:()=>A,GqlPoolNestingType:()=>I,GqlPoolOrderBy:()=>_,GqlPoolOrderDirection:()=>h,GqlPoolSnapshotDataRange:()=>D,GqlPoolSwapEventCowAmm:()=>z,GqlPoolSwapEventV3:()=>X,GqlPoolType:()=>B,GqlRewardVaultIncentiveOrderBy:()=>T,GqlRewardVaultIncentiveOrderDirection:()=>k,GqlRewardVaultOrderBy:()=>M,GqlRewardVaultOrderDirection:()=>x,GqlRewardVaultSnapshotDataRange:()=>v,GqlRewardVaultSnapshotResolution:()=>w,GqlSWberaVaultMetadataResolution:()=>V,GqlSorSwapType:()=>C,GqlStakeBeraVaultEventType:()=>R,GqlTokenChartDataRange:()=>E,GqlTokenType:()=>F,GqlUserVaultDepositOrderBy:()=>f,GqlUserVaultDepositOrderDirection:()=>U,GqlValidatorBlockUptimeStatus:()=>$,GqlValidatorBoostOrderBy:()=>N,GqlValidatorBoostOrderDirection:()=>L,GqlValidatorOrderBy:()=>H,GqlValidatorOrderDirection:()=>W,GqlVaultSnapshotDataRange:()=>Q,MinimalPool:()=>K,MinimalPoolInList:()=>Y,PoolEvent:()=>Z,PoolHistoricalData:()=>J,RewardVault:()=>m,UserBalance:()=>O,default:()=>St});module.exports=nt(mt);var n=require("@apollo/client"),d=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(d||{}),g=(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(g||{}),G=(i=>(i.Aura="AURA",i.IbYield="IB_YIELD",i.Locking="LOCKING",i.MabeetsEmissions="MABEETS_EMISSIONS",i.Merkl="MERKL",i.Nested="NESTED",i.Staking="STAKING",i.StakingBoost="STAKING_BOOST",i.Surplus="SURPLUS",i.SwapFee="SWAP_FEE",i.VebalEmissions="VEBAL_EMISSIONS",i.Voting="VOTING",i))(G||{}),b=(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(b||{}),P=(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),q=(p=>(p.BlackListed="BLACK_LISTED",p.Incentivized="INCENTIVIZED",p.Lrt="LRT",p.Points="POINTS",p.PointsEigenlayer="POINTS_EIGENLAYER",p.PointsGyro="POINTS_GYRO",p.PointsKelp="POINTS_KELP",p.PointsRenzo="POINTS_RENZO",p.PointsSwell="POINTS_SWELL",p.Superfest="SUPERFEST",p))(q||{}),A=(t=>(t.Exit="Exit",t.Join="Join",t))(A||{}),I=(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(I||{}),_=(r=>(r.Apr="apr",r.BgtApr="bgtApr",r.CombinedApr="combinedApr",r.Fees24h="fees24h",r.TotalLiquidity="totalLiquidity",r.TotalShares="totalShares",r.UserbalanceUsd="userbalanceUsd",r.Volume24h="volume24h",r))(_||{}),h=(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),D=(o=>(o.AllTime="ALL_TIME",o.NinetyDays="NINETY_DAYS",o.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",o.OneYear="ONE_YEAR",o.ThirtyDays="THIRTY_DAYS",o))(D||{}),B=(s=>(s.ComposableStable="COMPOSABLE_STABLE",s.CowAmm="COW_AMM",s.Element="ELEMENT",s.Fx="FX",s.Gyro="GYRO",s.Gyro3="GYRO3",s.Gyroe="GYROE",s.Investment="INVESTMENT",s.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",s.MetaStable="META_STABLE",s.PhantomStable="PHANTOM_STABLE",s.Stable="STABLE",s.Unknown="UNKNOWN",s.Weighted="WEIGHTED",s))(B||{}),T=(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k=(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M=(r=>(r.ActiveIncentivesRateUsd="activeIncentivesRateUsd",r.ActiveIncentivesValueUsd="activeIncentivesValueUsd",r.AllTimeBgtReceived="allTimeBGTReceived",r.Apr="apr",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.Last24hBgtReceived="last24hBGTReceived",r.ProjectedApr="projectedApr",r))(M||{}),x=(t=>(t.Asc="asc",t.Desc="desc",t))(x||{}),v=(e=>(e.NinetyDays="NINETY_DAYS",e.SevenDays="SEVEN_DAYS",e.SixtyDays="SIXTY_DAYS",e.ThirtyDays="THIRTY_DAYS",e))(v||{}),w=(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),V=(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(V||{}),C=(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(C||{}),R=(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(R||{}),E=(o=>(o.NinetyDay="NINETY_DAY",o.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",o.OneYear="ONE_YEAR",o.SevenDay="SEVEN_DAY",o.ThirtyDay="THIRTY_DAY",o))(E||{}),F=(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(F||{}),f=(u=>(u.Amount="amount",u))(f||{}),U=(t=>(t.Asc="asc",t.Desc="desc",t))(U||{}),$=(e=>(e.Inactive="INACTIVE",e.Offline="OFFLINE",e.Proposed="PROPOSED",e.Signed="SIGNED",e))($||{}),N=(o=>(o.ActiveBoostAmount="activeBoostAmount",o.LatestBlock="latestBlock",o.LatestBlockTime="latestBlockTime",o.QueuedBoostAmount="queuedBoostAmount",o.QueuedDropBoostAmount="queuedDropBoostAmount",o))(N||{}),L=(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H=(l=>(l.ActiveBoostAmount="activeBoostAmount",l.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",l.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",l.Apy="apy",l.BgtCapturePercentage="bgtCapturePercentage",l.BoostApr="boostApr",l.CommissionOnIncentives="commissionOnIncentives",l.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",l.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",l.QueuedBoostAmount="queuedBoostAmount",l.QueuedDropBoostAmount="queuedDropBoostAmount",l.RewardRate="rewardRate",l.StakedBeraAmount="stakedBeraAmount",l.UsersActiveBoostCount="usersActiveBoostCount",l.UsersQueuedBoostCount="usersQueuedBoostCount",l))(H||{}),W=(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),Q=(e=>(e.NinetyDays="NINETY_DAYS",e.SevenDays="SEVEN_DAYS",e.SixtyDays="SIXTY_DAYS",e.ThirtyDays="THIRTY_DAYS",e))(Q||{}),S=n.gql`
2
2
  fragment DynamicData on GqlPoolDynamicData {
3
3
  totalShares
4
4
  fees24h
@@ -13,7 +13,7 @@
13
13
  id
14
14
  }
15
15
  }
16
- `,Q=n.gql`
16
+ `,O=n.gql`
17
17
  fragment UserBalance on GqlPoolUserBalance {
18
18
  totalBalanceUsd
19
19
  walletBalance
@@ -57,7 +57,7 @@
57
57
  }
58
58
  }
59
59
  ${S}
60
- ${Q}
60
+ ${O}
61
61
  ${m}`,K=n.gql`
62
62
  fragment MinimalPool on GqlPoolBase {
63
63
  id
@@ -72,9 +72,24 @@ type Scalars = {
72
72
  output: any;
73
73
  };
74
74
  };
75
- type BendVaultsResponse = {
76
- __typename?: 'BendVaultsResponse';
77
- vaultAddresses: Array<Scalars['String']['output']>;
75
+ type BendVaultDynamicData = {
76
+ __typename?: 'BendVaultDynamicData';
77
+ nativeApy: Scalars['Float']['output'];
78
+ performanceFee: Scalars['Float']['output'];
79
+ performanceFeePercentage: Scalars['Float']['output'];
80
+ platformFee: Scalars['Float']['output'];
81
+ platformFeePercentage: Scalars['Float']['output'];
82
+ supplyApy1d: Scalars['Float']['output'];
83
+ supplyApy7d: Scalars['Float']['output'];
84
+ supplyApy30d: Scalars['Float']['output'];
85
+ totalApy: Scalars['Float']['output'];
86
+ vaultAddress: Scalars['Bytes']['output'];
87
+ };
88
+ type BendVaultResponse = {
89
+ __typename?: 'BendVaultResponse';
90
+ dynamicData?: Maybe<BendVaultDynamicData>;
91
+ loanTokenAddress: Scalars['Bytes']['output'];
92
+ vaultAddress: Scalars['Bytes']['output'];
78
93
  };
79
94
  type GqlBalancePoolAprItem = {
80
95
  __typename?: 'GqlBalancePoolAprItem';
@@ -2186,7 +2201,8 @@ type PaginatedValidatorsResponse = {
2186
2201
  };
2187
2202
  type Query = {
2188
2203
  __typename?: 'Query';
2189
- bendVaults?: Maybe<BendVaultsResponse>;
2204
+ bendVault?: Maybe<BendVaultResponse>;
2205
+ bendVaults: Array<BendVaultResponse>;
2190
2206
  blocksGetAverageBlockTime: Scalars['Float']['output'];
2191
2207
  blocksGetBlocksPerDay: Scalars['Float']['output'];
2192
2208
  blocksGetBlocksPerSecond: Scalars['Float']['output'];
@@ -2305,6 +2321,9 @@ type Query = {
2305
2321
  userGetSwaps: Array<GqlPoolSwap>;
2306
2322
  userGetTopBGTBalance: Array<GqlUserBgtBalance>;
2307
2323
  };
2324
+ type QueryBendVaultArgs = {
2325
+ vaultAddress: Scalars['Bytes']['input'];
2326
+ };
2308
2327
  type QueryContentGetNewsItemsArgs = {
2309
2328
  chain?: InputMaybe<GqlChain>;
2310
2329
  };
@@ -3848,4 +3867,4 @@ interface PossibleTypesResultData {
3848
3867
  }
3849
3868
  declare const result: PossibleTypesResultData;
3850
3869
 
3851
- export { type BendVaultsResponse, 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 };
3870
+ 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 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 QueryBendVaultArgs, 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 };