@berachain/graphql 0.1.2-alpha.1 → 0.1.2-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _client = require('@apollo/client');var y=(n=>(n.Borrow="Borrow",n.Supply="Supply",n))(y||{}),m= exports.IdentityResolver =(r=>(r.Base="base",r.Ens="ens",r.Farcaster="farcaster",r.Lens="lens",r.Nns="nns",r.Uni="uni",r.World="world",r))(m||{}),d= exports.MerklAction =(n=>(n.Borrow="Borrow",n.Lend="Lend",n))(d||{}),c= exports.TokenCategory =(a=>(a.Btc="Btc",a.Eth="Eth",a.Stable="Stable",a))(c||{}),g= exports.VaultProtocol =(e=>(e.Enzyme="enzyme",e.EulerV2="euler_v2",e.Gearbox="gearbox",e.Lista="lista",e.Mellow="mellow",e.Midas="midas",e.Morpho="morpho",e.Napier="napier",e.Pendle="pendle",e.Reserve="reserve",e.Silo="silo",e.TurtleClub="turtle_club",e))(g||{}),A= exports.VaultType =(a=>(a.Index="index",a.Lending="lending",a.Staking="staking",a))(A||{}),s= exports.ChainInfoFragment =_client.gql`
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _core = require('@apollo/client/core');var y=(n=>(n.Borrow="Borrow",n.Supply="Supply",n))(y||{}),m= exports.IdentityResolver =(r=>(r.Base="base",r.Ens="ens",r.Farcaster="farcaster",r.Lens="lens",r.Nns="nns",r.Uni="uni",r.World="world",r))(m||{}),d= exports.MerklAction =(n=>(n.Borrow="Borrow",n.Lend="Lend",n))(d||{}),c= exports.TokenCategory =(a=>(a.Btc="Btc",a.Eth="Eth",a.Stable="Stable",a))(c||{}),g= exports.VaultProtocol =(e=>(e.Enzyme="enzyme",e.EulerV2="euler_v2",e.Gearbox="gearbox",e.Lista="lista",e.Mellow="mellow",e.Midas="midas",e.Morpho="morpho",e.Napier="napier",e.Pendle="pendle",e.Reserve="reserve",e.Silo="silo",e.TurtleClub="turtle_club",e))(g||{}),A= exports.VaultType =(a=>(a.Index="index",a.Lending="lending",a.Staking="staking",a))(A||{}),s= exports.ChainInfoFragment =_core.gql`
2
2
  fragment ChainInfoFragment on Chain {
3
3
  id
4
4
  name
5
5
  icon
6
6
  }
7
- `,o= exports.TokenInfoFragment =_client.gql`
7
+ `,o= exports.TokenInfoFragment =_core.gql`
8
8
  fragment TokenInfoFragment on Token {
9
9
  address
10
10
  symbol
@@ -12,13 +12,13 @@
12
12
  icon
13
13
  category
14
14
  }
15
- `,u= exports.CuratorInfoFragment =_client.gql`
15
+ `,u= exports.CuratorInfoFragment =_core.gql`
16
16
  fragment CuratorInfoFragment on Curator {
17
17
  name
18
18
  image
19
19
  url
20
20
  }
21
- `,i= exports.ApyFragment =_client.gql`
21
+ `,i= exports.ApyFragment =_core.gql`
22
22
  fragment ApyFragment on Apy {
23
23
  base
24
24
  rewards {
@@ -30,7 +30,7 @@
30
30
  total
31
31
  fee
32
32
  }
33
- ${o}`,p= exports.VaultSummaryFragment =_client.gql`
33
+ ${o}`,p= exports.VaultSummaryFragment =_core.gql`
34
34
  fragment VaultSummaryFragment on MorphoVault {
35
35
  chain {
36
36
  ...ChainInfoFragment
@@ -78,7 +78,7 @@
78
78
  ${s}
79
79
  ${o}
80
80
  ${u}
81
- ${i}`,l= exports.MarketSummaryFragment =_client.gql`
81
+ ${i}`,l= exports.MarketSummaryFragment =_core.gql`
82
82
  fragment MarketSummaryFragment on MorphoMarket {
83
83
  chain {
84
84
  ...ChainInfoFragment
@@ -134,7 +134,7 @@ ${i}`,l= exports.MarketSummaryFragment =_client.gql`
134
134
  }
135
135
  ${s}
136
136
  ${o}
137
- ${i}`,h= exports.VaultSummaries =_client.gql`
137
+ ${i}`,h= exports.VaultSummaries =_core.gql`
138
138
  query VaultSummaries($chainIds: [ChainId!]!, $vaultAddresses: [Address!]!) {
139
139
  morphoVaults(
140
140
  where: {chainId_in: $chainIds, vaultAddress_in: $vaultAddresses}
@@ -148,7 +148,7 @@ ${i}`,h= exports.VaultSummaries =_client.gql`
148
148
  }
149
149
  }
150
150
  }
151
- ${p}`,k= exports.MarketSummaries =_client.gql`
151
+ ${p}`,k= exports.MarketSummaries =_core.gql`
152
152
  query MarketSummaries($chainIds: [ChainId!]!, $marketIds: [Hex!]!) {
153
153
  morphoMarkets(
154
154
  where: {chainId_in: $chainIds, marketId_in: $marketIds}
@@ -162,7 +162,7 @@ ${i}`,h= exports.VaultSummaries =_client.gql`
162
162
  }
163
163
  }
164
164
  }
165
- ${l}`,M= exports.Vault =_client.gql`
165
+ ${l}`,M= exports.Vault =_core.gql`
166
166
  query Vault($chainId: ChainId!, $vaultAddress: Address!) {
167
167
  morphoVaults(where: {chainId_in: [$chainId], vaultAddress_in: [$vaultAddress]}) {
168
168
  items {
@@ -242,7 +242,7 @@ ${i}`,h= exports.VaultSummaries =_client.gql`
242
242
  ${p}
243
243
  ${s}
244
244
  ${o}
245
- ${i}`,S= exports.Market =_client.gql`
245
+ ${i}`,S= exports.Market =_core.gql`
246
246
  query Market($chainId: ChainId!, $marketId: Hex!) {
247
247
  morphoMarkets(where: {chainId_in: [$chainId], marketId_in: [$marketId]}) {
248
248
  items {
@@ -329,7 +329,7 @@ ${i}`,S= exports.Market =_client.gql`
329
329
  ${l}
330
330
  ${o}
331
331
  ${s}
332
- ${u}`,I= exports.VaultPositions =_client.gql`
332
+ ${u}`,I= exports.VaultPositions =_core.gql`
333
333
  query VaultPositions($chainIds: [ChainId!]!, $vaultAddresses: [Address!]!, $accountAddress: Address!) {
334
334
  morphoVaultPositions(
335
335
  where: {chainId_in: $chainIds, vaultAddress_in: $vaultAddresses, accountAddress_in: [$accountAddress]}
@@ -357,7 +357,7 @@ ${u}`,I= exports.VaultPositions =_client.gql`
357
357
  }
358
358
  }
359
359
  }
360
- `,x= exports.MarketPositions =_client.gql`
360
+ `,x= exports.MarketPositions =_core.gql`
361
361
  query MarketPositions($chainIds: [ChainId!]!, $marketIds: [Hex!]!, $accountAddress: Address!) {
362
362
  morphoMarketPositions(
363
363
  where: {chainId_in: $chainIds, marketId_in: $marketIds, accountAddress_in: [$accountAddress]}
@@ -400,7 +400,7 @@ ${u}`,I= exports.VaultPositions =_client.gql`
400
400
  }
401
401
  }
402
402
  }
403
- `,T= exports.SupportedMarketIds =_client.gql`
403
+ `,T= exports.SupportedMarketIds =_core.gql`
404
404
  query SupportedMarketIds($chainIds: [ChainId!]!, $vaultAddresses: [Address!]!) {
405
405
  morphoVaults(where: {chainId_in: $chainIds, vaultAddress_in: $vaultAddresses}) {
406
406
  items {
@@ -415,7 +415,7 @@ ${u}`,I= exports.VaultPositions =_client.gql`
415
415
  }
416
416
  }
417
417
  }
418
- `,f= exports.GetAccountIsOfacSanctioned =_client.gql`
418
+ `,f= exports.GetAccountIsOfacSanctioned =_core.gql`
419
419
  query getAccountIsOfacSanctioned($address: Address!) {
420
420
  identity(address: $address) {
421
421
  isOfacSanctioned
@@ -1,4 +1,4 @@
1
- import{gql as t}from"@apollo/client";var y=(n=>(n.Borrow="Borrow",n.Supply="Supply",n))(y||{}),m=(r=>(r.Base="base",r.Ens="ens",r.Farcaster="farcaster",r.Lens="lens",r.Nns="nns",r.Uni="uni",r.World="world",r))(m||{}),d=(n=>(n.Borrow="Borrow",n.Lend="Lend",n))(d||{}),c=(a=>(a.Btc="Btc",a.Eth="Eth",a.Stable="Stable",a))(c||{}),g=(e=>(e.Enzyme="enzyme",e.EulerV2="euler_v2",e.Gearbox="gearbox",e.Lista="lista",e.Mellow="mellow",e.Midas="midas",e.Morpho="morpho",e.Napier="napier",e.Pendle="pendle",e.Reserve="reserve",e.Silo="silo",e.TurtleClub="turtle_club",e))(g||{}),A=(a=>(a.Index="index",a.Lending="lending",a.Staking="staking",a))(A||{}),s=t`
1
+ import{gql as t}from"@apollo/client/core";var y=(n=>(n.Borrow="Borrow",n.Supply="Supply",n))(y||{}),m=(r=>(r.Base="base",r.Ens="ens",r.Farcaster="farcaster",r.Lens="lens",r.Nns="nns",r.Uni="uni",r.World="world",r))(m||{}),d=(n=>(n.Borrow="Borrow",n.Lend="Lend",n))(d||{}),c=(a=>(a.Btc="Btc",a.Eth="Eth",a.Stable="Stable",a))(c||{}),g=(e=>(e.Enzyme="enzyme",e.EulerV2="euler_v2",e.Gearbox="gearbox",e.Lista="lista",e.Mellow="mellow",e.Midas="midas",e.Morpho="morpho",e.Napier="napier",e.Pendle="pendle",e.Reserve="reserve",e.Silo="silo",e.TurtleClub="turtle_club",e))(g||{}),A=(a=>(a.Index="index",a.Lending="lending",a.Staking="staking",a))(A||{}),s=t`
2
2
  fragment ChainInfoFragment on Chain {
3
3
  id
4
4
  name
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _client = require('@apollo/client');var e=(a=>(a.Day="day",a.Hour="hour",a))(e||{}),s= exports.Block_OrderBy =(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||{}),p= exports.OrderDirection =(a=>(a.Asc="asc",a.Desc="desc",a))(p||{}),u= exports._SubgraphErrorPolicy_ =(a=>(a.Allow="allow",a.Deny="deny",a))(u||{}),y= exports.GetBlocksTimeStamp =_client.gql`
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _core = require('@apollo/client/core');var e=(a=>(a.Day="day",a.Hour="hour",a))(e||{}),s= exports.Block_OrderBy =(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||{}),p= exports.OrderDirection =(a=>(a.Asc="asc",a.Desc="desc",a))(p||{}),u= exports._SubgraphErrorPolicy_ =(a=>(a.Allow="allow",a.Deny="deny",a))(u||{}),y= exports.GetBlocksTimeStamp =_core.gql`
2
2
  query GetBlocksTimeStamp($skip: Int!) {
3
3
  newest: blocks(first: 1, orderBy: timestamp, orderDirection: desc) {
4
4
  timestamp
@@ -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||{}),p=(a=>(a.Asc="asc",a.Desc="desc",a))(p||{}),u=(a=>(a.Allow="allow",a.Deny="deny",a))(u||{}),y=n`
1
+ import{gql as n}from"@apollo/client/core";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||{}),p=(a=>(a.Asc="asc",a.Desc="desc",a))(p||{}),u=(a=>(a.Allow="allow",a.Deny="deny",a))(u||{}),y=n`
2
2
  query GetBlocksTimeStamp($skip: Int!) {
3
3
  newest: blocks(first: 1, orderBy: timestamp, orderDirection: desc) {
4
4
  timestamp
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _client = require('@apollo/client');var m=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(m||{}),d= exports.GqlContentNewsItemSource =(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(d||{}),g= exports.GqlPoolAprItemType =(s=>(s.Aura="AURA",s.IbYield="IB_YIELD",s.Locking="LOCKING",s.MabeetsEmissions="MABEETS_EMISSIONS",s.Merkl="MERKL",s.Nested="NESTED",s.Staking="STAKING",s.StakingBoost="STAKING_BOOST",s.Surplus="SURPLUS",s.SwapFee="SWAP_FEE",s.VebalEmissions="VEBAL_EMISSIONS",s.Voting="VOTING",s))(g||{}),G= exports.GqlPoolEventType =(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(G||{}),P= exports.GqlPoolEventsDataRange =(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),b= exports.GqlPoolFilterCategory =(u=>(u.BlackListed="BLACK_LISTED",u.Incentivized="INCENTIVIZED",u.Lrt="LRT",u.Points="POINTS",u.PointsEigenlayer="POINTS_EIGENLAYER",u.PointsGyro="POINTS_GYRO",u.PointsKelp="POINTS_KELP",u.PointsRenzo="POINTS_RENZO",u.PointsSwell="POINTS_SWELL",u.Superfest="SUPERFEST",u))(b||{}),q= exports.GqlPoolJoinExitType =(t=>(t.Exit="Exit",t.Join="Join",t))(q||{}),A= exports.GqlPoolNestingType =(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(A||{}),I= exports.GqlPoolOrderBy =(p=>(p.Apr="apr",p.BgtApr="bgtApr",p.Fees24h="fees24h",p.TotalLiquidity="totalLiquidity",p.TotalShares="totalShares",p.UserbalanceUsd="userbalanceUsd",p.Volume24h="volume24h",p))(I||{}),h= exports.GqlPoolOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),_= exports.GqlPoolSnapshotDataRange =(e=>(e.AllTime="ALL_TIME",e.NinetyDays="NINETY_DAYS",e.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",e.OneYear="ONE_YEAR",e.ThirtyDays="THIRTY_DAYS",e))(_||{}),D= exports.GqlPoolType =(l=>(l.ComposableStable="COMPOSABLE_STABLE",l.CowAmm="COW_AMM",l.Element="ELEMENT",l.Fx="FX",l.Gyro="GYRO",l.Gyro3="GYRO3",l.Gyroe="GYROE",l.Investment="INVESTMENT",l.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",l.MetaStable="META_STABLE",l.PhantomStable="PHANTOM_STABLE",l.Stable="STABLE",l.Unknown="UNKNOWN",l.Weighted="WEIGHTED",l))(D||{}),T= exports.GqlRewardVaultIncentiveOrderBy =(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k= exports.GqlRewardVaultIncentiveOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M= exports.GqlRewardVaultOrderBy =(i=>(i.ActiveIncentivesRateUsd="activeIncentivesRateUsd",i.ActiveIncentivesValueUsd="activeIncentivesValueUsd",i.AllTimeBgtReceived="allTimeBGTReceived",i.Apr="apr",i.Apy="apy",i.BgtCapturePercentage="bgtCapturePercentage",i.Last24hBgtReceived="last24hBGTReceived",i.ProjectedApr="projectedApr",i))(M||{}),B= exports.GqlRewardVaultOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(B||{}),v= exports.GqlRewardVaultSnapshotDataRange =(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(v||{}),w= exports.GqlRewardVaultSnapshotResolution =(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),x= exports.GqlSWberaVaultMetadataResolution =(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(x||{}),V= exports.GqlSorSwapType =(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),C= exports.GqlStakeBeraVaultEventType =(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(C||{}),R= exports.GqlTokenChartDataRange =(e=>(e.NinetyDay="NINETY_DAY",e.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",e.OneYear="ONE_YEAR",e.SevenDay="SEVEN_DAY",e.ThirtyDay="THIRTY_DAY",e))(R||{}),E= exports.GqlTokenType =(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(E||{}),F= exports.GqlUserVaultDepositOrderBy =(S=>(S.Amount="amount",S))(F||{}),f= exports.GqlUserVaultDepositOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(f||{}),U= exports.GqlValidatorBlockUptimeStatus =(n=>(n.Inactive="INACTIVE",n.Offline="OFFLINE",n.Proposed="PROPOSED",n.Signed="SIGNED",n))(U||{}),N= exports.GqlValidatorBoostOrderBy =(e=>(e.ActiveBoostAmount="activeBoostAmount",e.LatestBlock="latestBlock",e.LatestBlockTime="latestBlockTime",e.QueuedBoostAmount="queuedBoostAmount",e.QueuedDropBoostAmount="queuedDropBoostAmount",e))(N||{}),L= exports.GqlValidatorBoostOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H= exports.GqlValidatorOrderBy =(r=>(r.ActiveBoostAmount="activeBoostAmount",r.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",r.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.BoostApr="boostApr",r.CommissionOnIncentives="commissionOnIncentives",r.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",r.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",r.QueuedBoostAmount="queuedBoostAmount",r.QueuedDropBoostAmount="queuedDropBoostAmount",r.RewardRate="rewardRate",r.StakedBeraAmount="stakedBeraAmount",r.UsersActiveBoostCount="usersActiveBoostCount",r.UsersQueuedBoostCount="usersQueuedBoostCount",r))(H||{}),W= exports.GqlValidatorOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O= exports.GqlVaultSnapshotDataRange =(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(O||{}),c= exports.DynamicData =_client.gql`
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _core = require('@apollo/client/core');var m=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(m||{}),d= exports.GqlContentNewsItemSource =(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(d||{}),g= exports.GqlPoolAprItemType =(s=>(s.Aura="AURA",s.IbYield="IB_YIELD",s.Locking="LOCKING",s.MabeetsEmissions="MABEETS_EMISSIONS",s.Merkl="MERKL",s.Nested="NESTED",s.Staking="STAKING",s.StakingBoost="STAKING_BOOST",s.Surplus="SURPLUS",s.SwapFee="SWAP_FEE",s.VebalEmissions="VEBAL_EMISSIONS",s.Voting="VOTING",s))(g||{}),G= exports.GqlPoolEventType =(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(G||{}),P= exports.GqlPoolEventsDataRange =(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),b= exports.GqlPoolFilterCategory =(u=>(u.BlackListed="BLACK_LISTED",u.Incentivized="INCENTIVIZED",u.Lrt="LRT",u.Points="POINTS",u.PointsEigenlayer="POINTS_EIGENLAYER",u.PointsGyro="POINTS_GYRO",u.PointsKelp="POINTS_KELP",u.PointsRenzo="POINTS_RENZO",u.PointsSwell="POINTS_SWELL",u.Superfest="SUPERFEST",u))(b||{}),q= exports.GqlPoolJoinExitType =(t=>(t.Exit="Exit",t.Join="Join",t))(q||{}),A= exports.GqlPoolNestingType =(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(A||{}),I= exports.GqlPoolOrderBy =(p=>(p.Apr="apr",p.BgtApr="bgtApr",p.Fees24h="fees24h",p.TotalLiquidity="totalLiquidity",p.TotalShares="totalShares",p.UserbalanceUsd="userbalanceUsd",p.Volume24h="volume24h",p))(I||{}),h= exports.GqlPoolOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),_= exports.GqlPoolSnapshotDataRange =(e=>(e.AllTime="ALL_TIME",e.NinetyDays="NINETY_DAYS",e.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",e.OneYear="ONE_YEAR",e.ThirtyDays="THIRTY_DAYS",e))(_||{}),D= exports.GqlPoolType =(l=>(l.ComposableStable="COMPOSABLE_STABLE",l.CowAmm="COW_AMM",l.Element="ELEMENT",l.Fx="FX",l.Gyro="GYRO",l.Gyro3="GYRO3",l.Gyroe="GYROE",l.Investment="INVESTMENT",l.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",l.MetaStable="META_STABLE",l.PhantomStable="PHANTOM_STABLE",l.Stable="STABLE",l.Unknown="UNKNOWN",l.Weighted="WEIGHTED",l))(D||{}),T= exports.GqlRewardVaultIncentiveOrderBy =(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k= exports.GqlRewardVaultIncentiveOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M= exports.GqlRewardVaultOrderBy =(i=>(i.ActiveIncentivesRateUsd="activeIncentivesRateUsd",i.ActiveIncentivesValueUsd="activeIncentivesValueUsd",i.AllTimeBgtReceived="allTimeBGTReceived",i.Apr="apr",i.Apy="apy",i.BgtCapturePercentage="bgtCapturePercentage",i.Last24hBgtReceived="last24hBGTReceived",i.ProjectedApr="projectedApr",i))(M||{}),B= exports.GqlRewardVaultOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(B||{}),v= exports.GqlRewardVaultSnapshotDataRange =(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(v||{}),w= exports.GqlRewardVaultSnapshotResolution =(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),x= exports.GqlSWberaVaultMetadataResolution =(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(x||{}),V= exports.GqlSorSwapType =(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),C= exports.GqlStakeBeraVaultEventType =(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(C||{}),R= exports.GqlTokenChartDataRange =(e=>(e.NinetyDay="NINETY_DAY",e.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",e.OneYear="ONE_YEAR",e.SevenDay="SEVEN_DAY",e.ThirtyDay="THIRTY_DAY",e))(R||{}),E= exports.GqlTokenType =(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(E||{}),F= exports.GqlUserVaultDepositOrderBy =(S=>(S.Amount="amount",S))(F||{}),f= exports.GqlUserVaultDepositOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(f||{}),U= exports.GqlValidatorBlockUptimeStatus =(n=>(n.Inactive="INACTIVE",n.Offline="OFFLINE",n.Proposed="PROPOSED",n.Signed="SIGNED",n))(U||{}),N= exports.GqlValidatorBoostOrderBy =(e=>(e.ActiveBoostAmount="activeBoostAmount",e.LatestBlock="latestBlock",e.LatestBlockTime="latestBlockTime",e.QueuedBoostAmount="queuedBoostAmount",e.QueuedDropBoostAmount="queuedDropBoostAmount",e))(N||{}),L= exports.GqlValidatorBoostOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H= exports.GqlValidatorOrderBy =(r=>(r.ActiveBoostAmount="activeBoostAmount",r.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",r.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.BoostApr="boostApr",r.CommissionOnIncentives="commissionOnIncentives",r.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",r.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",r.QueuedBoostAmount="queuedBoostAmount",r.QueuedDropBoostAmount="queuedDropBoostAmount",r.RewardRate="rewardRate",r.StakedBeraAmount="stakedBeraAmount",r.UsersActiveBoostCount="usersActiveBoostCount",r.UsersQueuedBoostCount="usersQueuedBoostCount",r))(H||{}),W= exports.GqlValidatorOrderDirection =(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O= exports.GqlVaultSnapshotDataRange =(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(O||{}),c= exports.DynamicData =_core.gql`
2
2
  fragment DynamicData on GqlPoolDynamicData {
3
3
  totalShares
4
4
  fees24h
@@ -13,13 +13,13 @@
13
13
  id
14
14
  }
15
15
  }
16
- `,Q= exports.UserBalance =_client.gql`
16
+ `,Q= exports.UserBalance =_core.gql`
17
17
  fragment UserBalance on GqlPoolUserBalance {
18
18
  totalBalanceUsd
19
19
  walletBalance
20
20
  walletBalanceUsd
21
21
  }
22
- `,y= exports.RewardVault =_client.gql`
22
+ `,y= exports.RewardVault =_core.gql`
23
23
  fragment RewardVault on GqlRewardVault {
24
24
  dynamicData {
25
25
  activeIncentivesValueUsd
@@ -31,7 +31,7 @@
31
31
  vaultAddress
32
32
  stakingTokenAddress
33
33
  }
34
- `,Y= exports.MinimalPoolInList =_client.gql`
34
+ `,Y= exports.MinimalPoolInList =_core.gql`
35
35
  fragment MinimalPoolInList on GqlPoolMinimal {
36
36
  id
37
37
  name
@@ -58,7 +58,7 @@
58
58
  }
59
59
  ${c}
60
60
  ${Q}
61
- ${y}`,$= exports.MinimalPool =_client.gql`
61
+ ${y}`,$= exports.MinimalPool =_core.gql`
62
62
  fragment MinimalPool on GqlPoolBase {
63
63
  id
64
64
  name
@@ -86,7 +86,7 @@ ${y}`,$= exports.MinimalPool =_client.gql`
86
86
  }
87
87
  }
88
88
  ${c}
89
- ${y}`,K= exports.PoolHistoricalData =_client.gql`
89
+ ${y}`,K= exports.PoolHistoricalData =_core.gql`
90
90
  fragment PoolHistoricalData on GqlPoolSnapshot {
91
91
  id
92
92
  volume24h
@@ -96,7 +96,7 @@ ${y}`,K= exports.PoolHistoricalData =_client.gql`
96
96
  fees24h
97
97
  totalSwapFee
98
98
  }
99
- `,J= exports.GqlPoolSwapEventCowAmm =_client.gql`
99
+ `,J= exports.GqlPoolSwapEventCowAmm =_core.gql`
100
100
  fragment GqlPoolSwapEventCowAmm on GqlPoolSwapEventCowAmm {
101
101
  tokenIn {
102
102
  address
@@ -107,7 +107,7 @@ ${y}`,K= exports.PoolHistoricalData =_client.gql`
107
107
  amount
108
108
  }
109
109
  }
110
- `,z= exports.GqlPoolSwapEventV3 =_client.gql`
110
+ `,z= exports.GqlPoolSwapEventV3 =_core.gql`
111
111
  fragment GqlPoolSwapEventV3 on GqlPoolSwapEventV3 {
112
112
  tokenIn {
113
113
  address
@@ -118,14 +118,14 @@ ${y}`,K= exports.PoolHistoricalData =_client.gql`
118
118
  amount
119
119
  }
120
120
  }
121
- `,X= exports.GqlPoolAddRemoveEventV3 =_client.gql`
121
+ `,X= exports.GqlPoolAddRemoveEventV3 =_core.gql`
122
122
  fragment GqlPoolAddRemoveEventV3 on GqlPoolAddRemoveEventV3 {
123
123
  tokens {
124
124
  address
125
125
  amount
126
126
  }
127
127
  }
128
- `,j= exports.PoolEvent =_client.gql`
128
+ `,j= exports.PoolEvent =_core.gql`
129
129
  fragment PoolEvent on GqlPoolEvent {
130
130
  id
131
131
  valueUSD
@@ -139,7 +139,7 @@ ${y}`,K= exports.PoolHistoricalData =_client.gql`
139
139
  }
140
140
  ${J}
141
141
  ${z}
142
- ${X}`,at= exports.GetPools =_client.gql`
142
+ ${X}`,at= exports.GetPools =_core.gql`
143
143
  query GetPools($textSearch: String, $first: Int, $userAddress: String, $chain: [GqlChain!]!, $orderBy: GqlPoolOrderBy, $skip: Int, $orderDirection: GqlPoolOrderDirection, $blacklistedPoolIds: [String!]) {
144
144
  poolGetPools(
145
145
  textSearch: $textSearch
@@ -156,19 +156,19 @@ ${X}`,at= exports.GetPools =_client.gql`
156
156
  where: {userAddress: $userAddress, chainIn: $chain}
157
157
  )
158
158
  }
159
- ${Y}`,et= exports.GetPool =_client.gql`
159
+ ${Y}`,et= exports.GetPool =_core.gql`
160
160
  query GetPool($id: String!, $userAddress: String, $chain: GqlChain!) {
161
161
  poolGetPool(id: $id, userAddress: $userAddress, chain: $chain) {
162
162
  ...MinimalPool
163
163
  }
164
164
  }
165
- ${$}`,ot= exports.GetPoolHistoricalData =_client.gql`
165
+ ${$}`,ot= exports.GetPoolHistoricalData =_core.gql`
166
166
  query GetPoolHistoricalData($poolId: String!, $chain: GqlChain!) {
167
167
  poolGetSnapshots(id: $poolId, range: NINETY_DAYS, chain: $chain) {
168
168
  ...PoolHistoricalData
169
169
  }
170
170
  }
171
- ${K}`,rt= exports.GetPoolEvents =_client.gql`
171
+ ${K}`,rt= exports.GetPoolEvents =_core.gql`
172
172
  query GetPoolEvents($poolId: String!, $typeIn: [GqlPoolEventType!]!, $chain: GqlChain!) {
173
173
  poolGetEvents(
174
174
  poolId: $poolId
@@ -179,7 +179,7 @@ ${X}`,at= exports.GetPools =_client.gql`
179
179
  ...PoolEvent
180
180
  }
181
181
  }
182
- ${j}`,nt= exports.GetTokenCurrentPrices =_client.gql`
182
+ ${j}`,nt= exports.GetTokenCurrentPrices =_core.gql`
183
183
  query GetTokenCurrentPrices($chains: [GqlChain!]!, $addressIn: [String!]!) {
184
184
  tokenGetCurrentPrices(chains: $chains, addressIn: $addressIn) {
185
185
  address
@@ -189,7 +189,7 @@ ${X}`,at= exports.GetPools =_client.gql`
189
189
  updatedBy
190
190
  }
191
191
  }
192
- `,lt= exports.GetGlobalLiquidityAndSwapVolume =_client.gql`
192
+ `,lt= exports.GetGlobalLiquidityAndSwapVolume =_core.gql`
193
193
  query GetGlobalLiquidityAndSwapVolume($chain: GqlChain!) {
194
194
  protocolMetricsAggregated(chains: [$chain]) {
195
195
  swapVolume24h
@@ -1,4 +1,4 @@
1
- import{gql as o}from"@apollo/client";var m=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(m||{}),d=(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(d||{}),g=(s=>(s.Aura="AURA",s.IbYield="IB_YIELD",s.Locking="LOCKING",s.MabeetsEmissions="MABEETS_EMISSIONS",s.Merkl="MERKL",s.Nested="NESTED",s.Staking="STAKING",s.StakingBoost="STAKING_BOOST",s.Surplus="SURPLUS",s.SwapFee="SWAP_FEE",s.VebalEmissions="VEBAL_EMISSIONS",s.Voting="VOTING",s))(g||{}),G=(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(G||{}),P=(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),b=(u=>(u.BlackListed="BLACK_LISTED",u.Incentivized="INCENTIVIZED",u.Lrt="LRT",u.Points="POINTS",u.PointsEigenlayer="POINTS_EIGENLAYER",u.PointsGyro="POINTS_GYRO",u.PointsKelp="POINTS_KELP",u.PointsRenzo="POINTS_RENZO",u.PointsSwell="POINTS_SWELL",u.Superfest="SUPERFEST",u))(b||{}),q=(t=>(t.Exit="Exit",t.Join="Join",t))(q||{}),A=(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(A||{}),I=(p=>(p.Apr="apr",p.BgtApr="bgtApr",p.Fees24h="fees24h",p.TotalLiquidity="totalLiquidity",p.TotalShares="totalShares",p.UserbalanceUsd="userbalanceUsd",p.Volume24h="volume24h",p))(I||{}),h=(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),_=(e=>(e.AllTime="ALL_TIME",e.NinetyDays="NINETY_DAYS",e.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",e.OneYear="ONE_YEAR",e.ThirtyDays="THIRTY_DAYS",e))(_||{}),D=(l=>(l.ComposableStable="COMPOSABLE_STABLE",l.CowAmm="COW_AMM",l.Element="ELEMENT",l.Fx="FX",l.Gyro="GYRO",l.Gyro3="GYRO3",l.Gyroe="GYROE",l.Investment="INVESTMENT",l.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",l.MetaStable="META_STABLE",l.PhantomStable="PHANTOM_STABLE",l.Stable="STABLE",l.Unknown="UNKNOWN",l.Weighted="WEIGHTED",l))(D||{}),T=(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k=(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M=(i=>(i.ActiveIncentivesRateUsd="activeIncentivesRateUsd",i.ActiveIncentivesValueUsd="activeIncentivesValueUsd",i.AllTimeBgtReceived="allTimeBGTReceived",i.Apr="apr",i.Apy="apy",i.BgtCapturePercentage="bgtCapturePercentage",i.Last24hBgtReceived="last24hBGTReceived",i.ProjectedApr="projectedApr",i))(M||{}),B=(t=>(t.Asc="asc",t.Desc="desc",t))(B||{}),v=(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(v||{}),w=(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),x=(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(x||{}),V=(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),C=(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(C||{}),R=(e=>(e.NinetyDay="NINETY_DAY",e.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",e.OneYear="ONE_YEAR",e.SevenDay="SEVEN_DAY",e.ThirtyDay="THIRTY_DAY",e))(R||{}),E=(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(E||{}),F=(S=>(S.Amount="amount",S))(F||{}),f=(t=>(t.Asc="asc",t.Desc="desc",t))(f||{}),U=(n=>(n.Inactive="INACTIVE",n.Offline="OFFLINE",n.Proposed="PROPOSED",n.Signed="SIGNED",n))(U||{}),N=(e=>(e.ActiveBoostAmount="activeBoostAmount",e.LatestBlock="latestBlock",e.LatestBlockTime="latestBlockTime",e.QueuedBoostAmount="queuedBoostAmount",e.QueuedDropBoostAmount="queuedDropBoostAmount",e))(N||{}),L=(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H=(r=>(r.ActiveBoostAmount="activeBoostAmount",r.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",r.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.BoostApr="boostApr",r.CommissionOnIncentives="commissionOnIncentives",r.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",r.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",r.QueuedBoostAmount="queuedBoostAmount",r.QueuedDropBoostAmount="queuedDropBoostAmount",r.RewardRate="rewardRate",r.StakedBeraAmount="stakedBeraAmount",r.UsersActiveBoostCount="usersActiveBoostCount",r.UsersQueuedBoostCount="usersQueuedBoostCount",r))(H||{}),W=(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O=(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(O||{}),c=o`
1
+ import{gql as o}from"@apollo/client/core";var m=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(m||{}),d=(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(d||{}),g=(s=>(s.Aura="AURA",s.IbYield="IB_YIELD",s.Locking="LOCKING",s.MabeetsEmissions="MABEETS_EMISSIONS",s.Merkl="MERKL",s.Nested="NESTED",s.Staking="STAKING",s.StakingBoost="STAKING_BOOST",s.Surplus="SURPLUS",s.SwapFee="SWAP_FEE",s.VebalEmissions="VEBAL_EMISSIONS",s.Voting="VOTING",s))(g||{}),G=(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(G||{}),P=(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(P||{}),b=(u=>(u.BlackListed="BLACK_LISTED",u.Incentivized="INCENTIVIZED",u.Lrt="LRT",u.Points="POINTS",u.PointsEigenlayer="POINTS_EIGENLAYER",u.PointsGyro="POINTS_GYRO",u.PointsKelp="POINTS_KELP",u.PointsRenzo="POINTS_RENZO",u.PointsSwell="POINTS_SWELL",u.Superfest="SUPERFEST",u))(b||{}),q=(t=>(t.Exit="Exit",t.Join="Join",t))(q||{}),A=(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(A||{}),I=(p=>(p.Apr="apr",p.BgtApr="bgtApr",p.Fees24h="fees24h",p.TotalLiquidity="totalLiquidity",p.TotalShares="totalShares",p.UserbalanceUsd="userbalanceUsd",p.Volume24h="volume24h",p))(I||{}),h=(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),_=(e=>(e.AllTime="ALL_TIME",e.NinetyDays="NINETY_DAYS",e.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",e.OneYear="ONE_YEAR",e.ThirtyDays="THIRTY_DAYS",e))(_||{}),D=(l=>(l.ComposableStable="COMPOSABLE_STABLE",l.CowAmm="COW_AMM",l.Element="ELEMENT",l.Fx="FX",l.Gyro="GYRO",l.Gyro3="GYRO3",l.Gyroe="GYROE",l.Investment="INVESTMENT",l.LiquidityBootstrapping="LIQUIDITY_BOOTSTRAPPING",l.MetaStable="META_STABLE",l.PhantomStable="PHANTOM_STABLE",l.Stable="STABLE",l.Unknown="UNKNOWN",l.Weighted="WEIGHTED",l))(D||{}),T=(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(T||{}),k=(t=>(t.Asc="asc",t.Desc="desc",t))(k||{}),M=(i=>(i.ActiveIncentivesRateUsd="activeIncentivesRateUsd",i.ActiveIncentivesValueUsd="activeIncentivesValueUsd",i.AllTimeBgtReceived="allTimeBGTReceived",i.Apr="apr",i.Apy="apy",i.BgtCapturePercentage="bgtCapturePercentage",i.Last24hBgtReceived="last24hBGTReceived",i.ProjectedApr="projectedApr",i))(M||{}),B=(t=>(t.Asc="asc",t.Desc="desc",t))(B||{}),v=(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(v||{}),w=(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),x=(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(x||{}),V=(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(V||{}),C=(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(C||{}),R=(e=>(e.NinetyDay="NINETY_DAY",e.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",e.OneYear="ONE_YEAR",e.SevenDay="SEVEN_DAY",e.ThirtyDay="THIRTY_DAY",e))(R||{}),E=(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))(E||{}),F=(S=>(S.Amount="amount",S))(F||{}),f=(t=>(t.Asc="asc",t.Desc="desc",t))(f||{}),U=(n=>(n.Inactive="INACTIVE",n.Offline="OFFLINE",n.Proposed="PROPOSED",n.Signed="SIGNED",n))(U||{}),N=(e=>(e.ActiveBoostAmount="activeBoostAmount",e.LatestBlock="latestBlock",e.LatestBlockTime="latestBlockTime",e.QueuedBoostAmount="queuedBoostAmount",e.QueuedDropBoostAmount="queuedDropBoostAmount",e))(N||{}),L=(t=>(t.Asc="asc",t.Desc="desc",t))(L||{}),H=(r=>(r.ActiveBoostAmount="activeBoostAmount",r.AllTimeDistributedBgtAmount="allTimeDistributedBGTAmount",r.AllTimeEarnedBgtAmount="allTimeEarnedBGTAmount",r.Apy="apy",r.BgtCapturePercentage="bgtCapturePercentage",r.BoostApr="boostApr",r.CommissionOnIncentives="commissionOnIncentives",r.LastDayDistributedBgtAmount="lastDayDistributedBGTAmount",r.LastDayEarnedBgtAmount="lastDayEarnedBGTAmount",r.QueuedBoostAmount="queuedBoostAmount",r.QueuedDropBoostAmount="queuedDropBoostAmount",r.RewardRate="rewardRate",r.StakedBeraAmount="stakedBeraAmount",r.UsersActiveBoostCount="usersActiveBoostCount",r.UsersQueuedBoostCount="usersQueuedBoostCount",r))(H||{}),W=(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O=(n=>(n.NinetyDays="NINETY_DAYS",n.SevenDays="SEVEN_DAYS",n.SixtyDays="SIXTY_DAYS",n.ThirtyDays="THIRTY_DAYS",n))(O||{}),c=o`
2
2
  fragment DynamicData on GqlPoolDynamicData {
3
3
  totalShares
4
4
  fees24h