@berachain/graphql 0.4.12 → 0.4.14

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,351 @@
1
+ import * as _apollo_client from '@apollo/client';
2
+
3
+ type Maybe<T> = T | null;
4
+ type InputMaybe<T> = Maybe<T>;
5
+ type Exact<T extends {
6
+ [key: string]: unknown;
7
+ }> = {
8
+ [K in keyof T]: T[K];
9
+ };
10
+ type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
11
+ [SubKey in K]?: Maybe<T[SubKey]>;
12
+ };
13
+ type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
14
+ [SubKey in K]: Maybe<T[SubKey]>;
15
+ };
16
+ type MakeEmpty<T extends {
17
+ [key: string]: unknown;
18
+ }, K extends keyof T> = {
19
+ [_ in K]?: never;
20
+ };
21
+ type Incremental<T> = T | {
22
+ [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
23
+ };
24
+ /** All built-in and custom scalars, mapped to their actual values */
25
+ type Scalars = {
26
+ ID: {
27
+ input: string;
28
+ output: string;
29
+ };
30
+ String: {
31
+ input: string;
32
+ output: string;
33
+ };
34
+ Boolean: {
35
+ input: boolean;
36
+ output: boolean;
37
+ };
38
+ Int: {
39
+ input: number;
40
+ output: number;
41
+ };
42
+ Float: {
43
+ input: number;
44
+ output: number;
45
+ };
46
+ BigDecimal: {
47
+ input: string;
48
+ output: string;
49
+ };
50
+ BigInt: {
51
+ input: string;
52
+ output: string;
53
+ };
54
+ Bytes: {
55
+ input: `0x${string}`;
56
+ output: `0x${string}`;
57
+ };
58
+ Int8: {
59
+ input: string;
60
+ output: string;
61
+ };
62
+ Timestamp: {
63
+ input: string;
64
+ output: string;
65
+ };
66
+ };
67
+ declare enum Aggregation_Interval {
68
+ Day = "day",
69
+ Hour = "hour"
70
+ }
71
+ type Block = {
72
+ __typename?: 'Block';
73
+ author: Scalars['Bytes']['output'];
74
+ baseFeePerGas?: Maybe<Scalars['BigInt']['output']>;
75
+ difficulty: Scalars['BigInt']['output'];
76
+ gasLimit: Scalars['BigInt']['output'];
77
+ gasUsed: Scalars['BigInt']['output'];
78
+ hash: Scalars['Bytes']['output'];
79
+ id: Scalars['Bytes']['output'];
80
+ number: Scalars['BigInt']['output'];
81
+ parentHash: Scalars['Bytes']['output'];
82
+ receiptsRoot: Scalars['Bytes']['output'];
83
+ size?: Maybe<Scalars['BigInt']['output']>;
84
+ stateRoot: Scalars['Bytes']['output'];
85
+ timestamp: Scalars['BigInt']['output'];
86
+ totalDifficulty: Scalars['BigInt']['output'];
87
+ transactionsRoot: Scalars['Bytes']['output'];
88
+ unclesHash: Scalars['Bytes']['output'];
89
+ };
90
+ type BlockChangedFilter = {
91
+ number_gte: Scalars['Int']['input'];
92
+ };
93
+ type Block_Filter = {
94
+ /** Filter for the block changed event. */
95
+ _change_block?: InputMaybe<BlockChangedFilter>;
96
+ and?: InputMaybe<Array<InputMaybe<Block_Filter>>>;
97
+ author?: InputMaybe<Scalars['Bytes']['input']>;
98
+ author_contains?: InputMaybe<Scalars['Bytes']['input']>;
99
+ author_gt?: InputMaybe<Scalars['Bytes']['input']>;
100
+ author_gte?: InputMaybe<Scalars['Bytes']['input']>;
101
+ author_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
102
+ author_lt?: InputMaybe<Scalars['Bytes']['input']>;
103
+ author_lte?: InputMaybe<Scalars['Bytes']['input']>;
104
+ author_not?: InputMaybe<Scalars['Bytes']['input']>;
105
+ author_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
106
+ author_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
107
+ baseFeePerGas?: InputMaybe<Scalars['BigInt']['input']>;
108
+ baseFeePerGas_gt?: InputMaybe<Scalars['BigInt']['input']>;
109
+ baseFeePerGas_gte?: InputMaybe<Scalars['BigInt']['input']>;
110
+ baseFeePerGas_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
111
+ baseFeePerGas_lt?: InputMaybe<Scalars['BigInt']['input']>;
112
+ baseFeePerGas_lte?: InputMaybe<Scalars['BigInt']['input']>;
113
+ baseFeePerGas_not?: InputMaybe<Scalars['BigInt']['input']>;
114
+ baseFeePerGas_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
115
+ difficulty?: InputMaybe<Scalars['BigInt']['input']>;
116
+ difficulty_gt?: InputMaybe<Scalars['BigInt']['input']>;
117
+ difficulty_gte?: InputMaybe<Scalars['BigInt']['input']>;
118
+ difficulty_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
119
+ difficulty_lt?: InputMaybe<Scalars['BigInt']['input']>;
120
+ difficulty_lte?: InputMaybe<Scalars['BigInt']['input']>;
121
+ difficulty_not?: InputMaybe<Scalars['BigInt']['input']>;
122
+ difficulty_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
123
+ gasLimit?: InputMaybe<Scalars['BigInt']['input']>;
124
+ gasLimit_gt?: InputMaybe<Scalars['BigInt']['input']>;
125
+ gasLimit_gte?: InputMaybe<Scalars['BigInt']['input']>;
126
+ gasLimit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
127
+ gasLimit_lt?: InputMaybe<Scalars['BigInt']['input']>;
128
+ gasLimit_lte?: InputMaybe<Scalars['BigInt']['input']>;
129
+ gasLimit_not?: InputMaybe<Scalars['BigInt']['input']>;
130
+ gasLimit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
131
+ gasUsed?: InputMaybe<Scalars['BigInt']['input']>;
132
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']['input']>;
133
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']['input']>;
134
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
135
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']['input']>;
136
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']['input']>;
137
+ gasUsed_not?: InputMaybe<Scalars['BigInt']['input']>;
138
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
139
+ hash?: InputMaybe<Scalars['Bytes']['input']>;
140
+ hash_contains?: InputMaybe<Scalars['Bytes']['input']>;
141
+ hash_gt?: InputMaybe<Scalars['Bytes']['input']>;
142
+ hash_gte?: InputMaybe<Scalars['Bytes']['input']>;
143
+ hash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
144
+ hash_lt?: InputMaybe<Scalars['Bytes']['input']>;
145
+ hash_lte?: InputMaybe<Scalars['Bytes']['input']>;
146
+ hash_not?: InputMaybe<Scalars['Bytes']['input']>;
147
+ hash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
148
+ hash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
149
+ id?: InputMaybe<Scalars['Bytes']['input']>;
150
+ id_contains?: InputMaybe<Scalars['Bytes']['input']>;
151
+ id_gt?: InputMaybe<Scalars['Bytes']['input']>;
152
+ id_gte?: InputMaybe<Scalars['Bytes']['input']>;
153
+ id_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
154
+ id_lt?: InputMaybe<Scalars['Bytes']['input']>;
155
+ id_lte?: InputMaybe<Scalars['Bytes']['input']>;
156
+ id_not?: InputMaybe<Scalars['Bytes']['input']>;
157
+ id_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
158
+ id_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
159
+ number?: InputMaybe<Scalars['BigInt']['input']>;
160
+ number_gt?: InputMaybe<Scalars['BigInt']['input']>;
161
+ number_gte?: InputMaybe<Scalars['BigInt']['input']>;
162
+ number_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
163
+ number_lt?: InputMaybe<Scalars['BigInt']['input']>;
164
+ number_lte?: InputMaybe<Scalars['BigInt']['input']>;
165
+ number_not?: InputMaybe<Scalars['BigInt']['input']>;
166
+ number_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
167
+ or?: InputMaybe<Array<InputMaybe<Block_Filter>>>;
168
+ parentHash?: InputMaybe<Scalars['Bytes']['input']>;
169
+ parentHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
170
+ parentHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
171
+ parentHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
172
+ parentHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
173
+ parentHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
174
+ parentHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
175
+ parentHash_not?: InputMaybe<Scalars['Bytes']['input']>;
176
+ parentHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
177
+ parentHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
178
+ receiptsRoot?: InputMaybe<Scalars['Bytes']['input']>;
179
+ receiptsRoot_contains?: InputMaybe<Scalars['Bytes']['input']>;
180
+ receiptsRoot_gt?: InputMaybe<Scalars['Bytes']['input']>;
181
+ receiptsRoot_gte?: InputMaybe<Scalars['Bytes']['input']>;
182
+ receiptsRoot_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
183
+ receiptsRoot_lt?: InputMaybe<Scalars['Bytes']['input']>;
184
+ receiptsRoot_lte?: InputMaybe<Scalars['Bytes']['input']>;
185
+ receiptsRoot_not?: InputMaybe<Scalars['Bytes']['input']>;
186
+ receiptsRoot_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
187
+ receiptsRoot_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
188
+ size?: InputMaybe<Scalars['BigInt']['input']>;
189
+ size_gt?: InputMaybe<Scalars['BigInt']['input']>;
190
+ size_gte?: InputMaybe<Scalars['BigInt']['input']>;
191
+ size_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
192
+ size_lt?: InputMaybe<Scalars['BigInt']['input']>;
193
+ size_lte?: InputMaybe<Scalars['BigInt']['input']>;
194
+ size_not?: InputMaybe<Scalars['BigInt']['input']>;
195
+ size_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
196
+ stateRoot?: InputMaybe<Scalars['Bytes']['input']>;
197
+ stateRoot_contains?: InputMaybe<Scalars['Bytes']['input']>;
198
+ stateRoot_gt?: InputMaybe<Scalars['Bytes']['input']>;
199
+ stateRoot_gte?: InputMaybe<Scalars['Bytes']['input']>;
200
+ stateRoot_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
201
+ stateRoot_lt?: InputMaybe<Scalars['Bytes']['input']>;
202
+ stateRoot_lte?: InputMaybe<Scalars['Bytes']['input']>;
203
+ stateRoot_not?: InputMaybe<Scalars['Bytes']['input']>;
204
+ stateRoot_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
205
+ stateRoot_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
206
+ timestamp?: InputMaybe<Scalars['BigInt']['input']>;
207
+ timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
208
+ timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
209
+ timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
210
+ timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
211
+ timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
212
+ timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
213
+ timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
214
+ totalDifficulty?: InputMaybe<Scalars['BigInt']['input']>;
215
+ totalDifficulty_gt?: InputMaybe<Scalars['BigInt']['input']>;
216
+ totalDifficulty_gte?: InputMaybe<Scalars['BigInt']['input']>;
217
+ totalDifficulty_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
218
+ totalDifficulty_lt?: InputMaybe<Scalars['BigInt']['input']>;
219
+ totalDifficulty_lte?: InputMaybe<Scalars['BigInt']['input']>;
220
+ totalDifficulty_not?: InputMaybe<Scalars['BigInt']['input']>;
221
+ totalDifficulty_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
222
+ transactionsRoot?: InputMaybe<Scalars['Bytes']['input']>;
223
+ transactionsRoot_contains?: InputMaybe<Scalars['Bytes']['input']>;
224
+ transactionsRoot_gt?: InputMaybe<Scalars['Bytes']['input']>;
225
+ transactionsRoot_gte?: InputMaybe<Scalars['Bytes']['input']>;
226
+ transactionsRoot_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
227
+ transactionsRoot_lt?: InputMaybe<Scalars['Bytes']['input']>;
228
+ transactionsRoot_lte?: InputMaybe<Scalars['Bytes']['input']>;
229
+ transactionsRoot_not?: InputMaybe<Scalars['Bytes']['input']>;
230
+ transactionsRoot_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
231
+ transactionsRoot_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
232
+ unclesHash?: InputMaybe<Scalars['Bytes']['input']>;
233
+ unclesHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
234
+ unclesHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
235
+ unclesHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
236
+ unclesHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
237
+ unclesHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
238
+ unclesHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
239
+ unclesHash_not?: InputMaybe<Scalars['Bytes']['input']>;
240
+ unclesHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
241
+ unclesHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
242
+ };
243
+ type Block_Height = {
244
+ hash?: InputMaybe<Scalars['Bytes']['input']>;
245
+ number?: InputMaybe<Scalars['Int']['input']>;
246
+ number_gte?: InputMaybe<Scalars['Int']['input']>;
247
+ };
248
+ declare enum Block_OrderBy {
249
+ Author = "author",
250
+ BaseFeePerGas = "baseFeePerGas",
251
+ Difficulty = "difficulty",
252
+ GasLimit = "gasLimit",
253
+ GasUsed = "gasUsed",
254
+ Hash = "hash",
255
+ Id = "id",
256
+ Number = "number",
257
+ ParentHash = "parentHash",
258
+ ReceiptsRoot = "receiptsRoot",
259
+ Size = "size",
260
+ StateRoot = "stateRoot",
261
+ Timestamp = "timestamp",
262
+ TotalDifficulty = "totalDifficulty",
263
+ TransactionsRoot = "transactionsRoot",
264
+ UnclesHash = "unclesHash"
265
+ }
266
+ /** Defines the order direction, either ascending or descending */
267
+ declare enum OrderDirection {
268
+ Asc = "asc",
269
+ Desc = "desc"
270
+ }
271
+ type Query = {
272
+ __typename?: 'Query';
273
+ /** Access to subgraph metadata */
274
+ _meta?: Maybe<_Meta_>;
275
+ block?: Maybe<Block>;
276
+ blocks: Array<Block>;
277
+ };
278
+ type Query_MetaArgs = {
279
+ block?: InputMaybe<Block_Height>;
280
+ };
281
+ type QueryBlockArgs = {
282
+ block?: InputMaybe<Block_Height>;
283
+ id: Scalars['ID']['input'];
284
+ subgraphError?: _SubgraphErrorPolicy_;
285
+ };
286
+ type QueryBlocksArgs = {
287
+ block?: InputMaybe<Block_Height>;
288
+ first?: InputMaybe<Scalars['Int']['input']>;
289
+ orderBy?: InputMaybe<Block_OrderBy>;
290
+ orderDirection?: InputMaybe<OrderDirection>;
291
+ skip?: InputMaybe<Scalars['Int']['input']>;
292
+ subgraphError?: _SubgraphErrorPolicy_;
293
+ where?: InputMaybe<Block_Filter>;
294
+ };
295
+ type _Block_ = {
296
+ __typename?: '_Block_';
297
+ /** The hash of the block */
298
+ hash?: Maybe<Scalars['Bytes']['output']>;
299
+ /** The block number */
300
+ number: Scalars['Int']['output'];
301
+ /** The hash of the parent block */
302
+ parentHash?: Maybe<Scalars['Bytes']['output']>;
303
+ /** Integer representation of the timestamp stored in blocks for the chain */
304
+ timestamp?: Maybe<Scalars['Int']['output']>;
305
+ };
306
+ /** The type for the top-level _meta field */
307
+ type _Meta_ = {
308
+ __typename?: '_Meta_';
309
+ /**
310
+ * Information about a specific subgraph block. The hash of the block
311
+ * will be null if the _meta field has a block constraint that asks for
312
+ * a block number. It will be filled if the _meta field has no block constraint
313
+ * and therefore asks for the latest block
314
+ */
315
+ block: _Block_;
316
+ /** The deployment ID */
317
+ deployment: Scalars['String']['output'];
318
+ /** If `true`, the subgraph encountered indexing errors at some past block */
319
+ hasIndexingErrors: Scalars['Boolean']['output'];
320
+ };
321
+ declare enum _SubgraphErrorPolicy_ {
322
+ /** Data will be returned even if the subgraph has indexing errors */
323
+ Allow = "allow",
324
+ /** If the subgraph has indexing errors, data will be omitted. The default. */
325
+ Deny = "deny"
326
+ }
327
+ type GetBlocksTimeStampQueryVariables = Exact<{
328
+ skip: Scalars['Int']['input'];
329
+ }>;
330
+ type GetBlocksTimeStampQuery = {
331
+ __typename?: 'Query';
332
+ newest: Array<{
333
+ __typename?: 'Block';
334
+ timestamp: string;
335
+ number: string;
336
+ }>;
337
+ oldest: Array<{
338
+ __typename?: 'Block';
339
+ timestamp: string;
340
+ number: string;
341
+ }>;
342
+ };
343
+ declare const GetBlocksTimeStamp: _apollo_client.DocumentNode;
344
+ interface PossibleTypesResultData {
345
+ possibleTypes: {
346
+ [key: string]: string[];
347
+ };
348
+ }
349
+ declare const result: PossibleTypesResultData;
350
+
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 };
@@ -0,0 +1,12 @@
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
+ query GetBlocksTimeStamp($skip: Int!) {
3
+ newest: blocks(first: 1, orderBy: timestamp, orderDirection: desc) {
4
+ timestamp
5
+ number
6
+ }
7
+ oldest: blocks(first: 1, orderBy: timestamp, orderDirection: desc, skip: $skip) {
8
+ timestamp
9
+ number
10
+ }
11
+ }
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 j=Object.getOwnPropertyDescriptor;var Z=Object.getOwnPropertyNames;var tt=Object.prototype.hasOwnProperty;var at=(c,u)=>{for(var t in u)y(c,t,{get:u[t],enumerable:!0})},et=(c,u,t,e)=>{if(u&&typeof u=="object"||typeof u=="function")for(let n of Z(u))!tt.call(c,n)&&n!==t&&y(c,n,{get:()=>u[n],enumerable:!(e=j(u,n))||e.enumerable});return c};var ot=c=>et(y({},"__esModule",{value:!0}),c);var yt={};at(yt,{DynamicData:()=>S,GetGlobalLiquidityAndSwapVolume:()=>ut,GetPool:()=>nt,GetPoolEvents:()=>st,GetPoolHistoricalData:()=>lt,GetPools:()=>rt,GetTokenCurrentPrices:()=>it,GqlChain:()=>d,GqlPoolAddRemoveEventV3:()=>z,GqlPoolAprItemType:()=>g,GqlPoolEventType:()=>G,GqlPoolEventsDataRange:()=>b,GqlPoolFilterCategory:()=>q,GqlPoolJoinExitType:()=>P,GqlPoolNestingType:()=>A,GqlPoolOrderBy:()=>I,GqlPoolOrderDirection:()=>_,GqlPoolSnapshotDataRange:()=>h,GqlPoolSwapEventCowAmm:()=>K,GqlPoolSwapEventV3:()=>J,GqlPoolType:()=>D,GqlRewardVaultIncentiveOrderBy:()=>B,GqlRewardVaultIncentiveOrderDirection:()=>T,GqlRewardVaultOrderBy:()=>k,GqlRewardVaultOrderDirection:()=>v,GqlRewardVaultSnapshotDataRange:()=>M,GqlRewardVaultSnapshotResolution:()=>x,GqlSWberaVaultMetadataResolution:()=>w,GqlSorSwapType:()=>V,GqlTokenChartDataRange:()=>C,GqlTokenType:()=>R,GqlUserVaultDepositOrderBy:()=>E,GqlUserVaultDepositOrderDirection:()=>f,GqlValidatorBlockUptimeStatus:()=>U,GqlValidatorBoostOrderBy:()=>F,GqlValidatorBoostOrderDirection:()=>$,GqlValidatorOrderBy:()=>N,GqlValidatorOrderDirection:()=>L,GqlVaultSnapshotDataRange:()=>H,MinimalPool:()=>Q,MinimalPoolInList:()=>O,PoolEvent:()=>X,PoolHistoricalData:()=>Y,RewardVault:()=>m,UserBalance:()=>W,default:()=>ct});module.exports=ot(yt);var r=require("@apollo/client"),d=(t=>(t.Bepolia="BEPOLIA",t.Berachain="BERACHAIN",t))(d||{}),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||{}),G=(e=>(e.Add="ADD",e.Remove="REMOVE",e.Swap="SWAP",e))(G||{}),b=(e=>(e.NinetyDays="NINETY_DAYS",e.SevenDays="SEVEN_DAYS",e.ThirtyDays="THIRTY_DAYS",e))(b||{}),q=(p=>(p.BlackListed="BLACK_LISTED",p.Featured="FEATURED",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||{}),P=(t=>(t.Exit="Exit",t.Join="Join",t))(P||{}),A=(e=>(e.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",e.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",e.NoNesting="NO_NESTING",e))(A||{}),I=(o=>(o.Apr="apr",o.BgtApr="bgtApr",o.CombinedApr="combinedApr",o.Fees24h="fees24h",o.TotalLiquidity="totalLiquidity",o.TotalShares="totalShares",o.UserbalanceUsd="userbalanceUsd",o.Volume24h="volume24h",o))(I||{}),_=(t=>(t.Asc="asc",t.Desc="desc",t))(_||{}),h=(a=>(a.AllTime="ALL_TIME",a.NinetyDays="NINETY_DAYS",a.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",a.OneYear="ONE_YEAR",a.ThirtyDays="THIRTY_DAYS",a))(h||{}),D=(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))(D||{}),B=(e=>(e.AmountRemaining="amountRemaining",e.AmountRemainingUsd="amountRemainingUsd",e.IncentiveRate="incentiveRate",e))(B||{}),T=(t=>(t.Asc="asc",t.Desc="desc",t))(T||{}),k=(o=>(o.ActiveIncentivesRateUsd="activeIncentivesRateUsd",o.ActiveIncentivesValueUsd="activeIncentivesValueUsd",o.AllTimeBgtReceived="allTimeBGTReceived",o.Apr="apr",o.Apy="apy",o.BgtCapturePercentage="bgtCapturePercentage",o.Last24hBgtReceived="last24hBGTReceived",o.ProjectedApr="projectedApr",o))(k||{}),v=(t=>(t.Asc="asc",t.Desc="desc",t))(v||{}),M=(a=>(a.AllTime="ALL_TIME",a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.SixtyDays="SIXTY_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(M||{}),x=(t=>(t.Day="DAY",t.Hour="HOUR",t))(x||{}),w=(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(w||{}),V=(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),C=(a=>(a.NinetyDay="NINETY_DAY",a.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",a.OneYear="ONE_YEAR",a.SevenDay="SEVEN_DAY",a.ThirtyDay="THIRTY_DAY",a))(C||{}),R=(e=>(e.Bpt="BPT",e.PhantomBpt="PHANTOM_BPT",e.WhiteListed="WHITE_LISTED",e))(R||{}),E=(u=>(u.Amount="amount",u))(E||{}),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||{}),F=(a=>(a.ActiveBoostAmount="activeBoostAmount",a.LatestBlock="latestBlock",a.LatestBlockTime="latestBlockTime",a.QueuedBoostAmount="queuedBoostAmount",a.QueuedDropBoostAmount="queuedDropBoostAmount",a))(F||{}),$=(t=>(t.Asc="asc",t.Desc="desc",t))($||{}),N=(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))(N||{}),L=(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H=(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(H||{}),S=r.gql`
1
+ "use strict";var y=Object.defineProperty;var j=Object.getOwnPropertyDescriptor;var Z=Object.getOwnPropertyNames;var tt=Object.prototype.hasOwnProperty;var at=(c,u)=>{for(var t in u)y(c,t,{get:u[t],enumerable:!0})},et=(c,u,t,e)=>{if(u&&typeof u=="object"||typeof u=="function")for(let n of Z(u))!tt.call(c,n)&&n!==t&&y(c,n,{get:()=>u[n],enumerable:!(e=j(u,n))||e.enumerable});return c};var ot=c=>et(y({},"__esModule",{value:!0}),c);var yt={};at(yt,{DynamicData:()=>S,GetGlobalLiquidityAndSwapVolume:()=>ut,GetPool:()=>nt,GetPoolEvents:()=>st,GetPoolHistoricalData:()=>lt,GetPools:()=>rt,GetTokenCurrentPrices:()=>it,GqlChain:()=>d,GqlPoolAddRemoveEventV3:()=>z,GqlPoolAprItemType:()=>g,GqlPoolEventType:()=>G,GqlPoolEventsDataRange:()=>b,GqlPoolFilterCategory:()=>q,GqlPoolJoinExitType:()=>P,GqlPoolNestingType:()=>A,GqlPoolOrderBy:()=>I,GqlPoolOrderDirection:()=>_,GqlPoolSnapshotDataRange:()=>h,GqlPoolSwapEventCowAmm:()=>K,GqlPoolSwapEventV3:()=>J,GqlPoolType:()=>D,GqlRewardVaultIncentiveOrderBy:()=>B,GqlRewardVaultIncentiveOrderDirection:()=>T,GqlRewardVaultOrderBy:()=>v,GqlRewardVaultOrderDirection:()=>M,GqlRewardVaultSnapshotDataRange:()=>k,GqlRewardVaultSnapshotResolution:()=>x,GqlSWberaVaultMetadataResolution:()=>w,GqlSorSwapType:()=>V,GqlTokenChartDataRange:()=>R,GqlTokenType:()=>C,GqlUserVaultDepositOrderBy:()=>E,GqlUserVaultDepositOrderDirection:()=>f,GqlValidatorBlockUptimeStatus:()=>U,GqlValidatorBoostOrderBy:()=>F,GqlValidatorBoostOrderDirection:()=>$,GqlValidatorOrderBy:()=>N,GqlValidatorOrderDirection:()=>L,GqlVaultSnapshotDataRange:()=>H,MinimalPool:()=>Q,MinimalPoolInList:()=>O,PoolEvent:()=>X,PoolHistoricalData:()=>Y,RewardVault:()=>m,UserBalance:()=>W,default:()=>ct});module.exports=ot(yt);var r=require("@apollo/client"),d=(t=>(t.Bepolia="BEPOLIA",t.Berachain="BERACHAIN",t))(d||{}),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||{}),G=(e=>(e.Add="ADD",e.Remove="REMOVE",e.Swap="SWAP",e))(G||{}),b=(e=>(e.NinetyDays="NINETY_DAYS",e.SevenDays="SEVEN_DAYS",e.ThirtyDays="THIRTY_DAYS",e))(b||{}),q=(p=>(p.BlackListed="BLACK_LISTED",p.Featured="FEATURED",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||{}),P=(t=>(t.Exit="Exit",t.Join="Join",t))(P||{}),A=(e=>(e.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",e.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",e.NoNesting="NO_NESTING",e))(A||{}),I=(o=>(o.Apr="apr",o.BgtApr="bgtApr",o.CombinedApr="combinedApr",o.Fees24h="fees24h",o.TotalLiquidity="totalLiquidity",o.TotalShares="totalShares",o.UserbalanceUsd="userbalanceUsd",o.Volume24h="volume24h",o))(I||{}),_=(t=>(t.Asc="asc",t.Desc="desc",t))(_||{}),h=(a=>(a.AllTime="ALL_TIME",a.NinetyDays="NINETY_DAYS",a.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",a.OneYear="ONE_YEAR",a.ThirtyDays="THIRTY_DAYS",a))(h||{}),D=(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))(D||{}),B=(e=>(e.AmountRemaining="amountRemaining",e.AmountRemainingUsd="amountRemainingUsd",e.IncentiveRate="incentiveRate",e))(B||{}),T=(t=>(t.Asc="asc",t.Desc="desc",t))(T||{}),v=(o=>(o.ActiveIncentivesRateUsd="activeIncentivesRateUsd",o.ActiveIncentivesValueUsd="activeIncentivesValueUsd",o.AllTimeBgtReceived="allTimeBGTReceived",o.Apr="apr",o.Apy="apy",o.BgtCapturePercentage="bgtCapturePercentage",o.Last24hBgtReceived="last24hBGTReceived",o.ProjectedApr="projectedApr",o))(v||{}),M=(t=>(t.Asc="asc",t.Desc="desc",t))(M||{}),k=(a=>(a.AllTime="ALL_TIME",a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.SixtyDays="SIXTY_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(k||{}),x=(t=>(t.Day="DAY",t.Hour="HOUR",t))(x||{}),w=(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(w||{}),V=(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),R=(a=>(a.NinetyDay="NINETY_DAY",a.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",a.OneYear="ONE_YEAR",a.SevenDay="SEVEN_DAY",a.ThirtyDay="THIRTY_DAY",a))(R||{}),C=(e=>(e.Bpt="BPT",e.PhantomBpt="PHANTOM_BPT",e.WhiteListed="WHITE_LISTED",e))(C||{}),E=(u=>(u.Amount="amount",u))(E||{}),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||{}),F=(a=>(a.ActiveBoostAmount="activeBoostAmount",a.LatestBlock="latestBlock",a.LatestBlockTime="latestBlockTime",a.QueuedBoostAmount="queuedBoostAmount",a.QueuedDropBoostAmount="queuedDropBoostAmount",a))(F||{}),$=(t=>(t.Asc="asc",t.Desc="desc",t))($||{}),N=(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))(N||{}),L=(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H=(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(H||{}),S=r.gql`
2
2
  fragment DynamicData on GqlPoolDynamicData {
3
3
  totalShares
4
4
  fees24h
@@ -2111,33 +2111,22 @@ type Query = {
2111
2111
  poolGetSnapshots: Array<GqlPoolSnapshot>;
2112
2112
  protocolMetricsAggregated: GqlProtocolMetricsAggregated;
2113
2113
  protocolMetricsChain: GqlProtocolMetricsChain;
2114
- /** Get swap quote from the SOR v2 for the V2 vault */
2114
+ /**
2115
+ * Get swap quote from the SOR v2 for the V2 vault
2116
+ * @deprecated SOR support will end on May 31st, 2026
2117
+ */
2115
2118
  sorGetSwapPaths: GqlSorGetSwapPaths;
2116
- /** Get swap quote from the SOR, queries both the old and new SOR */
2117
- sorGetSwaps: GqlSorGetSwapsResponse;
2118
2119
  /**
2119
- * Returns the candlestick chart data for a token for a given range.
2120
- * @deprecated Use tokenGetHistoricalPrices instead
2120
+ * Get swap quote from the SOR, queries both the old and new SOR
2121
+ * @deprecated SOR support will end on May 31st, 2026
2121
2122
  */
2122
- tokenGetCandlestickChartData: Array<GqlTokenCandlestickChartDataItem>;
2123
+ sorGetSwaps: GqlSorGetSwapsResponse;
2123
2124
  /** Returns the current price for a given token */
2124
2125
  tokenGetCurrentPrice: GqlTokenPrice;
2125
2126
  /** Returns all current prices for allowed tokens for a given chain or chains */
2126
2127
  tokenGetCurrentPrices: Array<GqlTokenPrice>;
2127
2128
  /** Returns the historical prices for a given set of tokens for a given chain and range */
2128
2129
  tokenGetHistoricalPrices: Array<GqlHistoricalTokenPrice>;
2129
- /**
2130
- * DEPRECATED: Returns pricing data for a given token for a given range
2131
- * @deprecated Use tokenGetHistoricalPrices instead
2132
- */
2133
- tokenGetPriceChartData: Array<GqlTokenPriceChartDataItem>;
2134
- /**
2135
- * Returns the price of either BAL or BEETS depending on chain
2136
- * @deprecated Use tokenGetTokensDynamicData instead
2137
- */
2138
- tokenGetProtocolTokenPrice: Scalars['AmountHumanReadable']['output'];
2139
- /** Returns the price of a token priced in another token for a given range. */
2140
- tokenGetRelativePriceChartData: Array<GqlTokenPriceChartDataItem>;
2141
2130
  /** Returns a token for a given address and chain */
2142
2131
  tokenGetToken: GqlToken;
2143
2132
  /** Returns dynamic data of a token such as price, market cap, etc. */
@@ -2305,11 +2294,6 @@ type QuerySorGetSwapsArgs = {
2305
2294
  tokenIn: Scalars['String']['input'];
2306
2295
  tokenOut: Scalars['String']['input'];
2307
2296
  };
2308
- type QueryTokenGetCandlestickChartDataArgs = {
2309
- address: Scalars['String']['input'];
2310
- chain?: InputMaybe<GqlChain>;
2311
- range: GqlTokenChartDataRange;
2312
- };
2313
2297
  type QueryTokenGetCurrentPriceArgs = {
2314
2298
  address: Scalars['String']['input'];
2315
2299
  chain: GqlChain;
@@ -2323,20 +2307,6 @@ type QueryTokenGetHistoricalPricesArgs = {
2323
2307
  chain: GqlChain;
2324
2308
  range: GqlTokenChartDataRange;
2325
2309
  };
2326
- type QueryTokenGetPriceChartDataArgs = {
2327
- address: Scalars['String']['input'];
2328
- chain?: InputMaybe<GqlChain>;
2329
- range: GqlTokenChartDataRange;
2330
- };
2331
- type QueryTokenGetProtocolTokenPriceArgs = {
2332
- chain?: InputMaybe<GqlChain>;
2333
- };
2334
- type QueryTokenGetRelativePriceChartDataArgs = {
2335
- chain?: InputMaybe<GqlChain>;
2336
- range: GqlTokenChartDataRange;
2337
- tokenIn: Scalars['String']['input'];
2338
- tokenOut: Scalars['String']['input'];
2339
- };
2340
2310
  type QueryTokenGetTokenArgs = {
2341
2311
  address: Scalars['String']['input'];
2342
2312
  chain: GqlChain;
@@ -3650,4 +3620,4 @@ interface PossibleTypesResultData {
3650
3620
  }
3651
3621
  declare const result: PossibleTypesResultData;
3652
3622
 
3653
- export { type BendVaultDynamicData, type BendVaultResponse, DynamicData, type DynamicDataFragment, type Exact, GetGlobalLiquidityAndSwapVolume, type GetGlobalLiquidityAndSwapVolumeQuery, type GetGlobalLiquidityAndSwapVolumeQueryVariables, GetPool, GetPoolEvents, type GetPoolEventsQuery, type GetPoolEventsQueryVariables, GetPoolHistoricalData, type GetPoolHistoricalDataQuery, type GetPoolHistoricalDataQueryVariables, type GetPoolQuery, type GetPoolQueryVariables, GetPools, type GetPoolsQuery, type GetPoolsQueryVariables, GetTokenCurrentPrices, type GetTokenCurrentPricesQuery, type GetTokenCurrentPricesQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, GqlPoolAddRemoveEventV3, type GqlPoolAddRemoveEventV3Fragment, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, GqlPoolSwapEventCowAmm, type GqlPoolSwapEventCowAmmFragment, GqlPoolSwapEventV3, type GqlPoolSwapEventV3Fragment, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type 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, MinimalPool, type MinimalPoolFragment, MinimalPoolInList, type MinimalPoolInListFragment, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, PoolEvent, type PoolEventFragment, PoolHistoricalData, type PoolHistoricalDataFragment, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCandlestickChartDataArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetPriceChartDataArgs, type QueryTokenGetProtocolTokenPriceArgs, type QueryTokenGetRelativePriceChartDataArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, RewardVault, type RewardVaultFragment, type Scalars, type Token, UserBalance, type UserBalanceFragment, result as default };
3623
+ export { type BendVaultDynamicData, type BendVaultResponse, DynamicData, type DynamicDataFragment, type Exact, GetGlobalLiquidityAndSwapVolume, type GetGlobalLiquidityAndSwapVolumeQuery, type GetGlobalLiquidityAndSwapVolumeQueryVariables, GetPool, GetPoolEvents, type GetPoolEventsQuery, type GetPoolEventsQueryVariables, GetPoolHistoricalData, type GetPoolHistoricalDataQuery, type GetPoolHistoricalDataQueryVariables, type GetPoolQuery, type GetPoolQueryVariables, GetPools, type GetPoolsQuery, type GetPoolsQueryVariables, GetTokenCurrentPrices, type GetTokenCurrentPricesQuery, type GetTokenCurrentPricesQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, GqlPoolAddRemoveEventV3, type GqlPoolAddRemoveEventV3Fragment, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, GqlPoolSwapEventCowAmm, type GqlPoolSwapEventCowAmmFragment, GqlPoolSwapEventV3, type GqlPoolSwapEventV3Fragment, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type 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, MinimalPool, type MinimalPoolFragment, MinimalPoolInList, type MinimalPoolInListFragment, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, PoolEvent, type PoolEventFragment, PoolHistoricalData, type PoolHistoricalDataFragment, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, RewardVault, type RewardVaultFragment, type Scalars, type Token, UserBalance, type UserBalanceFragment, result as default };
@@ -2111,33 +2111,22 @@ type Query = {
2111
2111
  poolGetSnapshots: Array<GqlPoolSnapshot>;
2112
2112
  protocolMetricsAggregated: GqlProtocolMetricsAggregated;
2113
2113
  protocolMetricsChain: GqlProtocolMetricsChain;
2114
- /** Get swap quote from the SOR v2 for the V2 vault */
2114
+ /**
2115
+ * Get swap quote from the SOR v2 for the V2 vault
2116
+ * @deprecated SOR support will end on May 31st, 2026
2117
+ */
2115
2118
  sorGetSwapPaths: GqlSorGetSwapPaths;
2116
- /** Get swap quote from the SOR, queries both the old and new SOR */
2117
- sorGetSwaps: GqlSorGetSwapsResponse;
2118
2119
  /**
2119
- * Returns the candlestick chart data for a token for a given range.
2120
- * @deprecated Use tokenGetHistoricalPrices instead
2120
+ * Get swap quote from the SOR, queries both the old and new SOR
2121
+ * @deprecated SOR support will end on May 31st, 2026
2121
2122
  */
2122
- tokenGetCandlestickChartData: Array<GqlTokenCandlestickChartDataItem>;
2123
+ sorGetSwaps: GqlSorGetSwapsResponse;
2123
2124
  /** Returns the current price for a given token */
2124
2125
  tokenGetCurrentPrice: GqlTokenPrice;
2125
2126
  /** Returns all current prices for allowed tokens for a given chain or chains */
2126
2127
  tokenGetCurrentPrices: Array<GqlTokenPrice>;
2127
2128
  /** Returns the historical prices for a given set of tokens for a given chain and range */
2128
2129
  tokenGetHistoricalPrices: Array<GqlHistoricalTokenPrice>;
2129
- /**
2130
- * DEPRECATED: Returns pricing data for a given token for a given range
2131
- * @deprecated Use tokenGetHistoricalPrices instead
2132
- */
2133
- tokenGetPriceChartData: Array<GqlTokenPriceChartDataItem>;
2134
- /**
2135
- * Returns the price of either BAL or BEETS depending on chain
2136
- * @deprecated Use tokenGetTokensDynamicData instead
2137
- */
2138
- tokenGetProtocolTokenPrice: Scalars['AmountHumanReadable']['output'];
2139
- /** Returns the price of a token priced in another token for a given range. */
2140
- tokenGetRelativePriceChartData: Array<GqlTokenPriceChartDataItem>;
2141
2130
  /** Returns a token for a given address and chain */
2142
2131
  tokenGetToken: GqlToken;
2143
2132
  /** Returns dynamic data of a token such as price, market cap, etc. */
@@ -2305,11 +2294,6 @@ type QuerySorGetSwapsArgs = {
2305
2294
  tokenIn: Scalars['String']['input'];
2306
2295
  tokenOut: Scalars['String']['input'];
2307
2296
  };
2308
- type QueryTokenGetCandlestickChartDataArgs = {
2309
- address: Scalars['String']['input'];
2310
- chain?: InputMaybe<GqlChain>;
2311
- range: GqlTokenChartDataRange;
2312
- };
2313
2297
  type QueryTokenGetCurrentPriceArgs = {
2314
2298
  address: Scalars['String']['input'];
2315
2299
  chain: GqlChain;
@@ -2323,20 +2307,6 @@ type QueryTokenGetHistoricalPricesArgs = {
2323
2307
  chain: GqlChain;
2324
2308
  range: GqlTokenChartDataRange;
2325
2309
  };
2326
- type QueryTokenGetPriceChartDataArgs = {
2327
- address: Scalars['String']['input'];
2328
- chain?: InputMaybe<GqlChain>;
2329
- range: GqlTokenChartDataRange;
2330
- };
2331
- type QueryTokenGetProtocolTokenPriceArgs = {
2332
- chain?: InputMaybe<GqlChain>;
2333
- };
2334
- type QueryTokenGetRelativePriceChartDataArgs = {
2335
- chain?: InputMaybe<GqlChain>;
2336
- range: GqlTokenChartDataRange;
2337
- tokenIn: Scalars['String']['input'];
2338
- tokenOut: Scalars['String']['input'];
2339
- };
2340
2310
  type QueryTokenGetTokenArgs = {
2341
2311
  address: Scalars['String']['input'];
2342
2312
  chain: GqlChain;
@@ -3650,4 +3620,4 @@ interface PossibleTypesResultData {
3650
3620
  }
3651
3621
  declare const result: PossibleTypesResultData;
3652
3622
 
3653
- export { type BendVaultDynamicData, type BendVaultResponse, DynamicData, type DynamicDataFragment, type Exact, GetGlobalLiquidityAndSwapVolume, type GetGlobalLiquidityAndSwapVolumeQuery, type GetGlobalLiquidityAndSwapVolumeQueryVariables, GetPool, GetPoolEvents, type GetPoolEventsQuery, type GetPoolEventsQueryVariables, GetPoolHistoricalData, type GetPoolHistoricalDataQuery, type GetPoolHistoricalDataQueryVariables, type GetPoolQuery, type GetPoolQueryVariables, GetPools, type GetPoolsQuery, type GetPoolsQueryVariables, GetTokenCurrentPrices, type GetTokenCurrentPricesQuery, type GetTokenCurrentPricesQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, GqlPoolAddRemoveEventV3, type GqlPoolAddRemoveEventV3Fragment, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, GqlPoolSwapEventCowAmm, type GqlPoolSwapEventCowAmmFragment, GqlPoolSwapEventV3, type GqlPoolSwapEventV3Fragment, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type 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, MinimalPool, type MinimalPoolFragment, MinimalPoolInList, type MinimalPoolInListFragment, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, PoolEvent, type PoolEventFragment, PoolHistoricalData, type PoolHistoricalDataFragment, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCandlestickChartDataArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetPriceChartDataArgs, type QueryTokenGetProtocolTokenPriceArgs, type QueryTokenGetRelativePriceChartDataArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, RewardVault, type RewardVaultFragment, type Scalars, type Token, UserBalance, type UserBalanceFragment, result as default };
3623
+ export { type BendVaultDynamicData, type BendVaultResponse, DynamicData, type DynamicDataFragment, type Exact, GetGlobalLiquidityAndSwapVolume, type GetGlobalLiquidityAndSwapVolumeQuery, type GetGlobalLiquidityAndSwapVolumeQueryVariables, GetPool, GetPoolEvents, type GetPoolEventsQuery, type GetPoolEventsQueryVariables, GetPoolHistoricalData, type GetPoolHistoricalDataQuery, type GetPoolHistoricalDataQueryVariables, type GetPoolQuery, type GetPoolQueryVariables, GetPools, type GetPoolsQuery, type GetPoolsQueryVariables, GetTokenCurrentPrices, type GetTokenCurrentPricesQuery, type GetTokenCurrentPricesQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, GqlPoolAddRemoveEventV3, type GqlPoolAddRemoveEventV3Fragment, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, GqlPoolSwapEventCowAmm, type GqlPoolSwapEventCowAmmFragment, GqlPoolSwapEventV3, type GqlPoolSwapEventV3Fragment, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type 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, MinimalPool, type MinimalPoolFragment, MinimalPoolInList, type MinimalPoolInListFragment, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, PoolEvent, type PoolEventFragment, PoolHistoricalData, type PoolHistoricalDataFragment, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, RewardVault, type RewardVaultFragment, type Scalars, type Token, UserBalance, type UserBalanceFragment, result as default };