@berachain/graphql 0.3.3 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bend/whisk.codegen.cjs +9 -9
- package/dist/bend/whisk.codegen.d.cts +155 -1
- package/dist/bend/whisk.codegen.d.ts +155 -1
- package/dist/bend/whisk.codegen.mjs +6 -6
- package/dist/dex/subgraph.codegen.cjs +1 -1
- package/dist/dex/subgraph.codegen.d.cts +29 -49
- package/dist/dex/subgraph.codegen.d.ts +29 -49
- package/dist/dex/subgraph.codegen.mjs +1 -1
- package/dist/pol/api.codegen.cjs +19 -42
- package/dist/pol/api.codegen.d.cts +1 -39
- package/dist/pol/api.codegen.d.ts +1 -39
- package/dist/pol/api.codegen.mjs +7 -30
- package/package.json +1 -1
|
@@ -2113,7 +2113,7 @@ declare enum PoolSnapshot_OrderBy {
|
|
|
2113
2113
|
}
|
|
2114
2114
|
type PoolToken = {
|
|
2115
2115
|
__typename?: 'PoolToken';
|
|
2116
|
-
address: Scalars['
|
|
2116
|
+
address: Scalars['Bytes']['output'];
|
|
2117
2117
|
assetManager: Scalars['Bytes']['output'];
|
|
2118
2118
|
balance: Scalars['BigDecimal']['output'];
|
|
2119
2119
|
cashBalance: Scalars['BigDecimal']['output'];
|
|
@@ -2143,26 +2143,16 @@ type PoolTokenManagementsArgs = {
|
|
|
2143
2143
|
type PoolToken_Filter = {
|
|
2144
2144
|
/** Filter for the block changed event. */
|
|
2145
2145
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2146
|
-
address?: InputMaybe<Scalars['
|
|
2147
|
-
address_contains?: InputMaybe<Scalars['
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
address_not?: InputMaybe<Scalars['String']['input']>;
|
|
2157
|
-
address_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2158
|
-
address_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2159
|
-
address_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2160
|
-
address_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2161
|
-
address_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2162
|
-
address_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2163
|
-
address_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2164
|
-
address_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2165
|
-
address_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2146
|
+
address?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2147
|
+
address_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2148
|
+
address_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2149
|
+
address_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2150
|
+
address_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2151
|
+
address_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2152
|
+
address_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2153
|
+
address_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2154
|
+
address_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2155
|
+
address_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2166
2156
|
and?: InputMaybe<Array<InputMaybe<PoolToken_Filter>>>;
|
|
2167
2157
|
assetManager?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2168
2158
|
assetManager_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
@@ -4738,7 +4728,7 @@ declare enum Swap_OrderBy {
|
|
|
4738
4728
|
}
|
|
4739
4729
|
type Token = {
|
|
4740
4730
|
__typename?: 'Token';
|
|
4741
|
-
address: Scalars['
|
|
4731
|
+
address: Scalars['Bytes']['output'];
|
|
4742
4732
|
decimals: Scalars['Int']['output'];
|
|
4743
4733
|
fxOracleDecimals?: Maybe<Scalars['Int']['output']>;
|
|
4744
4734
|
id: Scalars['ID']['output'];
|
|
@@ -5051,26 +5041,16 @@ declare enum TokenSnapshot_OrderBy {
|
|
|
5051
5041
|
type Token_Filter = {
|
|
5052
5042
|
/** Filter for the block changed event. */
|
|
5053
5043
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5054
|
-
address?: InputMaybe<Scalars['
|
|
5055
|
-
address_contains?: InputMaybe<Scalars['
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
address_not?: InputMaybe<Scalars['String']['input']>;
|
|
5065
|
-
address_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
5066
|
-
address_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5067
|
-
address_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
5068
|
-
address_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5069
|
-
address_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5070
|
-
address_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
5071
|
-
address_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5072
|
-
address_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
5073
|
-
address_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5044
|
+
address?: InputMaybe<Scalars['Bytes']['input']>;
|
|
5045
|
+
address_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
5046
|
+
address_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
5047
|
+
address_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
5048
|
+
address_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
5049
|
+
address_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
5050
|
+
address_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
5051
|
+
address_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
5052
|
+
address_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
5053
|
+
address_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
5074
5054
|
and?: InputMaybe<Array<InputMaybe<Token_Filter>>>;
|
|
5075
5055
|
decimals?: InputMaybe<Scalars['Int']['input']>;
|
|
5076
5056
|
decimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -5729,7 +5709,7 @@ type SubgraphPoolFragment = {
|
|
|
5729
5709
|
type?: string | null;
|
|
5730
5710
|
tokens?: Array<{
|
|
5731
5711
|
__typename?: 'PoolToken';
|
|
5732
|
-
address: string
|
|
5712
|
+
address: `0x${string}`;
|
|
5733
5713
|
name: string;
|
|
5734
5714
|
decimals: number;
|
|
5735
5715
|
symbol: string;
|
|
@@ -5757,7 +5737,7 @@ type GetSubgraphPoolQuery = {
|
|
|
5757
5737
|
type?: string | null;
|
|
5758
5738
|
tokens?: Array<{
|
|
5759
5739
|
__typename?: 'PoolToken';
|
|
5760
|
-
address: string
|
|
5740
|
+
address: `0x${string}`;
|
|
5761
5741
|
name: string;
|
|
5762
5742
|
decimals: number;
|
|
5763
5743
|
symbol: string;
|
|
@@ -5771,7 +5751,7 @@ type SubgraphTokenFragment = {
|
|
|
5771
5751
|
__typename?: 'Token';
|
|
5772
5752
|
latestUSDPrice?: string | null;
|
|
5773
5753
|
latestUSDPriceTimestamp?: string | null;
|
|
5774
|
-
address: string
|
|
5754
|
+
address: `0x${string}`;
|
|
5775
5755
|
name?: string | null;
|
|
5776
5756
|
symbol?: string | null;
|
|
5777
5757
|
decimals: number;
|
|
@@ -5785,14 +5765,14 @@ type GetTokenQuery = {
|
|
|
5785
5765
|
__typename?: 'Token';
|
|
5786
5766
|
latestUSDPrice?: string | null;
|
|
5787
5767
|
latestUSDPriceTimestamp?: string | null;
|
|
5788
|
-
address: string
|
|
5768
|
+
address: `0x${string}`;
|
|
5789
5769
|
name?: string | null;
|
|
5790
5770
|
symbol?: string | null;
|
|
5791
5771
|
decimals: number;
|
|
5792
5772
|
} | null;
|
|
5793
5773
|
};
|
|
5794
5774
|
type GetTokensQueryVariables = Exact<{
|
|
5795
|
-
ids: Array<Scalars['
|
|
5775
|
+
ids: Array<Scalars['Bytes']['input']> | Scalars['Bytes']['input'];
|
|
5796
5776
|
}>;
|
|
5797
5777
|
type GetTokensQuery = {
|
|
5798
5778
|
__typename?: 'Query';
|
|
@@ -5800,7 +5780,7 @@ type GetTokensQuery = {
|
|
|
5800
5780
|
__typename?: 'Token';
|
|
5801
5781
|
latestUSDPrice?: string | null;
|
|
5802
5782
|
latestUSDPriceTimestamp?: string | null;
|
|
5803
|
-
address: string
|
|
5783
|
+
address: `0x${string}`;
|
|
5804
5784
|
name?: string | null;
|
|
5805
5785
|
symbol?: string | null;
|
|
5806
5786
|
decimals: number;
|
|
@@ -5826,7 +5806,7 @@ type GetDedupedSubgraphPoolsQuery = {
|
|
|
5826
5806
|
type?: string | null;
|
|
5827
5807
|
tokens?: Array<{
|
|
5828
5808
|
__typename?: 'PoolToken';
|
|
5829
|
-
address: string
|
|
5809
|
+
address: `0x${string}`;
|
|
5830
5810
|
name: string;
|
|
5831
5811
|
decimals: number;
|
|
5832
5812
|
symbol: string;
|
package/dist/pol/api.codegen.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var g=Object.defineProperty;var J=Object.getOwnPropertyDescriptor;var X=Object.getOwnPropertyNames;var j=Object.prototype.hasOwnProperty;var Z=(c,u)=>{for(var t in u)g(c,t,{get:u[t],enumerable:!0})},tt=(c,u,t,a)=>{if(u&&typeof u=="object"||typeof u=="function")for(let
|
|
1
|
+
"use strict";var g=Object.defineProperty;var J=Object.getOwnPropertyDescriptor;var X=Object.getOwnPropertyNames;var j=Object.prototype.hasOwnProperty;var Z=(c,u)=>{for(var t in u)g(c,t,{get:u[t],enumerable:!0})},tt=(c,u,t,a)=>{if(u&&typeof u=="object"||typeof u=="function")for(let e of X(u))!j.call(c,e)&&e!==t&&g(c,e,{get:()=>u[e],enumerable:!(a=J(u,e))||a.enumerable});return c};var at=c=>tt(g({},"__esModule",{value:!0}),c);var mt={};Z(mt,{ApiRewardAllocationWeight:()=>z,ApiValidator:()=>y,ApiValidatorBlockUptime:()=>K,ApiValidatorMinimal:()=>d,ApiVault:()=>S,ApiVaultIncentive:()=>Y,GetPolStakeBeraVaultEventsByOwner:()=>St,GetRewardVault:()=>lt,GetSWberaVaultMetadata:()=>pt,GetSWberaVaultSnapshots:()=>ct,GetStakeBeraVaultEarningsByOwner:()=>yt,GetUserVaults:()=>it,GetValidator:()=>rt,GetValidators:()=>ot,GetVaultHistory:()=>ut,GetVaultValidators:()=>nt,GetVaults:()=>et,GlobalData:()=>st,GqlChain:()=>m,GqlContentNewsItemSource:()=>G,GqlPoolAprItemType:()=>A,GqlPoolEventType:()=>b,GqlPoolEventsDataRange:()=>I,GqlPoolFilterCategory:()=>q,GqlPoolJoinExitType:()=>P,GqlPoolNestingType:()=>B,GqlPoolOrderBy:()=>k,GqlPoolOrderDirection:()=>h,GqlPoolSnapshotDataRange:()=>_,GqlPoolType:()=>v,GqlRewardVaultIncentiveOrderBy:()=>D,GqlRewardVaultIncentiveOrderDirection:()=>M,GqlRewardVaultOrderBy:()=>T,GqlRewardVaultOrderDirection:()=>x,GqlRewardVaultSnapshotDataRange:()=>V,GqlRewardVaultSnapshotResolution:()=>w,GqlSWberaVaultMetadataResolution:()=>R,GqlSorSwapType:()=>C,GqlStakeBeraVaultEventType:()=>U,GqlTokenChartDataRange:()=>E,GqlTokenType:()=>$,GqlUserVaultDepositOrderBy:()=>f,GqlUserVaultDepositOrderDirection:()=>F,GqlValidatorBlockUptimeStatus:()=>N,GqlValidatorBoostOrderBy:()=>Q,GqlValidatorBoostOrderDirection:()=>W,GqlValidatorOrderBy:()=>O,GqlValidatorOrderDirection:()=>H,GqlVaultSnapshotDataRange:()=>L,default:()=>dt});module.exports=at(mt);var r=require("@apollo/client"),m=(a=>(a.Bartio="BARTIO",a.Berachain="BERACHAIN",a.Cartio="CARTIO",a))(m||{}),G=(a=>(a.Discord="discord",a.Medium="medium",a.Twitter="twitter",a))(G||{}),A=(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))(A||{}),b=(a=>(a.Add="ADD",a.Remove="REMOVE",a.Swap="SWAP",a))(b||{}),I=(a=>(a.NinetyDays="NINETY_DAYS",a.SevenDays="SEVEN_DAYS",a.ThirtyDays="THIRTY_DAYS",a))(I||{}),q=(p=>(p.BlackListed="BLACK_LISTED",p.Incentivized="INCENTIVIZED",p.Lrt="LRT",p.Points="POINTS",p.PointsEigenlayer="POINTS_EIGENLAYER",p.PointsGyro="POINTS_GYRO",p.PointsKelp="POINTS_KELP",p.PointsRenzo="POINTS_RENZO",p.PointsSwell="POINTS_SWELL",p.Superfest="SUPERFEST",p))(q||{}),P=(t=>(t.Exit="Exit",t.Join="Join",t))(P||{}),B=(a=>(a.HasOnlyPhantomBpt="HAS_ONLY_PHANTOM_BPT",a.HasSomePhantomBpt="HAS_SOME_PHANTOM_BPT",a.NoNesting="NO_NESTING",a))(B||{}),k=(n=>(n.Apr="apr",n.BgtApr="bgtApr",n.CombinedApr="combinedApr",n.Fees24h="fees24h",n.TotalLiquidity="totalLiquidity",n.TotalShares="totalShares",n.UserbalanceUsd="userbalanceUsd",n.Volume24h="volume24h",n))(k||{}),h=(t=>(t.Asc="asc",t.Desc="desc",t))(h||{}),_=(o=>(o.AllTime="ALL_TIME",o.NinetyDays="NINETY_DAYS",o.OneHundredEightyDays="ONE_HUNDRED_EIGHTY_DAYS",o.OneYear="ONE_YEAR",o.ThirtyDays="THIRTY_DAYS",o))(_||{}),v=(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))(v||{}),D=(a=>(a.AmountRemaining="amountRemaining",a.AmountRemainingUsd="amountRemainingUsd",a.IncentiveRate="incentiveRate",a))(D||{}),M=(t=>(t.Asc="asc",t.Desc="desc",t))(M||{}),T=(n=>(n.ActiveIncentivesRateUsd="activeIncentivesRateUsd",n.ActiveIncentivesValueUsd="activeIncentivesValueUsd",n.AllTimeBgtReceived="allTimeBGTReceived",n.Apr="apr",n.Apy="apy",n.BgtCapturePercentage="bgtCapturePercentage",n.Last24hBgtReceived="last24hBGTReceived",n.ProjectedApr="projectedApr",n))(T||{}),x=(t=>(t.Asc="asc",t.Desc="desc",t))(x||{}),V=(e=>(e.NinetyDays="NINETY_DAYS",e.SevenDays="SEVEN_DAYS",e.SixtyDays="SIXTY_DAYS",e.ThirtyDays="THIRTY_DAYS",e))(V||{}),w=(t=>(t.Day="DAY",t.Hour="HOUR",t))(w||{}),R=(t=>(t.OneDay="ONE_DAY",t.SevenDays="SEVEN_DAYS",t))(R||{}),C=(t=>(t.ExactIn="EXACT_IN",t.ExactOut="EXACT_OUT",t))(C||{}),U=(t=>(t.Deposit="DEPOSIT",t.WithdrawalCompleted="WITHDRAWAL_COMPLETED",t))(U||{}),E=(o=>(o.NinetyDay="NINETY_DAY",o.OneHundredEightyDay="ONE_HUNDRED_EIGHTY_DAY",o.OneYear="ONE_YEAR",o.SevenDay="SEVEN_DAY",o.ThirtyDay="THIRTY_DAY",o))(E||{}),$=(a=>(a.Bpt="BPT",a.PhantomBpt="PHANTOM_BPT",a.WhiteListed="WHITE_LISTED",a))($||{}),f=(u=>(u.Amount="amount",u))(f||{}),F=(t=>(t.Asc="asc",t.Desc="desc",t))(F||{}),N=(e=>(e.Inactive="INACTIVE",e.Offline="OFFLINE",e.Proposed="PROPOSED",e.Signed="SIGNED",e))(N||{}),Q=(o=>(o.ActiveBoostAmount="activeBoostAmount",o.LatestBlock="latestBlock",o.LatestBlockTime="latestBlockTime",o.QueuedBoostAmount="queuedBoostAmount",o.QueuedDropBoostAmount="queuedDropBoostAmount",o))(Q||{}),W=(t=>(t.Asc="asc",t.Desc="desc",t))(W||{}),O=(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))(O||{}),H=(t=>(t.Asc="asc",t.Desc="desc",t))(H||{}),L=(e=>(e.NinetyDays="NINETY_DAYS",e.SevenDays="SEVEN_DAYS",e.SixtyDays="SIXTY_DAYS",e.ThirtyDays="THIRTY_DAYS",e))(L||{}),d=r.gql`
|
|
2
2
|
fragment ApiValidatorMinimal on GqlValidator {
|
|
3
3
|
id
|
|
4
4
|
pubkey
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
commissionOnIncentives
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
`,Y=
|
|
25
|
+
`,Y=r.gql`
|
|
26
26
|
fragment ApiVaultIncentive on GqlRewardVaultIncentive {
|
|
27
27
|
active
|
|
28
28
|
remainingAmount
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
decimals
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
`,S=
|
|
40
|
+
`,S=r.gql`
|
|
41
41
|
fragment ApiVault on GqlRewardVault {
|
|
42
42
|
id: vaultAddress
|
|
43
43
|
vaultAddress
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
...ApiVaultIncentive
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
|
-
${Y}`,z=
|
|
77
|
+
${Y}`,z=r.gql`
|
|
78
78
|
fragment ApiRewardAllocationWeight on GqlValidatorRewardAllocationWeight {
|
|
79
79
|
percentageNumerator
|
|
80
80
|
validatorId
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
receiver
|
|
85
85
|
startBlock
|
|
86
86
|
}
|
|
87
|
-
${S}`,y=
|
|
87
|
+
${S}`,y=r.gql`
|
|
88
88
|
fragment ApiValidator on GqlValidator {
|
|
89
89
|
...ApiValidatorMinimal
|
|
90
90
|
operator
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
${d}
|
|
109
|
-
${z}`,K=
|
|
109
|
+
${z}`,K=r.gql`
|
|
110
110
|
fragment ApiValidatorBlockUptime on GqlValidatorBlockUptime {
|
|
111
111
|
isActive
|
|
112
112
|
isProposer
|
|
@@ -114,7 +114,7 @@ ${z}`,K=e.gql`
|
|
|
114
114
|
status
|
|
115
115
|
blockNumber
|
|
116
116
|
}
|
|
117
|
-
`,et=
|
|
117
|
+
`,et=r.gql`
|
|
118
118
|
query GetVaults($where: GqlRewardVaultFilter, $pageSize: Int, $skip: Int, $orderBy: GqlRewardVaultOrderBy = bgtCapturePercentage, $orderDirection: GqlRewardVaultOrderDirection = desc, $search: String) {
|
|
119
119
|
polGetRewardVaults(
|
|
120
120
|
where: $where
|
|
@@ -133,7 +133,7 @@ ${z}`,K=e.gql`
|
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
|
-
${S}`,
|
|
136
|
+
${S}`,rt=r.gql`
|
|
137
137
|
query GetValidator($id: String!, $chain: GqlChain!) {
|
|
138
138
|
validator: polGetValidator(validatorId: $id, chain: $chain) {
|
|
139
139
|
...ApiValidator
|
|
@@ -143,7 +143,7 @@ ${z}`,K=e.gql`
|
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
145
|
${y}
|
|
146
|
-
${K}`,
|
|
146
|
+
${K}`,ot=r.gql`
|
|
147
147
|
query GetValidators($where: GqlValidatorFilter, $sortBy: GqlValidatorOrderBy = lastDayDistributedBGTAmount, $sortOrder: GqlValidatorOrderDirection = desc, $pageSize: Int, $skip: Int, $search: String, $chain: GqlChain) {
|
|
148
148
|
validators: polGetValidators(
|
|
149
149
|
where: $where
|
|
@@ -165,7 +165,7 @@ ${K}`,rt=e.gql`
|
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
|
-
${y}`,nt=
|
|
168
|
+
${y}`,nt=r.gql`
|
|
169
169
|
query GetVaultValidators($vaultId: String!, $chain: GqlChain, $isActive: Boolean = true) {
|
|
170
170
|
validators: polGetValidators(
|
|
171
171
|
where: {vaultAddress: $vaultId, isActive: $isActive}
|
|
@@ -182,13 +182,13 @@ ${K}`,rt=e.gql`
|
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
|
-
${y}`,lt=
|
|
185
|
+
${y}`,lt=r.gql`
|
|
186
186
|
query GetRewardVault($vaultId: String!, $chain: GqlChain!) {
|
|
187
187
|
rewardVault: polGetRewardVault(vaultAddress: $vaultId, chain: $chain) {
|
|
188
188
|
...ApiVault
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
|
-
${S}`,st=
|
|
191
|
+
${S}`,st=r.gql`
|
|
192
192
|
query GlobalData($chain: GqlChain!) {
|
|
193
193
|
top3EmittingValidators: polGetValidators(
|
|
194
194
|
orderBy: bgtCapturePercentage
|
|
@@ -221,7 +221,7 @@ ${K}`,rt=e.gql`
|
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
}
|
|
224
|
-
${d}`,it=
|
|
224
|
+
${d}`,it=r.gql`
|
|
225
225
|
query GetUserVaults($userId: String!, $chain: GqlChain!) {
|
|
226
226
|
userVaultDeposits: polGetUserVaultDeposits(userAddress: $userId, chain: $chain) {
|
|
227
227
|
pagination {
|
|
@@ -237,7 +237,7 @@ ${K}`,rt=e.gql`
|
|
|
237
237
|
}
|
|
238
238
|
}
|
|
239
239
|
}
|
|
240
|
-
${S}`,ut=
|
|
240
|
+
${S}`,ut=r.gql`
|
|
241
241
|
query GetVaultHistory($vaultId: String!, $chain: GqlChain!, $resolution: GqlRewardVaultSnapshotResolution = DAY, $range: GqlRewardVaultSnapshotDataRange = THIRTY_DAYS) {
|
|
242
242
|
polGetRewardVaultSnapshots(
|
|
243
243
|
chain: $chain
|
|
@@ -250,37 +250,14 @@ ${K}`,rt=e.gql`
|
|
|
250
250
|
apr
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
|
-
`,pt=
|
|
254
|
-
query GetVaultDurations {
|
|
255
|
-
polGetVaultDurations {
|
|
256
|
-
maxRewardDuration
|
|
257
|
-
minRewardDuration
|
|
258
|
-
rewardDurationCooldownPeriod
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
`,ct=e.gql`
|
|
262
|
-
query GetBoostDelay {
|
|
263
|
-
polGetValidatorBoostDelay {
|
|
264
|
-
boostDelay
|
|
265
|
-
unboostDelay
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
`,St=e.gql`
|
|
269
|
-
query GetCommissionChangeDelay {
|
|
270
|
-
polGetValidatorCommissionDelay {
|
|
271
|
-
rewardAllocationBlockDelay
|
|
272
|
-
maxWeightPerVault
|
|
273
|
-
commissionChangeDelay
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
`,yt=e.gql`
|
|
253
|
+
`,pt=r.gql`
|
|
277
254
|
query GetSWberaVaultMetadata($chain: GqlChain!, $resolution: GqlSWberaVaultMetadataResolution) {
|
|
278
255
|
polGetSWberaVaultMetadata(chain: $chain, resolution: $resolution) {
|
|
279
256
|
apr
|
|
280
257
|
chain
|
|
281
258
|
}
|
|
282
259
|
}
|
|
283
|
-
`,
|
|
260
|
+
`,ct=r.gql`
|
|
284
261
|
query GetSWberaVaultSnapshots($chain: GqlChain!, $range: GqlVaultSnapshotDataRange) {
|
|
285
262
|
polGetSWberaVaultSnapshots(chain: $chain, range: $range) {
|
|
286
263
|
apr
|
|
@@ -291,7 +268,7 @@ ${K}`,rt=e.gql`
|
|
|
291
268
|
vaultAddress
|
|
292
269
|
}
|
|
293
270
|
}
|
|
294
|
-
`,
|
|
271
|
+
`,St=r.gql`
|
|
295
272
|
query GetPolStakeBeraVaultEventsByOwner($owner: String!) {
|
|
296
273
|
events: polGetStakeBeraVaultEventsByOwner(owner: $owner) {
|
|
297
274
|
type
|
|
@@ -302,11 +279,11 @@ ${K}`,rt=e.gql`
|
|
|
302
279
|
_timestamp
|
|
303
280
|
}
|
|
304
281
|
}
|
|
305
|
-
`,
|
|
282
|
+
`,yt=r.gql`
|
|
306
283
|
query GetStakeBeraVaultEarningsByOwner($owner: String!) {
|
|
307
284
|
polGetStakeBeraVaultEarningsByOwner(owner: $owner) {
|
|
308
285
|
earnings
|
|
309
286
|
owner
|
|
310
287
|
}
|
|
311
288
|
}
|
|
312
|
-
`,
|
|
289
|
+
`,gt={possibleTypes:{GqlPoolAprValue:["GqlPoolAprRange","GqlPoolAprTotal"],GqlPoolBase:["GqlPoolComposableStable","GqlPoolElement","GqlPoolFx","GqlPoolGyro","GqlPoolLiquidityBootstrapping","GqlPoolMetaStable","GqlPoolStable","GqlPoolWeighted"],GqlPoolEvent:["GqlPoolAddRemoveEventV3","GqlPoolSwapEventCowAmm","GqlPoolSwapEventV3"],GqlPoolFeaturedPoolGroupItem:["GqlFeaturePoolGroupItemExternalLink","GqlPoolMinimal"],GqlPoolNestedUnion:["GqlPoolComposableStableNested"],GqlPoolTokenBase:["GqlPoolToken","GqlPoolTokenComposableStable"],GqlPoolTokenComposableStableNestedUnion:["GqlPoolToken"],GqlPoolTokenUnion:["GqlPoolToken","GqlPoolTokenComposableStable"],GqlPoolUnion:["GqlPoolComposableStable","GqlPoolElement","GqlPoolFx","GqlPoolGyro","GqlPoolLiquidityBootstrapping","GqlPoolMetaStable","GqlPoolStable","GqlPoolWeighted"]}},dt=gt;0&&(module.exports={ApiRewardAllocationWeight,ApiValidator,ApiValidatorBlockUptime,ApiValidatorMinimal,ApiVault,ApiVaultIncentive,GetPolStakeBeraVaultEventsByOwner,GetRewardVault,GetSWberaVaultMetadata,GetSWberaVaultSnapshots,GetStakeBeraVaultEarningsByOwner,GetUserVaults,GetValidator,GetValidators,GetVaultHistory,GetVaultValidators,GetVaults,GlobalData,GqlChain,GqlContentNewsItemSource,GqlPoolAprItemType,GqlPoolEventType,GqlPoolEventsDataRange,GqlPoolFilterCategory,GqlPoolJoinExitType,GqlPoolNestingType,GqlPoolOrderBy,GqlPoolOrderDirection,GqlPoolSnapshotDataRange,GqlPoolType,GqlRewardVaultIncentiveOrderBy,GqlRewardVaultIncentiveOrderDirection,GqlRewardVaultOrderBy,GqlRewardVaultOrderDirection,GqlRewardVaultSnapshotDataRange,GqlRewardVaultSnapshotResolution,GqlSWberaVaultMetadataResolution,GqlSorSwapType,GqlStakeBeraVaultEventType,GqlTokenChartDataRange,GqlTokenType,GqlUserVaultDepositOrderBy,GqlUserVaultDepositOrderDirection,GqlValidatorBlockUptimeStatus,GqlValidatorBoostOrderBy,GqlValidatorBoostOrderDirection,GqlValidatorOrderBy,GqlValidatorOrderDirection,GqlVaultSnapshotDataRange});
|
|
@@ -3545,41 +3545,6 @@ type GetVaultHistoryQuery = {
|
|
|
3545
3545
|
apr: string;
|
|
3546
3546
|
}>;
|
|
3547
3547
|
};
|
|
3548
|
-
type GetVaultDurationsQueryVariables = Exact<{
|
|
3549
|
-
[key: string]: never;
|
|
3550
|
-
}>;
|
|
3551
|
-
type GetVaultDurationsQuery = {
|
|
3552
|
-
__typename?: 'Query';
|
|
3553
|
-
polGetVaultDurations: {
|
|
3554
|
-
__typename?: 'GqlVaultDurations';
|
|
3555
|
-
maxRewardDuration: string;
|
|
3556
|
-
minRewardDuration: string;
|
|
3557
|
-
rewardDurationCooldownPeriod: string;
|
|
3558
|
-
};
|
|
3559
|
-
};
|
|
3560
|
-
type GetBoostDelayQueryVariables = Exact<{
|
|
3561
|
-
[key: string]: never;
|
|
3562
|
-
}>;
|
|
3563
|
-
type GetBoostDelayQuery = {
|
|
3564
|
-
__typename?: 'Query';
|
|
3565
|
-
polGetValidatorBoostDelay: {
|
|
3566
|
-
__typename?: 'GqlValidatorBoostDelay';
|
|
3567
|
-
boostDelay: string;
|
|
3568
|
-
unboostDelay: string;
|
|
3569
|
-
};
|
|
3570
|
-
};
|
|
3571
|
-
type GetCommissionChangeDelayQueryVariables = Exact<{
|
|
3572
|
-
[key: string]: never;
|
|
3573
|
-
}>;
|
|
3574
|
-
type GetCommissionChangeDelayQuery = {
|
|
3575
|
-
__typename?: 'Query';
|
|
3576
|
-
polGetValidatorCommissionDelay: {
|
|
3577
|
-
__typename?: 'GqlValidatorCommissionDelay';
|
|
3578
|
-
rewardAllocationBlockDelay: string;
|
|
3579
|
-
maxWeightPerVault: string;
|
|
3580
|
-
commissionChangeDelay: string;
|
|
3581
|
-
};
|
|
3582
|
-
};
|
|
3583
3548
|
type GetSWberaVaultMetadataQueryVariables = Exact<{
|
|
3584
3549
|
chain: GqlChain;
|
|
3585
3550
|
resolution?: InputMaybe<GqlSWberaVaultMetadataResolution>;
|
|
@@ -3648,9 +3613,6 @@ declare const GetRewardVault: _apollo_client.DocumentNode;
|
|
|
3648
3613
|
declare const GlobalData: _apollo_client.DocumentNode;
|
|
3649
3614
|
declare const GetUserVaults: _apollo_client.DocumentNode;
|
|
3650
3615
|
declare const GetVaultHistory: _apollo_client.DocumentNode;
|
|
3651
|
-
declare const GetVaultDurations: _apollo_client.DocumentNode;
|
|
3652
|
-
declare const GetBoostDelay: _apollo_client.DocumentNode;
|
|
3653
|
-
declare const GetCommissionChangeDelay: _apollo_client.DocumentNode;
|
|
3654
3616
|
declare const GetSWberaVaultMetadata: _apollo_client.DocumentNode;
|
|
3655
3617
|
declare const GetSWberaVaultSnapshots: _apollo_client.DocumentNode;
|
|
3656
3618
|
declare const GetPolStakeBeraVaultEventsByOwner: _apollo_client.DocumentNode;
|
|
@@ -3662,4 +3624,4 @@ interface PossibleTypesResultData {
|
|
|
3662
3624
|
}
|
|
3663
3625
|
declare const result: PossibleTypesResultData;
|
|
3664
3626
|
|
|
3665
|
-
export { ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultsResponse, type Exact,
|
|
3627
|
+
export { ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultsResponse, type Exact, GetPolStakeBeraVaultEventsByOwner, type GetPolStakeBeraVaultEventsByOwnerQuery, type GetPolStakeBeraVaultEventsByOwnerQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetStakeBeraVaultEarningsByOwner, type GetStakeBeraVaultEarningsByOwnerQuery, type GetStakeBeraVaultEarningsByOwnerQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlContentNewsItem, GqlContentNewsItemSource, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlFeaturePoolGroupItemExternalLink, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFeaturedPool, type GqlPoolFeaturedPoolGroup, type GqlPoolFeaturedPoolGroupItem, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolMutationResult, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlStakeBeraVaultEarnings, type GqlStakeBeraVaultEvent, GqlStakeBeraVaultEventType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserBgtBalance, type GqlUserPoolBalance, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, type GqlValidatorBoostDelay, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionDelay, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, type GqlVaultDurations, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Mutation, type MutationPoolDeletePoolArgs, type MutationPoolInitializeSnapshotsForPoolArgs, type MutationPoolLoadSnapshotsForPoolsArgs, type MutationPoolReloadAllPoolAprsArgs, type MutationPoolReloadPoolsArgs, type MutationPoolSyncAllCowSnapshotsArgs, type MutationPoolSyncLatestSnapshotsForAllPoolsArgs, type MutationPoolSyncPoolArgs, type MutationPoolUpdateAprsArgs, type MutationTokenDeleteTokenTypeArgs, type MutationTokenReloadErc4626TokensArgs, type MutationTokenReloadTokenPricesArgs, type MutationTokenSyncLatestFxPricesArgs, type MutationUserInitWalletBalancesForPoolArgs, type MutationUserSyncBalanceArgs, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryContentGetNewsItemsArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetDefaultRewardAllocationsArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetStakeBeraVaultEarningsByOwnerArgs, type QueryPolGetStakeBeraVaultEventsByOwnerArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetBatchSwapsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetFeaturedPoolGroupsArgs, type QueryPoolGetFeaturedPoolsArgs, type QueryPoolGetJoinExitsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryPoolGetSwapsArgs, type QueryPoolGetUserBalancesArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCandlestickChartDataArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetPriceChartDataArgs, type QueryTokenGetProtocolTokenPriceArgs, type QueryTokenGetRelativePriceChartDataArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDataArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDataArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, type QueryUserGetTopBgtBalanceArgs, type Scalars, type Token, result as default };
|
|
@@ -3545,41 +3545,6 @@ type GetVaultHistoryQuery = {
|
|
|
3545
3545
|
apr: string;
|
|
3546
3546
|
}>;
|
|
3547
3547
|
};
|
|
3548
|
-
type GetVaultDurationsQueryVariables = Exact<{
|
|
3549
|
-
[key: string]: never;
|
|
3550
|
-
}>;
|
|
3551
|
-
type GetVaultDurationsQuery = {
|
|
3552
|
-
__typename?: 'Query';
|
|
3553
|
-
polGetVaultDurations: {
|
|
3554
|
-
__typename?: 'GqlVaultDurations';
|
|
3555
|
-
maxRewardDuration: string;
|
|
3556
|
-
minRewardDuration: string;
|
|
3557
|
-
rewardDurationCooldownPeriod: string;
|
|
3558
|
-
};
|
|
3559
|
-
};
|
|
3560
|
-
type GetBoostDelayQueryVariables = Exact<{
|
|
3561
|
-
[key: string]: never;
|
|
3562
|
-
}>;
|
|
3563
|
-
type GetBoostDelayQuery = {
|
|
3564
|
-
__typename?: 'Query';
|
|
3565
|
-
polGetValidatorBoostDelay: {
|
|
3566
|
-
__typename?: 'GqlValidatorBoostDelay';
|
|
3567
|
-
boostDelay: string;
|
|
3568
|
-
unboostDelay: string;
|
|
3569
|
-
};
|
|
3570
|
-
};
|
|
3571
|
-
type GetCommissionChangeDelayQueryVariables = Exact<{
|
|
3572
|
-
[key: string]: never;
|
|
3573
|
-
}>;
|
|
3574
|
-
type GetCommissionChangeDelayQuery = {
|
|
3575
|
-
__typename?: 'Query';
|
|
3576
|
-
polGetValidatorCommissionDelay: {
|
|
3577
|
-
__typename?: 'GqlValidatorCommissionDelay';
|
|
3578
|
-
rewardAllocationBlockDelay: string;
|
|
3579
|
-
maxWeightPerVault: string;
|
|
3580
|
-
commissionChangeDelay: string;
|
|
3581
|
-
};
|
|
3582
|
-
};
|
|
3583
3548
|
type GetSWberaVaultMetadataQueryVariables = Exact<{
|
|
3584
3549
|
chain: GqlChain;
|
|
3585
3550
|
resolution?: InputMaybe<GqlSWberaVaultMetadataResolution>;
|
|
@@ -3648,9 +3613,6 @@ declare const GetRewardVault: _apollo_client.DocumentNode;
|
|
|
3648
3613
|
declare const GlobalData: _apollo_client.DocumentNode;
|
|
3649
3614
|
declare const GetUserVaults: _apollo_client.DocumentNode;
|
|
3650
3615
|
declare const GetVaultHistory: _apollo_client.DocumentNode;
|
|
3651
|
-
declare const GetVaultDurations: _apollo_client.DocumentNode;
|
|
3652
|
-
declare const GetBoostDelay: _apollo_client.DocumentNode;
|
|
3653
|
-
declare const GetCommissionChangeDelay: _apollo_client.DocumentNode;
|
|
3654
3616
|
declare const GetSWberaVaultMetadata: _apollo_client.DocumentNode;
|
|
3655
3617
|
declare const GetSWberaVaultSnapshots: _apollo_client.DocumentNode;
|
|
3656
3618
|
declare const GetPolStakeBeraVaultEventsByOwner: _apollo_client.DocumentNode;
|
|
@@ -3662,4 +3624,4 @@ interface PossibleTypesResultData {
|
|
|
3662
3624
|
}
|
|
3663
3625
|
declare const result: PossibleTypesResultData;
|
|
3664
3626
|
|
|
3665
|
-
export { ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultsResponse, type Exact,
|
|
3627
|
+
export { ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultsResponse, type Exact, GetPolStakeBeraVaultEventsByOwner, type GetPolStakeBeraVaultEventsByOwnerQuery, type GetPolStakeBeraVaultEventsByOwnerQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetStakeBeraVaultEarningsByOwner, type GetStakeBeraVaultEarningsByOwnerQuery, type GetStakeBeraVaultEarningsByOwnerQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlContentNewsItem, GqlContentNewsItemSource, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlFeaturePoolGroupItemExternalLink, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFeaturedPool, type GqlPoolFeaturedPoolGroup, type GqlPoolFeaturedPoolGroupItem, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolMutationResult, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlStakeBeraVaultEarnings, type GqlStakeBeraVaultEvent, GqlStakeBeraVaultEventType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserBgtBalance, type GqlUserPoolBalance, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, type GqlValidatorBoostDelay, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionDelay, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, type GqlVaultDurations, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Mutation, type MutationPoolDeletePoolArgs, type MutationPoolInitializeSnapshotsForPoolArgs, type MutationPoolLoadSnapshotsForPoolsArgs, type MutationPoolReloadAllPoolAprsArgs, type MutationPoolReloadPoolsArgs, type MutationPoolSyncAllCowSnapshotsArgs, type MutationPoolSyncLatestSnapshotsForAllPoolsArgs, type MutationPoolSyncPoolArgs, type MutationPoolUpdateAprsArgs, type MutationTokenDeleteTokenTypeArgs, type MutationTokenReloadErc4626TokensArgs, type MutationTokenReloadTokenPricesArgs, type MutationTokenSyncLatestFxPricesArgs, type MutationUserInitWalletBalancesForPoolArgs, type MutationUserSyncBalanceArgs, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryContentGetNewsItemsArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetDefaultRewardAllocationsArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetStakeBeraVaultEarningsByOwnerArgs, type QueryPolGetStakeBeraVaultEventsByOwnerArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetBatchSwapsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetFeaturedPoolGroupsArgs, type QueryPoolGetFeaturedPoolsArgs, type QueryPoolGetJoinExitsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryPoolGetSwapsArgs, type QueryPoolGetUserBalancesArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCandlestickChartDataArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetPriceChartDataArgs, type QueryTokenGetProtocolTokenPriceArgs, type QueryTokenGetRelativePriceChartDataArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDataArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDataArgs, type QueryTokenGetTokensDynamicDataArgs, type QueryUserGetPoolBalancesArgs, type QueryUserGetPoolJoinExitsArgs, type QueryUserGetSwapsArgs, type QueryUserGetTopBgtBalanceArgs, type Scalars, type Token, result as default };
|