@berachain/graphql 0.4.16-beta.1 → 0.4.16-beta.3

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.
@@ -0,0 +1,160 @@
1
+ // src/honey/honey.codegen.ts
2
+ import { gql } from "@apollo/client";
3
+ var Aggregation_Current = /* @__PURE__ */ ((Aggregation_Current2) => {
4
+ Aggregation_Current2["Exclude"] = "exclude";
5
+ Aggregation_Current2["Include"] = "include";
6
+ return Aggregation_Current2;
7
+ })(Aggregation_Current || {});
8
+ var Aggregation_Interval = /* @__PURE__ */ ((Aggregation_Interval2) => {
9
+ Aggregation_Interval2["Day"] = "day";
10
+ Aggregation_Interval2["Hour"] = "hour";
11
+ return Aggregation_Interval2;
12
+ })(Aggregation_Interval || {});
13
+ var ChainTransaction_OrderBy = /* @__PURE__ */ ((ChainTransaction_OrderBy2) => {
14
+ ChainTransaction_OrderBy2["HoneyTxn"] = "honeyTxn";
15
+ ChainTransaction_OrderBy2["Id"] = "id";
16
+ ChainTransaction_OrderBy2["IsBasketMode"] = "isBasketMode";
17
+ ChainTransaction_OrderBy2["TxHash"] = "txHash";
18
+ ChainTransaction_OrderBy2["Type"] = "type";
19
+ return ChainTransaction_OrderBy2;
20
+ })(ChainTransaction_OrderBy || {});
21
+ var HoneyCollateral_OrderBy = /* @__PURE__ */ ((HoneyCollateral_OrderBy2) => {
22
+ HoneyCollateral_OrderBy2["Collateral"] = "collateral";
23
+ HoneyCollateral_OrderBy2["CollateralAmount"] = "collateralAmount";
24
+ HoneyCollateral_OrderBy2["HoneyTxn"] = "honeyTxn";
25
+ HoneyCollateral_OrderBy2["HoneyTxnFrom"] = "honeyTxn__from";
26
+ HoneyCollateral_OrderBy2["HoneyTxnHoneyAmount"] = "honeyTxn__honeyAmount";
27
+ HoneyCollateral_OrderBy2["HoneyTxnId"] = "honeyTxn__id";
28
+ HoneyCollateral_OrderBy2["HoneyTxnIsBasketMode"] = "honeyTxn__isBasketMode";
29
+ HoneyCollateral_OrderBy2["HoneyTxnTimestamp"] = "honeyTxn__timestamp";
30
+ HoneyCollateral_OrderBy2["HoneyTxnTo"] = "honeyTxn__to";
31
+ HoneyCollateral_OrderBy2["HoneyTxnType"] = "honeyTxn__type";
32
+ HoneyCollateral_OrderBy2["Id"] = "id";
33
+ return HoneyCollateral_OrderBy2;
34
+ })(HoneyCollateral_OrderBy || {});
35
+ var HoneySnapshot_OrderBy = /* @__PURE__ */ ((HoneySnapshot_OrderBy2) => {
36
+ HoneySnapshot_OrderBy2["AllTimeVolume"] = "allTimeVolume";
37
+ HoneySnapshot_OrderBy2["Id"] = "id";
38
+ HoneySnapshot_OrderBy2["MintVolume"] = "mintVolume";
39
+ HoneySnapshot_OrderBy2["RedeemVolume"] = "redeemVolume";
40
+ HoneySnapshot_OrderBy2["Timestamp"] = "timestamp";
41
+ HoneySnapshot_OrderBy2["TotalSupply"] = "totalSupply";
42
+ HoneySnapshot_OrderBy2["TotalVolume"] = "totalVolume";
43
+ return HoneySnapshot_OrderBy2;
44
+ })(HoneySnapshot_OrderBy || {});
45
+ var HoneySupplyDayData_OrderBy = /* @__PURE__ */ ((HoneySupplyDayData_OrderBy2) => {
46
+ HoneySupplyDayData_OrderBy2["Amount"] = "amount";
47
+ HoneySupplyDayData_OrderBy2["Id"] = "id";
48
+ HoneySupplyDayData_OrderBy2["Timestamp"] = "timestamp";
49
+ return HoneySupplyDayData_OrderBy2;
50
+ })(HoneySupplyDayData_OrderBy || {});
51
+ var HoneyTxnTimeseries_OrderBy = /* @__PURE__ */ ((HoneyTxnTimeseries_OrderBy2) => {
52
+ HoneyTxnTimeseries_OrderBy2["BlockNumber"] = "blockNumber";
53
+ HoneyTxnTimeseries_OrderBy2["From"] = "from";
54
+ HoneyTxnTimeseries_OrderBy2["HoneyAmount"] = "honeyAmount";
55
+ HoneyTxnTimeseries_OrderBy2["Id"] = "id";
56
+ HoneyTxnTimeseries_OrderBy2["Timestamp"] = "timestamp";
57
+ HoneyTxnTimeseries_OrderBy2["To"] = "to";
58
+ HoneyTxnTimeseries_OrderBy2["TotalSupply"] = "totalSupply";
59
+ HoneyTxnTimeseries_OrderBy2["TxHash"] = "txHash";
60
+ HoneyTxnTimeseries_OrderBy2["TxnType"] = "txnType";
61
+ return HoneyTxnTimeseries_OrderBy2;
62
+ })(HoneyTxnTimeseries_OrderBy || {});
63
+ var HoneyTxn_OrderBy = /* @__PURE__ */ ((HoneyTxn_OrderBy2) => {
64
+ HoneyTxn_OrderBy2["ChainTransaction"] = "chainTransaction";
65
+ HoneyTxn_OrderBy2["ChainTransactionId"] = "chainTransaction__id";
66
+ HoneyTxn_OrderBy2["ChainTransactionIsBasketMode"] = "chainTransaction__isBasketMode";
67
+ HoneyTxn_OrderBy2["ChainTransactionTxHash"] = "chainTransaction__txHash";
68
+ HoneyTxn_OrderBy2["ChainTransactionType"] = "chainTransaction__type";
69
+ HoneyTxn_OrderBy2["Collateral"] = "collateral";
70
+ HoneyTxn_OrderBy2["From"] = "from";
71
+ HoneyTxn_OrderBy2["HoneyAmount"] = "honeyAmount";
72
+ HoneyTxn_OrderBy2["Id"] = "id";
73
+ HoneyTxn_OrderBy2["IsBasketMode"] = "isBasketMode";
74
+ HoneyTxn_OrderBy2["Timestamp"] = "timestamp";
75
+ HoneyTxn_OrderBy2["To"] = "to";
76
+ HoneyTxn_OrderBy2["Type"] = "type";
77
+ return HoneyTxn_OrderBy2;
78
+ })(HoneyTxn_OrderBy || {});
79
+ var OrderDirection = /* @__PURE__ */ ((OrderDirection2) => {
80
+ OrderDirection2["Asc"] = "asc";
81
+ OrderDirection2["Desc"] = "desc";
82
+ return OrderDirection2;
83
+ })(OrderDirection || {});
84
+ var TxnType = /* @__PURE__ */ ((TxnType2) => {
85
+ TxnType2["Mint"] = "MINT";
86
+ TxnType2["Redeem"] = "REDEEM";
87
+ return TxnType2;
88
+ })(TxnType || {});
89
+ var _SubgraphErrorPolicy_ = /* @__PURE__ */ ((_SubgraphErrorPolicy_2) => {
90
+ _SubgraphErrorPolicy_2["Allow"] = "allow";
91
+ _SubgraphErrorPolicy_2["Deny"] = "deny";
92
+ return _SubgraphErrorPolicy_2;
93
+ })(_SubgraphErrorPolicy_ || {});
94
+ var HoneyTxnData = gql`
95
+ fragment HoneyTxnData on HoneyTxn {
96
+ timestamp
97
+ from
98
+ to
99
+ type
100
+ honeyAmount
101
+ chainTransaction {
102
+ txHash
103
+ }
104
+ collateral {
105
+ collateral
106
+ collateralAmount
107
+ }
108
+ }
109
+ `;
110
+ var HoneySnapshotData = gql`
111
+ fragment HoneySnapshotData on HoneySnapshot {
112
+ mintVolume
113
+ redeemVolume
114
+ timestamp
115
+ totalSupply
116
+ totalVolume
117
+ }
118
+ `;
119
+ var GetHoneyTxn = gql`
120
+ query GetHoneyTxn($page: Int!, $limit: Int!, $where: HoneyTxn_filter) {
121
+ honeyTxns(
122
+ skip: $page
123
+ first: $limit
124
+ orderBy: timestamp
125
+ orderDirection: desc
126
+ where: $where
127
+ ) {
128
+ ...HoneyTxnData
129
+ }
130
+ }
131
+ ${HoneyTxnData}`;
132
+ var GetSnapshots = gql`
133
+ query GetSnapshots($interval: Aggregation_interval!, $first: Int = 24) {
134
+ honeySnapshots(interval: $interval, first: $first) {
135
+ ...HoneySnapshotData
136
+ }
137
+ }
138
+ ${HoneySnapshotData}`;
139
+ var result = {
140
+ "possibleTypes": {}
141
+ };
142
+ var honey_codegen_default = result;
143
+ export {
144
+ Aggregation_Current,
145
+ Aggregation_Interval,
146
+ ChainTransaction_OrderBy,
147
+ GetHoneyTxn,
148
+ GetSnapshots,
149
+ HoneyCollateral_OrderBy,
150
+ HoneySnapshotData,
151
+ HoneySnapshot_OrderBy,
152
+ HoneySupplyDayData_OrderBy,
153
+ HoneyTxnData,
154
+ HoneyTxnTimeseries_OrderBy,
155
+ HoneyTxn_OrderBy,
156
+ OrderDirection,
157
+ TxnType,
158
+ _SubgraphErrorPolicy_,
159
+ honey_codegen_default as default
160
+ };
@@ -3430,24 +3430,6 @@ type GetUserValidatorInformationQuery = {
3430
3430
  }>;
3431
3431
  };
3432
3432
  };
3433
- type GetBendVaultsQueryVariables = Exact<{
3434
- [key: string]: never;
3435
- }>;
3436
- type GetBendVaultsQuery = {
3437
- __typename?: 'Query';
3438
- bendVaults: Array<{
3439
- __typename?: 'BendVaultResponse';
3440
- vaultAddress: `0x${string}`;
3441
- loanTokenAddress: `0x${string}`;
3442
- dynamicData?: {
3443
- __typename?: 'BendVaultDynamicData';
3444
- totalApy: number;
3445
- nativeApy: number;
3446
- platformFee: number;
3447
- performanceFee: number;
3448
- } | null;
3449
- }>;
3450
- };
3451
3433
  declare const ApiMinimalVaultIncentive: _apollo_client.DocumentNode;
3452
3434
  declare const ApiValidatorMinimal: _apollo_client.DocumentNode;
3453
3435
  declare const ApiVaultIncentive: _apollo_client.DocumentNode;
@@ -3469,7 +3451,6 @@ declare const GetVaultHistory: _apollo_client.DocumentNode;
3469
3451
  declare const GetSWberaVaultMetadata: _apollo_client.DocumentNode;
3470
3452
  declare const GetSWberaVaultSnapshots: _apollo_client.DocumentNode;
3471
3453
  declare const GetUserValidatorInformation: _apollo_client.DocumentNode;
3472
- declare const GetBendVaults: _apollo_client.DocumentNode;
3473
3454
  interface PossibleTypesResultData {
3474
3455
  possibleTypes: {
3475
3456
  [key: string]: string[];
@@ -3477,4 +3458,4 @@ interface PossibleTypesResultData {
3477
3458
  }
3478
3459
  declare const result: PossibleTypesResultData;
3479
3460
 
3480
- export { ApiMinimalVaultIncentive, type ApiMinimalVaultIncentiveFragment, ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorInList, type ApiValidatorInListFragment, ApiValidatorIncentive, type ApiValidatorIncentiveFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiValidatorRewardAllocationWeight, type ApiValidatorRewardAllocationWeightFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, GetBendVaults, type GetBendVaultsQuery, type GetBendVaultsQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserValidatorInformation, type GetUserValidatorInformationQuery, type GetUserValidatorInformationQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserBgtBalance, type GqlUserPoolBalance, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorInList, type GqlValidatorIncentive, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, type Scalars, type Token, result as default };
3461
+ export { ApiMinimalVaultIncentive, type ApiMinimalVaultIncentiveFragment, ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorInList, type ApiValidatorInListFragment, ApiValidatorIncentive, type ApiValidatorIncentiveFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiValidatorRewardAllocationWeight, type ApiValidatorRewardAllocationWeightFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserValidatorInformation, type GetUserValidatorInformationQuery, type GetUserValidatorInformationQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserBgtBalance, type GqlUserPoolBalance, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorInList, type GqlValidatorIncentive, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, type Scalars, type Token, result as default };