@berachain/graphql 0.7.0-beta.2 → 0.7.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.
|
@@ -1475,10 +1475,6 @@ export type GqlRewardVaultDynamicData = {
|
|
|
1475
1475
|
/** @deprecated Use lastDayRewards instead */
|
|
1476
1476
|
lastDayReceivedBGTAmount: Scalars['String']['output'];
|
|
1477
1477
|
lastDayRewards: Scalars['String']['output'];
|
|
1478
|
-
/** @deprecated This will be removed. */
|
|
1479
|
-
projectedApr?: Maybe<Scalars['Float']['output']>;
|
|
1480
|
-
/** @deprecated Use projectedApr instead */
|
|
1481
|
-
projectedApy?: Maybe<Scalars['Float']['output']>;
|
|
1482
1478
|
rewardCapturePerBlock: Scalars['Float']['output'];
|
|
1483
1479
|
rewardCapturePercentage: Scalars['Float']['output'];
|
|
1484
1480
|
tvl?: Maybe<Scalars['Float']['output']>;
|
|
@@ -1543,7 +1539,6 @@ export declare enum GqlRewardVaultOrderBy {
|
|
|
1543
1539
|
BgtCapturePercentage = "bgtCapturePercentage",
|
|
1544
1540
|
/** @deprecated This will be removed at mid April 2026 */
|
|
1545
1541
|
Last24hBgtReceived = "last24hBGTReceived",
|
|
1546
|
-
ProjectedApr = "projectedApr",
|
|
1547
1542
|
RewardCapturePercentage = "rewardCapturePercentage"
|
|
1548
1543
|
}
|
|
1549
1544
|
export declare enum GqlRewardVaultOrderDirection {
|
|
@@ -1594,15 +1589,6 @@ export declare enum GqlSWberaVaultMetadataResolution {
|
|
|
1594
1589
|
SixHours = "SIX_HOURS",
|
|
1595
1590
|
TwelveHours = "TWELVE_HOURS"
|
|
1596
1591
|
}
|
|
1597
|
-
export type GqlSWberaVaultSnapshot = {
|
|
1598
|
-
__typename?: 'GqlSWberaVaultSnapshot';
|
|
1599
|
-
apr: Scalars['String']['output'];
|
|
1600
|
-
chain: GqlChain;
|
|
1601
|
-
id: Scalars['ID']['output'];
|
|
1602
|
-
timestamp: Scalars['Int']['output'];
|
|
1603
|
-
totalAssets: Scalars['String']['output'];
|
|
1604
|
-
vaultAddress: Scalars['Bytes']['output'];
|
|
1605
|
-
};
|
|
1606
1592
|
export type GqlSorCallData = {
|
|
1607
1593
|
__typename?: 'GqlSorCallData';
|
|
1608
1594
|
/** The call data that needs to be sent to the RPC */
|
|
@@ -2109,12 +2095,6 @@ export type GqlValidatorStats = {
|
|
|
2109
2095
|
activeBoostAmountPercentage: Scalars['String']['output'];
|
|
2110
2096
|
stakedBeraAmountPercentage: Scalars['String']['output'];
|
|
2111
2097
|
};
|
|
2112
|
-
export declare enum GqlVaultSnapshotDataRange {
|
|
2113
|
-
NinetyDays = "NINETY_DAYS",
|
|
2114
|
-
SevenDays = "SEVEN_DAYS",
|
|
2115
|
-
SixtyDays = "SIXTY_DAYS",
|
|
2116
|
-
ThirtyDays = "THIRTY_DAYS"
|
|
2117
|
-
}
|
|
2118
2098
|
/** Hook data */
|
|
2119
2099
|
export type Hook = {
|
|
2120
2100
|
__typename?: 'Hook';
|
|
@@ -2193,8 +2173,6 @@ export type Query = {
|
|
|
2193
2173
|
polGetRewardVaults: PaginatedRewardVaultsResponse;
|
|
2194
2174
|
/** @deprecated Deprecated in favor of beep. */
|
|
2195
2175
|
polGetSWberaVaultMetadata: GqlSWberaVaultMetadata;
|
|
2196
|
-
/** @deprecated Deprecated in favor of beep. */
|
|
2197
|
-
polGetSWberaVaultSnapshots: Array<GqlSWberaVaultSnapshot>;
|
|
2198
2176
|
polGetTopVaultDeposits: Array<GqlUserVaultDepositMinimal>;
|
|
2199
2177
|
polGetUserVaultDeposits: PaginatedUserVaultDepositsResponse;
|
|
2200
2178
|
polGetValidator?: Maybe<GqlValidator>;
|
|
@@ -2279,10 +2257,6 @@ export type QueryPolGetSWberaVaultMetadataArgs = {
|
|
|
2279
2257
|
chain: GqlChain;
|
|
2280
2258
|
resolution?: InputMaybe<GqlSWberaVaultMetadataResolution>;
|
|
2281
2259
|
};
|
|
2282
|
-
export type QueryPolGetSWberaVaultSnapshotsArgs = {
|
|
2283
|
-
chain: GqlChain;
|
|
2284
|
-
range?: InputMaybe<GqlVaultSnapshotDataRange>;
|
|
2285
|
-
};
|
|
2286
2260
|
export type QueryPolGetTopVaultDepositsArgs = {
|
|
2287
2261
|
chain: GqlChain;
|
|
2288
2262
|
top?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3478,20 +3452,6 @@ export type GetSWberaVaultMetadataQuery = {
|
|
|
3478
3452
|
chain: GqlChain;
|
|
3479
3453
|
};
|
|
3480
3454
|
};
|
|
3481
|
-
export type GetSWberaVaultSnapshotsQueryVariables = Exact<{
|
|
3482
|
-
chain: GqlChain;
|
|
3483
|
-
range?: InputMaybe<GqlVaultSnapshotDataRange>;
|
|
3484
|
-
}>;
|
|
3485
|
-
export type GetSWberaVaultSnapshotsQuery = {
|
|
3486
|
-
__typename?: 'Query';
|
|
3487
|
-
polGetSWberaVaultSnapshots: Array<{
|
|
3488
|
-
__typename?: 'GqlSWberaVaultSnapshot';
|
|
3489
|
-
apr: string;
|
|
3490
|
-
id: string;
|
|
3491
|
-
timestamp: number;
|
|
3492
|
-
vaultAddress: `0x${string}`;
|
|
3493
|
-
}>;
|
|
3494
|
-
};
|
|
3495
3455
|
export type GetUserValidatorInformationQueryVariables = Exact<{
|
|
3496
3456
|
address: Scalars['String']['input'];
|
|
3497
3457
|
chain: GqlChain;
|
|
@@ -3557,7 +3517,6 @@ export declare const GlobalData: import("@apollo/client").DocumentNode;
|
|
|
3557
3517
|
export declare const GetUserVaults: import("@apollo/client").DocumentNode;
|
|
3558
3518
|
export declare const GetVaultHistory: import("@apollo/client").DocumentNode;
|
|
3559
3519
|
export declare const GetSWberaVaultMetadata: import("@apollo/client").DocumentNode;
|
|
3560
|
-
export declare const GetSWberaVaultSnapshots: import("@apollo/client").DocumentNode;
|
|
3561
3520
|
export declare const GetUserValidatorInformation: import("@apollo/client").DocumentNode;
|
|
3562
3521
|
export declare const GetBendVaults: import("@apollo/client").DocumentNode;
|
|
3563
3522
|
export interface PossibleTypesResultData {
|