@berachain/graphql 0.4.8 → 0.4.9-1
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/dex/api.codegen.cjs +6 -6
- package/dist/dex/api.codegen.d.cts +118 -3
- package/dist/dex/api.codegen.d.ts +118 -3
- package/dist/dex/api.codegen.mjs +4 -4
- package/dist/pol/api.codegen.cjs +91 -22
- package/dist/pol/api.codegen.d.cts +247 -68
- package/dist/pol/api.codegen.d.ts +247 -68
- package/dist/pol/api.codegen.mjs +91 -22
- package/package.json +1 -1
|
@@ -180,6 +180,14 @@ type GqlHistoricalTokenPriceEntry = {
|
|
|
180
180
|
updatedAt: Scalars['Int']['output'];
|
|
181
181
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
182
182
|
};
|
|
183
|
+
type GqlIncentive = {
|
|
184
|
+
incentiveRate: Scalars['String']['output'];
|
|
185
|
+
incentiveRateUsd: Scalars['String']['output'];
|
|
186
|
+
remainingAmount: Scalars['String']['output'];
|
|
187
|
+
remainingAmountUsd: Scalars['String']['output'];
|
|
188
|
+
token: GqlToken;
|
|
189
|
+
tokenAddress: Scalars['Bytes']['output'];
|
|
190
|
+
};
|
|
183
191
|
type GqlLatestSyncedBlocks = {
|
|
184
192
|
__typename?: 'GqlLatestSyncedBlocks';
|
|
185
193
|
poolSyncBlock: Scalars['BigInt']['output'];
|
|
@@ -722,6 +730,7 @@ type GqlPoolFilter = {
|
|
|
722
730
|
};
|
|
723
731
|
declare enum GqlPoolFilterCategory {
|
|
724
732
|
BlackListed = "BLACK_LISTED",
|
|
733
|
+
Featured = "FEATURED",
|
|
725
734
|
Incentivized = "INCENTIVIZED",
|
|
726
735
|
Lrt = "LRT",
|
|
727
736
|
Points = "POINTS",
|
|
@@ -1468,7 +1477,7 @@ type GqlRewardVaultFilter = {
|
|
|
1468
1477
|
vaultAddressIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1469
1478
|
vaultAddressNotIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1470
1479
|
};
|
|
1471
|
-
type GqlRewardVaultIncentive = {
|
|
1480
|
+
type GqlRewardVaultIncentive = GqlIncentive & {
|
|
1472
1481
|
__typename?: 'GqlRewardVaultIncentive';
|
|
1473
1482
|
active: Scalars['Boolean']['output'];
|
|
1474
1483
|
chain: GqlChain;
|
|
@@ -1919,11 +1928,15 @@ type GqlValidator = {
|
|
|
1919
1928
|
chain: GqlChain;
|
|
1920
1929
|
dynamicData?: Maybe<GqlValidatorDynamicData>;
|
|
1921
1930
|
id: Scalars['Bytes']['output'];
|
|
1931
|
+
/** Aggregated incentives of the validator reward allocation. */
|
|
1932
|
+
incentives: Array<GqlValidatorIncentive>;
|
|
1922
1933
|
lastBlockUptime?: Maybe<GqlValidatorBlockUptime>;
|
|
1923
1934
|
metadata?: Maybe<GqlValidatorMetadata>;
|
|
1924
1935
|
operator?: Maybe<Scalars['Bytes']['output']>;
|
|
1925
1936
|
pubkey: Scalars['Bytes']['output'];
|
|
1937
|
+
/** @deprecated Deprecated. It will be removed at mid April 2026. */
|
|
1926
1938
|
rewardAllocationStartBlock?: Maybe<Scalars['Int']['output']>;
|
|
1939
|
+
/** @deprecated Deprecated. It will be removed at mid April 2026. Use incentives if you need an aggregation. */
|
|
1927
1940
|
rewardAllocationWeights: Array<GqlValidatorRewardAllocationWeight>;
|
|
1928
1941
|
rewardAllocator?: Maybe<Scalars['Bytes']['output']>;
|
|
1929
1942
|
valStats?: Maybe<GqlValidatorStats>;
|
|
@@ -1950,11 +1963,12 @@ type GqlValidatorBoost = {
|
|
|
1950
1963
|
activeBoostAmount: Scalars['String']['output'];
|
|
1951
1964
|
chain: GqlChain;
|
|
1952
1965
|
latestBlock: Scalars['Int']['output'];
|
|
1966
|
+
/** The timestamp of the latest block in seconds. */
|
|
1953
1967
|
latestBlockTime: Scalars['Int']['output'];
|
|
1954
1968
|
queuedBoostAmount: Scalars['String']['output'];
|
|
1955
1969
|
queuedDropBoostAmount: Scalars['String']['output'];
|
|
1956
1970
|
userAddress: Scalars['Bytes']['output'];
|
|
1957
|
-
validator?: Maybe<
|
|
1971
|
+
validator?: Maybe<GqlValidatorInList>;
|
|
1958
1972
|
validatorId: Scalars['Bytes']['output'];
|
|
1959
1973
|
};
|
|
1960
1974
|
type GqlValidatorBoostDelay = {
|
|
@@ -2023,6 +2037,26 @@ type GqlValidatorFilter = {
|
|
|
2023
2037
|
rewardAllocatorNotIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2024
2038
|
vaultAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2025
2039
|
};
|
|
2040
|
+
type GqlValidatorInList = {
|
|
2041
|
+
__typename?: 'GqlValidatorInList';
|
|
2042
|
+
dynamicData?: Maybe<GqlValidatorDynamicData>;
|
|
2043
|
+
id: Scalars['Bytes']['output'];
|
|
2044
|
+
metadata?: Maybe<GqlValidatorMetadata>;
|
|
2045
|
+
operator?: Maybe<Scalars['Bytes']['output']>;
|
|
2046
|
+
pubkey: Scalars['Bytes']['output'];
|
|
2047
|
+
rewardAllocator?: Maybe<Scalars['Bytes']['output']>;
|
|
2048
|
+
};
|
|
2049
|
+
type GqlValidatorIncentive = GqlIncentive & {
|
|
2050
|
+
__typename?: 'GqlValidatorIncentive';
|
|
2051
|
+
chain: GqlChain;
|
|
2052
|
+
incentiveRate: Scalars['String']['output'];
|
|
2053
|
+
incentiveRateUsd: Scalars['String']['output'];
|
|
2054
|
+
remainingAmount: Scalars['String']['output'];
|
|
2055
|
+
remainingAmountUsd: Scalars['String']['output'];
|
|
2056
|
+
token: GqlToken;
|
|
2057
|
+
tokenAddress: Scalars['Bytes']['output'];
|
|
2058
|
+
validatorId: Scalars['Bytes']['output'];
|
|
2059
|
+
};
|
|
2026
2060
|
type GqlValidatorMetadata = {
|
|
2027
2061
|
__typename?: 'GqlValidatorMetadata';
|
|
2028
2062
|
chain: GqlChain;
|
|
@@ -2119,6 +2153,87 @@ type HookData = {
|
|
|
2119
2153
|
removeLiquidityFeePercentage?: Maybe<Scalars['String']['output']>;
|
|
2120
2154
|
swapFeePercentage?: Maybe<Scalars['String']['output']>;
|
|
2121
2155
|
};
|
|
2156
|
+
type Mutation = {
|
|
2157
|
+
__typename?: 'Mutation';
|
|
2158
|
+
cacheAverageBlockTime: Scalars['String']['output'];
|
|
2159
|
+
polSyncAllRewardVaultsFromSubgraph: Array<Scalars['String']['output']>;
|
|
2160
|
+
polSyncAllValidatorsFromSubgraph: Array<Scalars['String']['output']>;
|
|
2161
|
+
poolDeletePool: Scalars['String']['output'];
|
|
2162
|
+
poolInitOnChainDataForAllPools: Scalars['String']['output'];
|
|
2163
|
+
poolInitializeSnapshotsForPool: Scalars['String']['output'];
|
|
2164
|
+
poolLoadOnChainDataForAllPools: Scalars['String']['output'];
|
|
2165
|
+
poolLoadOnChainDataForPoolsWithActiveUpdates: Scalars['String']['output'];
|
|
2166
|
+
poolLoadSnapshotsForAllPools: Scalars['String']['output'];
|
|
2167
|
+
poolLoadSnapshotsForPools: Scalars['String']['output'];
|
|
2168
|
+
poolReloadAllPoolAprs: Scalars['String']['output'];
|
|
2169
|
+
poolReloadAllTokenNestedPoolIds: Scalars['String']['output'];
|
|
2170
|
+
poolSyncAllPoolsFromSubgraph: Array<Scalars['String']['output']>;
|
|
2171
|
+
poolSyncLatestSnapshotsForAllPools: Scalars['String']['output'];
|
|
2172
|
+
poolSyncNewPoolsFromSubgraph: Array<Scalars['String']['output']>;
|
|
2173
|
+
poolSyncPool: Scalars['String']['output'];
|
|
2174
|
+
poolSyncPoolAllTokensRelationship: Scalars['String']['output'];
|
|
2175
|
+
poolSyncSanityPoolData: Scalars['String']['output'];
|
|
2176
|
+
poolSyncSwapsForLast48Hours: Scalars['String']['output'];
|
|
2177
|
+
poolSyncTotalShares: Scalars['String']['output'];
|
|
2178
|
+
poolUpdateAprs: Scalars['String']['output'];
|
|
2179
|
+
poolUpdateLifetimeValuesForAllPools: Scalars['String']['output'];
|
|
2180
|
+
poolUpdateLiquidity24hAgoForAllPools: Scalars['String']['output'];
|
|
2181
|
+
poolUpdateLiquidityValuesForAllPools: Scalars['String']['output'];
|
|
2182
|
+
poolUpdateVolumeAndFeeValuesForAllPools: Scalars['String']['output'];
|
|
2183
|
+
protocolCacheMetrics: Scalars['String']['output'];
|
|
2184
|
+
tokenDeleteTokenType: Scalars['String']['output'];
|
|
2185
|
+
tokenReloadAllTokenTypes: Scalars['String']['output'];
|
|
2186
|
+
tokenReloadErc4626Tokens: Array<GqlTokenMutationResult>;
|
|
2187
|
+
tokenReloadTokenPrices?: Maybe<Scalars['Boolean']['output']>;
|
|
2188
|
+
tokenSyncLatestFxPrices: Scalars['String']['output'];
|
|
2189
|
+
tokenSyncTokenDefinitions: Scalars['String']['output'];
|
|
2190
|
+
userInitWalletBalancesForAllPools: Scalars['String']['output'];
|
|
2191
|
+
userInitWalletBalancesForPool: Scalars['String']['output'];
|
|
2192
|
+
userSyncBalance: Scalars['String']['output'];
|
|
2193
|
+
userSyncBalanceAllPools: Scalars['String']['output'];
|
|
2194
|
+
userSyncChangedWalletBalancesForAllPools: Scalars['String']['output'];
|
|
2195
|
+
};
|
|
2196
|
+
type MutationPoolDeletePoolArgs = {
|
|
2197
|
+
poolId: Scalars['String']['input'];
|
|
2198
|
+
};
|
|
2199
|
+
type MutationPoolInitializeSnapshotsForPoolArgs = {
|
|
2200
|
+
poolId: Scalars['String']['input'];
|
|
2201
|
+
};
|
|
2202
|
+
type MutationPoolLoadSnapshotsForPoolsArgs = {
|
|
2203
|
+
poolIds: Array<Scalars['String']['input']>;
|
|
2204
|
+
reload?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2205
|
+
};
|
|
2206
|
+
type MutationPoolReloadAllPoolAprsArgs = {
|
|
2207
|
+
chain: GqlChain;
|
|
2208
|
+
};
|
|
2209
|
+
type MutationPoolSyncLatestSnapshotsForAllPoolsArgs = {
|
|
2210
|
+
chain: GqlChain;
|
|
2211
|
+
};
|
|
2212
|
+
type MutationPoolSyncPoolArgs = {
|
|
2213
|
+
poolId: Scalars['String']['input'];
|
|
2214
|
+
};
|
|
2215
|
+
type MutationPoolUpdateAprsArgs = {
|
|
2216
|
+
chain: GqlChain;
|
|
2217
|
+
};
|
|
2218
|
+
type MutationTokenDeleteTokenTypeArgs = {
|
|
2219
|
+
tokenAddress: Scalars['String']['input'];
|
|
2220
|
+
type: GqlTokenType;
|
|
2221
|
+
};
|
|
2222
|
+
type MutationTokenReloadErc4626TokensArgs = {
|
|
2223
|
+
chains: Array<GqlChain>;
|
|
2224
|
+
};
|
|
2225
|
+
type MutationTokenReloadTokenPricesArgs = {
|
|
2226
|
+
chains: Array<GqlChain>;
|
|
2227
|
+
};
|
|
2228
|
+
type MutationTokenSyncLatestFxPricesArgs = {
|
|
2229
|
+
chain: GqlChain;
|
|
2230
|
+
};
|
|
2231
|
+
type MutationUserInitWalletBalancesForPoolArgs = {
|
|
2232
|
+
poolId: Scalars['String']['input'];
|
|
2233
|
+
};
|
|
2234
|
+
type MutationUserSyncBalanceArgs = {
|
|
2235
|
+
poolId: Scalars['String']['input'];
|
|
2236
|
+
};
|
|
2122
2237
|
type PaginatedRewardVaultIncentivesResponse = {
|
|
2123
2238
|
__typename?: 'PaginatedRewardVaultIncentivesResponse';
|
|
2124
2239
|
incentives: Array<GqlRewardVaultIncentive>;
|
|
@@ -2463,6 +2578,21 @@ type Token = {
|
|
|
2463
2578
|
type ApiVaultIncentiveFragment = {
|
|
2464
2579
|
__typename?: 'GqlRewardVaultIncentive';
|
|
2465
2580
|
active: boolean;
|
|
2581
|
+
tokenAddress: `0x${string}`;
|
|
2582
|
+
remainingAmount: string;
|
|
2583
|
+
remainingAmountUsd: string;
|
|
2584
|
+
incentiveRate: string;
|
|
2585
|
+
incentiveRateUsd: string;
|
|
2586
|
+
token: {
|
|
2587
|
+
__typename?: 'GqlToken';
|
|
2588
|
+
address: `0x${string}`;
|
|
2589
|
+
name: string;
|
|
2590
|
+
symbol: string;
|
|
2591
|
+
decimals: number;
|
|
2592
|
+
};
|
|
2593
|
+
};
|
|
2594
|
+
type ApiMinimalVaultIncentiveFragment = {
|
|
2595
|
+
__typename?: 'GqlRewardVaultIncentive';
|
|
2466
2596
|
remainingAmount: string;
|
|
2467
2597
|
remainingAmountUsd: string;
|
|
2468
2598
|
incentiveRate: string;
|
|
@@ -2514,11 +2644,11 @@ type ApiVaultFragment = {
|
|
|
2514
2644
|
activeIncentives: Array<{
|
|
2515
2645
|
__typename?: 'GqlRewardVaultIncentive';
|
|
2516
2646
|
active: boolean;
|
|
2647
|
+
tokenAddress: `0x${string}`;
|
|
2517
2648
|
remainingAmount: string;
|
|
2518
2649
|
remainingAmountUsd: string;
|
|
2519
2650
|
incentiveRate: string;
|
|
2520
2651
|
incentiveRateUsd: string;
|
|
2521
|
-
tokenAddress: `0x${string}`;
|
|
2522
2652
|
token: {
|
|
2523
2653
|
__typename?: 'GqlToken';
|
|
2524
2654
|
address: `0x${string}`;
|
|
@@ -2583,11 +2713,11 @@ type GetVaultsQuery = {
|
|
|
2583
2713
|
activeIncentives: Array<{
|
|
2584
2714
|
__typename?: 'GqlRewardVaultIncentive';
|
|
2585
2715
|
active: boolean;
|
|
2716
|
+
tokenAddress: `0x${string}`;
|
|
2586
2717
|
remainingAmount: string;
|
|
2587
2718
|
remainingAmountUsd: string;
|
|
2588
2719
|
incentiveRate: string;
|
|
2589
2720
|
incentiveRateUsd: string;
|
|
2590
|
-
tokenAddress: `0x${string}`;
|
|
2591
2721
|
token: {
|
|
2592
2722
|
__typename?: 'GqlToken';
|
|
2593
2723
|
address: `0x${string}`;
|
|
@@ -2674,11 +2804,11 @@ type ApiValidatorFragment = {
|
|
|
2674
2804
|
activeIncentives: Array<{
|
|
2675
2805
|
__typename?: 'GqlRewardVaultIncentive';
|
|
2676
2806
|
active: boolean;
|
|
2807
|
+
tokenAddress: `0x${string}`;
|
|
2677
2808
|
remainingAmount: string;
|
|
2678
2809
|
remainingAmountUsd: string;
|
|
2679
2810
|
incentiveRate: string;
|
|
2680
2811
|
incentiveRateUsd: string;
|
|
2681
|
-
tokenAddress: `0x${string}`;
|
|
2682
2812
|
token: {
|
|
2683
2813
|
__typename?: 'GqlToken';
|
|
2684
2814
|
address: `0x${string}`;
|
|
@@ -2719,6 +2849,94 @@ type ApiValidatorFragment = {
|
|
|
2719
2849
|
commissionOnIncentives: number;
|
|
2720
2850
|
} | null;
|
|
2721
2851
|
};
|
|
2852
|
+
type ApiValidatorRewardAllocationWeightFragment = {
|
|
2853
|
+
__typename?: 'GqlValidatorRewardAllocationWeight';
|
|
2854
|
+
percentage: number;
|
|
2855
|
+
receivingVault?: {
|
|
2856
|
+
__typename?: 'GqlRewardVault';
|
|
2857
|
+
activeIncentives: Array<{
|
|
2858
|
+
__typename?: 'GqlRewardVaultIncentive';
|
|
2859
|
+
remainingAmount: string;
|
|
2860
|
+
remainingAmountUsd: string;
|
|
2861
|
+
incentiveRate: string;
|
|
2862
|
+
incentiveRateUsd: string;
|
|
2863
|
+
token: {
|
|
2864
|
+
__typename?: 'GqlToken';
|
|
2865
|
+
address: `0x${string}`;
|
|
2866
|
+
name: string;
|
|
2867
|
+
symbol: string;
|
|
2868
|
+
decimals: number;
|
|
2869
|
+
logoURI?: string | null;
|
|
2870
|
+
};
|
|
2871
|
+
}>;
|
|
2872
|
+
} | null;
|
|
2873
|
+
};
|
|
2874
|
+
type ApiValidatorIncentiveFragment = {
|
|
2875
|
+
__typename?: 'GqlValidatorIncentive';
|
|
2876
|
+
tokenAddress: `0x${string}`;
|
|
2877
|
+
remainingAmount: string;
|
|
2878
|
+
remainingAmountUsd: string;
|
|
2879
|
+
incentiveRate: string;
|
|
2880
|
+
incentiveRateUsd: string;
|
|
2881
|
+
token: {
|
|
2882
|
+
__typename?: 'GqlToken';
|
|
2883
|
+
address: `0x${string}`;
|
|
2884
|
+
name: string;
|
|
2885
|
+
symbol: string;
|
|
2886
|
+
decimals: number;
|
|
2887
|
+
};
|
|
2888
|
+
};
|
|
2889
|
+
type ApiValidatorInListFragment = {
|
|
2890
|
+
__typename?: 'GqlValidator';
|
|
2891
|
+
operator?: `0x${string}` | null;
|
|
2892
|
+
id: `0x${string}`;
|
|
2893
|
+
pubkey: `0x${string}`;
|
|
2894
|
+
rewardAllocator?: `0x${string}` | null;
|
|
2895
|
+
incentives: Array<{
|
|
2896
|
+
__typename?: 'GqlValidatorIncentive';
|
|
2897
|
+
tokenAddress: `0x${string}`;
|
|
2898
|
+
remainingAmount: string;
|
|
2899
|
+
remainingAmountUsd: string;
|
|
2900
|
+
incentiveRate: string;
|
|
2901
|
+
incentiveRateUsd: string;
|
|
2902
|
+
token: {
|
|
2903
|
+
__typename?: 'GqlToken';
|
|
2904
|
+
address: `0x${string}`;
|
|
2905
|
+
name: string;
|
|
2906
|
+
symbol: string;
|
|
2907
|
+
decimals: number;
|
|
2908
|
+
};
|
|
2909
|
+
}>;
|
|
2910
|
+
lastBlockUptime?: {
|
|
2911
|
+
__typename?: 'GqlValidatorBlockUptime';
|
|
2912
|
+
isActive: boolean;
|
|
2913
|
+
isProposer: boolean;
|
|
2914
|
+
isSigner: boolean;
|
|
2915
|
+
status: GqlValidatorBlockUptimeStatus;
|
|
2916
|
+
blockNumber: number;
|
|
2917
|
+
} | null;
|
|
2918
|
+
metadata?: {
|
|
2919
|
+
__typename?: 'GqlValidatorMetadata';
|
|
2920
|
+
name: string;
|
|
2921
|
+
logoURI: string;
|
|
2922
|
+
website: string;
|
|
2923
|
+
description: string;
|
|
2924
|
+
} | null;
|
|
2925
|
+
dynamicData?: {
|
|
2926
|
+
__typename?: 'GqlValidatorDynamicData';
|
|
2927
|
+
activeBoostAmount: string;
|
|
2928
|
+
usersActiveBoostCount: number;
|
|
2929
|
+
queuedBoostAmount: string;
|
|
2930
|
+
usersQueuedBoostCount: number;
|
|
2931
|
+
allTimeDistributedBGTAmount: string;
|
|
2932
|
+
rewardRate: string;
|
|
2933
|
+
stakedBeraAmount: string;
|
|
2934
|
+
lastDayDistributedBGTAmount: string;
|
|
2935
|
+
activeBoostAmountRank: number;
|
|
2936
|
+
boostApr: number;
|
|
2937
|
+
commissionOnIncentives: number;
|
|
2938
|
+
} | null;
|
|
2939
|
+
};
|
|
2722
2940
|
type ApiRewardAllocationWeightFragment = {
|
|
2723
2941
|
__typename?: 'GqlValidatorRewardAllocationWeight';
|
|
2724
2942
|
percentage: number;
|
|
@@ -2762,11 +2980,11 @@ type ApiRewardAllocationWeightFragment = {
|
|
|
2762
2980
|
activeIncentives: Array<{
|
|
2763
2981
|
__typename?: 'GqlRewardVaultIncentive';
|
|
2764
2982
|
active: boolean;
|
|
2983
|
+
tokenAddress: `0x${string}`;
|
|
2765
2984
|
remainingAmount: string;
|
|
2766
2985
|
remainingAmountUsd: string;
|
|
2767
2986
|
incentiveRate: string;
|
|
2768
2987
|
incentiveRateUsd: string;
|
|
2769
|
-
tokenAddress: `0x${string}`;
|
|
2770
2988
|
token: {
|
|
2771
2989
|
__typename?: 'GqlToken';
|
|
2772
2990
|
address: `0x${string}`;
|
|
@@ -2840,11 +3058,11 @@ type GetValidatorQuery = {
|
|
|
2840
3058
|
activeIncentives: Array<{
|
|
2841
3059
|
__typename?: 'GqlRewardVaultIncentive';
|
|
2842
3060
|
active: boolean;
|
|
3061
|
+
tokenAddress: `0x${string}`;
|
|
2843
3062
|
remainingAmount: string;
|
|
2844
3063
|
remainingAmountUsd: string;
|
|
2845
3064
|
incentiveRate: string;
|
|
2846
3065
|
incentiveRateUsd: string;
|
|
2847
|
-
tokenAddress: `0x${string}`;
|
|
2848
3066
|
token: {
|
|
2849
3067
|
__typename?: 'GqlToken';
|
|
2850
3068
|
address: `0x${string}`;
|
|
@@ -2920,63 +3138,20 @@ type GetValidatorsQuery = {
|
|
|
2920
3138
|
id: `0x${string}`;
|
|
2921
3139
|
pubkey: `0x${string}`;
|
|
2922
3140
|
rewardAllocator?: `0x${string}` | null;
|
|
2923
|
-
|
|
2924
|
-
__typename?: '
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
stakingTokenAmount: string;
|
|
2933
|
-
id: `0x${string}`;
|
|
3141
|
+
incentives: Array<{
|
|
3142
|
+
__typename?: 'GqlValidatorIncentive';
|
|
3143
|
+
tokenAddress: `0x${string}`;
|
|
3144
|
+
remainingAmount: string;
|
|
3145
|
+
remainingAmountUsd: string;
|
|
3146
|
+
incentiveRate: string;
|
|
3147
|
+
incentiveRateUsd: string;
|
|
3148
|
+
token: {
|
|
3149
|
+
__typename?: 'GqlToken';
|
|
2934
3150
|
address: `0x${string}`;
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
bgtCapturePercentage: string;
|
|
2940
|
-
bgtCapturePerBlock: string;
|
|
2941
|
-
activeIncentivesValueUsd: string;
|
|
2942
|
-
activeIncentivesRateUsd: string;
|
|
2943
|
-
tvl?: number | null;
|
|
2944
|
-
} | null;
|
|
2945
|
-
stakingToken: {
|
|
2946
|
-
__typename?: 'GqlToken';
|
|
2947
|
-
address: `0x${string}`;
|
|
2948
|
-
name: string;
|
|
2949
|
-
symbol: string;
|
|
2950
|
-
decimals: number;
|
|
2951
|
-
};
|
|
2952
|
-
metadata?: {
|
|
2953
|
-
__typename?: 'GqlRewardVaultMetadata';
|
|
2954
|
-
name: string;
|
|
2955
|
-
logoURI: string;
|
|
2956
|
-
url: string;
|
|
2957
|
-
protocolName: string;
|
|
2958
|
-
protocolIcon: string;
|
|
2959
|
-
description: string;
|
|
2960
|
-
categories: Array<string>;
|
|
2961
|
-
action: string;
|
|
2962
|
-
} | null;
|
|
2963
|
-
activeIncentives: Array<{
|
|
2964
|
-
__typename?: 'GqlRewardVaultIncentive';
|
|
2965
|
-
active: boolean;
|
|
2966
|
-
remainingAmount: string;
|
|
2967
|
-
remainingAmountUsd: string;
|
|
2968
|
-
incentiveRate: string;
|
|
2969
|
-
incentiveRateUsd: string;
|
|
2970
|
-
tokenAddress: `0x${string}`;
|
|
2971
|
-
token: {
|
|
2972
|
-
__typename?: 'GqlToken';
|
|
2973
|
-
address: `0x${string}`;
|
|
2974
|
-
name: string;
|
|
2975
|
-
symbol: string;
|
|
2976
|
-
decimals: number;
|
|
2977
|
-
};
|
|
2978
|
-
}>;
|
|
2979
|
-
} | null;
|
|
3151
|
+
name: string;
|
|
3152
|
+
symbol: string;
|
|
3153
|
+
decimals: number;
|
|
3154
|
+
};
|
|
2980
3155
|
}>;
|
|
2981
3156
|
lastBlockUptime?: {
|
|
2982
3157
|
__typename?: 'GqlValidatorBlockUptime';
|
|
@@ -3073,11 +3248,11 @@ type GetVaultValidatorsQuery = {
|
|
|
3073
3248
|
activeIncentives: Array<{
|
|
3074
3249
|
__typename?: 'GqlRewardVaultIncentive';
|
|
3075
3250
|
active: boolean;
|
|
3251
|
+
tokenAddress: `0x${string}`;
|
|
3076
3252
|
remainingAmount: string;
|
|
3077
3253
|
remainingAmountUsd: string;
|
|
3078
3254
|
incentiveRate: string;
|
|
3079
3255
|
incentiveRateUsd: string;
|
|
3080
|
-
tokenAddress: `0x${string}`;
|
|
3081
3256
|
token: {
|
|
3082
3257
|
__typename?: 'GqlToken';
|
|
3083
3258
|
address: `0x${string}`;
|
|
@@ -3164,11 +3339,11 @@ type GetRewardVaultQuery = {
|
|
|
3164
3339
|
activeIncentives: Array<{
|
|
3165
3340
|
__typename?: 'GqlRewardVaultIncentive';
|
|
3166
3341
|
active: boolean;
|
|
3342
|
+
tokenAddress: `0x${string}`;
|
|
3167
3343
|
remainingAmount: string;
|
|
3168
3344
|
remainingAmountUsd: string;
|
|
3169
3345
|
incentiveRate: string;
|
|
3170
3346
|
incentiveRateUsd: string;
|
|
3171
|
-
tokenAddress: `0x${string}`;
|
|
3172
3347
|
token: {
|
|
3173
3348
|
__typename?: 'GqlToken';
|
|
3174
3349
|
address: `0x${string}`;
|
|
@@ -3294,11 +3469,11 @@ type GetUserVaultsQuery = {
|
|
|
3294
3469
|
activeIncentives: Array<{
|
|
3295
3470
|
__typename?: 'GqlRewardVaultIncentive';
|
|
3296
3471
|
active: boolean;
|
|
3472
|
+
tokenAddress: `0x${string}`;
|
|
3297
3473
|
remainingAmount: string;
|
|
3298
3474
|
remainingAmountUsd: string;
|
|
3299
3475
|
incentiveRate: string;
|
|
3300
3476
|
incentiveRateUsd: string;
|
|
3301
|
-
tokenAddress: `0x${string}`;
|
|
3302
3477
|
token: {
|
|
3303
3478
|
__typename?: 'GqlToken';
|
|
3304
3479
|
address: `0x${string}`;
|
|
@@ -3369,7 +3544,7 @@ type GetUserValidatorInformationQuery = {
|
|
|
3369
3544
|
queuedBoostAmount: string;
|
|
3370
3545
|
queuedDropBoostAmount: string;
|
|
3371
3546
|
validator?: {
|
|
3372
|
-
__typename?: '
|
|
3547
|
+
__typename?: 'GqlValidatorInList';
|
|
3373
3548
|
id: `0x${string}`;
|
|
3374
3549
|
pubkey: `0x${string}`;
|
|
3375
3550
|
metadata?: {
|
|
@@ -3381,11 +3556,15 @@ type GetUserValidatorInformationQuery = {
|
|
|
3381
3556
|
}>;
|
|
3382
3557
|
};
|
|
3383
3558
|
};
|
|
3559
|
+
declare const ApiMinimalVaultIncentive: _apollo_client.DocumentNode;
|
|
3384
3560
|
declare const ApiValidatorMinimal: _apollo_client.DocumentNode;
|
|
3385
3561
|
declare const ApiVaultIncentive: _apollo_client.DocumentNode;
|
|
3386
3562
|
declare const ApiVault: _apollo_client.DocumentNode;
|
|
3387
3563
|
declare const ApiRewardAllocationWeight: _apollo_client.DocumentNode;
|
|
3388
3564
|
declare const ApiValidator: _apollo_client.DocumentNode;
|
|
3565
|
+
declare const ApiValidatorRewardAllocationWeight: _apollo_client.DocumentNode;
|
|
3566
|
+
declare const ApiValidatorIncentive: _apollo_client.DocumentNode;
|
|
3567
|
+
declare const ApiValidatorInList: _apollo_client.DocumentNode;
|
|
3389
3568
|
declare const ApiValidatorBlockUptime: _apollo_client.DocumentNode;
|
|
3390
3569
|
declare const GetVaults: _apollo_client.DocumentNode;
|
|
3391
3570
|
declare const GetValidator: _apollo_client.DocumentNode;
|
|
@@ -3405,4 +3584,4 @@ interface PossibleTypesResultData {
|
|
|
3405
3584
|
}
|
|
3406
3585
|
declare const result: PossibleTypesResultData;
|
|
3407
3586
|
|
|
3408
|
-
export { ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserValidatorInformation, type GetUserValidatorInformationQuery, type GetUserValidatorInformationQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserBgtBalance, type GqlUserPoolBalance, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, 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 PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type 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, type Scalars, type Token, result as default };
|
|
3587
|
+
export { ApiMinimalVaultIncentive, type ApiMinimalVaultIncentiveFragment, ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorInList, type ApiValidatorInListFragment, ApiValidatorIncentive, type ApiValidatorIncentiveFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiValidatorRewardAllocationWeight, type ApiValidatorRewardAllocationWeightFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserValidatorInformation, type GetUserValidatorInformationQuery, type GetUserValidatorInformationQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserBgtBalance, type GqlUserPoolBalance, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, type GqlValidatorBoostDelay, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorCommissionDelay, type GqlValidatorCommissionHistory, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorInList, type GqlValidatorIncentive, 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 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 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, type Scalars, type Token, result as default };
|