@avalabs/glacier-sdk 3.1.0-alpha.31 → 3.1.0-alpha.32
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/index.d.ts +156 -25
- package/dist/index.js +1 -1
- package/esm/generated/Glacier.d.ts +2 -0
- package/esm/generated/Glacier.js +1 -1
- package/esm/generated/models/ListErc1155BalancesResponse.d.ts +5 -0
- package/esm/generated/models/ListErc20BalancesResponse.d.ts +5 -0
- package/esm/generated/models/ListErc721BalancesResponse.d.ts +5 -0
- package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.d.ts +9 -0
- package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.js +1 -0
- package/esm/generated/models/{RpcUsageMetricsResponseDTO.d.ts → SubnetRpcUsageMetricsResponseDTO.d.ts} +6 -6
- package/esm/generated/services/DataApiUsageMetricsService.d.ts +54 -3
- package/esm/generated/services/DataApiUsageMetricsService.js +1 -1
- package/esm/generated/services/EvmChainsService.d.ts +3 -3
- package/esm/generated/services/MultiChainService.d.ts +70 -0
- package/esm/generated/services/MultiChainService.js +1 -0
- package/esm/index.d.ts +3 -1
- package/esm/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -148,12 +148,34 @@ type LogsResponseDTO = {
|
|
|
148
148
|
logs: Array<LogsFormat>;
|
|
149
149
|
};
|
|
150
150
|
|
|
151
|
+
declare enum Network {
|
|
152
|
+
MAINNET = "mainnet",
|
|
153
|
+
FUJI = "fuji",
|
|
154
|
+
TESTNET = "testnet",
|
|
155
|
+
DEVNET = "devnet"
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
declare enum PrimaryNetworkRpcMetricsGroupByEnum {
|
|
159
|
+
REQUEST_PATH = "requestPath",
|
|
160
|
+
RESPONSE_CODE = "responseCode",
|
|
161
|
+
COUNTRY = "country",
|
|
162
|
+
CONTINENT = "continent",
|
|
163
|
+
USER_AGENT = "userAgent"
|
|
164
|
+
}
|
|
165
|
+
|
|
151
166
|
declare enum RpcUsageMetricsGroupByEnum {
|
|
152
167
|
RPC_METHOD = "rpcMethod",
|
|
153
168
|
RESPONSE_CODE = "responseCode",
|
|
154
169
|
RL_BYPASS_TOKEN = "rlBypassToken"
|
|
155
170
|
}
|
|
156
171
|
|
|
172
|
+
declare enum SubnetRpcTimeIntervalGranularity {
|
|
173
|
+
HOURLY = "hourly",
|
|
174
|
+
DAILY = "daily",
|
|
175
|
+
WEEKLY = "weekly",
|
|
176
|
+
MONTHLY = "monthly"
|
|
177
|
+
}
|
|
178
|
+
|
|
157
179
|
type RpcUsageMetricsValueAggregated = {
|
|
158
180
|
/**
|
|
159
181
|
* The total number of requests
|
|
@@ -215,28 +237,21 @@ type RpcMetrics = {
|
|
|
215
237
|
values: Array<RpcUsageMetricsValueAggregated>;
|
|
216
238
|
};
|
|
217
239
|
|
|
218
|
-
type
|
|
240
|
+
type SubnetRpcUsageMetricsResponseDTO = {
|
|
219
241
|
/**
|
|
220
242
|
* Duration in which the metrics value is aggregated
|
|
221
243
|
*/
|
|
222
244
|
aggregateDuration: string;
|
|
223
|
-
/**
|
|
224
|
-
* ChainId for which the metrics are aggregated
|
|
225
|
-
*/
|
|
226
|
-
chainId: string;
|
|
227
245
|
/**
|
|
228
246
|
* Metrics values
|
|
229
247
|
*/
|
|
230
248
|
metrics: Array<RpcMetrics>;
|
|
249
|
+
/**
|
|
250
|
+
* ChainId for which the metrics are aggregated
|
|
251
|
+
*/
|
|
252
|
+
chainId: string;
|
|
231
253
|
};
|
|
232
254
|
|
|
233
|
-
declare enum SubnetRpcTimeIntervalGranularity {
|
|
234
|
-
HOURLY = "hourly",
|
|
235
|
-
DAILY = "daily",
|
|
236
|
-
WEEKLY = "weekly",
|
|
237
|
-
MONTHLY = "monthly"
|
|
238
|
-
}
|
|
239
|
-
|
|
240
255
|
declare enum TimeIntervalGranularityExtended {
|
|
241
256
|
MINUTE = "minute",
|
|
242
257
|
HOURLY = "hourly",
|
|
@@ -433,7 +448,7 @@ declare class DataApiUsageMetricsService {
|
|
|
433
448
|
/**
|
|
434
449
|
* Get usage metrics for the Subnet RPC
|
|
435
450
|
* Gets metrics for public Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
|
|
436
|
-
* @returns
|
|
451
|
+
* @returns SubnetRpcUsageMetricsResponseDTO Successful response
|
|
437
452
|
* @throws ApiError
|
|
438
453
|
*/
|
|
439
454
|
getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, responseCode, rpcMethod, rlBypassApiToken, }: {
|
|
@@ -470,7 +485,56 @@ declare class DataApiUsageMetricsService {
|
|
|
470
485
|
* Filter data by Rl Bypass API Token.
|
|
471
486
|
*/
|
|
472
487
|
rlBypassApiToken?: string;
|
|
473
|
-
}): CancelablePromise<
|
|
488
|
+
}): CancelablePromise<SubnetRpcUsageMetricsResponseDTO>;
|
|
489
|
+
/**
|
|
490
|
+
* Get usage metrics for the Primary Network RPC
|
|
491
|
+
* Gets metrics for public Primary Network RPC usage over a specified time interval aggregated at the specified time-duration granularity.
|
|
492
|
+
* @returns SubnetRpcUsageMetricsResponseDTO Successful response
|
|
493
|
+
* @throws ApiError
|
|
494
|
+
*/
|
|
495
|
+
getPrimaryNetworkRpcUsageMetrics({ network, timeInterval, startTimestamp, endTimestamp, groupBy, responseCode, requestPath, country, continent, userAgent, }: {
|
|
496
|
+
/**
|
|
497
|
+
* Either mainnet or testnet/fuji.
|
|
498
|
+
*/
|
|
499
|
+
network: Network;
|
|
500
|
+
/**
|
|
501
|
+
* Time interval granularity for data aggregation for subnet
|
|
502
|
+
* rpc metrics
|
|
503
|
+
*/
|
|
504
|
+
timeInterval?: SubnetRpcTimeIntervalGranularity;
|
|
505
|
+
/**
|
|
506
|
+
* The start time of the range as a UNIX timestamp. The requested start time will be rounded down to 0:00 UTC of the day.
|
|
507
|
+
*/
|
|
508
|
+
startTimestamp?: number;
|
|
509
|
+
/**
|
|
510
|
+
* The end time of the range as a UNIX timestamp. The requested end time will be rounded down to 0:00 UTC of the day.
|
|
511
|
+
*/
|
|
512
|
+
endTimestamp?: number;
|
|
513
|
+
/**
|
|
514
|
+
* Query param for the criterion used for grouping metrics
|
|
515
|
+
*/
|
|
516
|
+
groupBy?: PrimaryNetworkRpcMetricsGroupByEnum;
|
|
517
|
+
/**
|
|
518
|
+
* Filter data by response status code.
|
|
519
|
+
*/
|
|
520
|
+
responseCode?: string;
|
|
521
|
+
/**
|
|
522
|
+
* Filter data by request path.
|
|
523
|
+
*/
|
|
524
|
+
requestPath?: string;
|
|
525
|
+
/**
|
|
526
|
+
* Filter data by Country.
|
|
527
|
+
*/
|
|
528
|
+
country?: string;
|
|
529
|
+
/**
|
|
530
|
+
* Filter data by Continent.
|
|
531
|
+
*/
|
|
532
|
+
continent?: string;
|
|
533
|
+
/**
|
|
534
|
+
* Filter data by User Agent.
|
|
535
|
+
*/
|
|
536
|
+
userAgent?: string;
|
|
537
|
+
}): CancelablePromise<SubnetRpcUsageMetricsResponseDTO>;
|
|
474
538
|
}
|
|
475
539
|
|
|
476
540
|
declare class DefaultService {
|
|
@@ -669,6 +733,10 @@ type ListErc1155BalancesResponse = {
|
|
|
669
733
|
* A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
|
|
670
734
|
*/
|
|
671
735
|
nextPageToken?: string;
|
|
736
|
+
/**
|
|
737
|
+
* The native token balance for the address.
|
|
738
|
+
*/
|
|
739
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
672
740
|
/**
|
|
673
741
|
* The list of ERC-1155 token balances for the address.
|
|
674
742
|
*/
|
|
@@ -736,6 +804,10 @@ type ListErc20BalancesResponse = {
|
|
|
736
804
|
* A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
|
|
737
805
|
*/
|
|
738
806
|
nextPageToken?: string;
|
|
807
|
+
/**
|
|
808
|
+
* The native token balance for the address.
|
|
809
|
+
*/
|
|
810
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
739
811
|
/**
|
|
740
812
|
* The list of ERC-20 token balances for the address.
|
|
741
813
|
*/
|
|
@@ -747,6 +819,10 @@ type ListErc721BalancesResponse = {
|
|
|
747
819
|
* A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
|
|
748
820
|
*/
|
|
749
821
|
nextPageToken?: string;
|
|
822
|
+
/**
|
|
823
|
+
* The native token balance for the address.
|
|
824
|
+
*/
|
|
825
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
750
826
|
/**
|
|
751
827
|
* The list of ERC-721 token balances for the address.
|
|
752
828
|
*/
|
|
@@ -1269,13 +1345,6 @@ type ListNativeTransactionsResponse = {
|
|
|
1269
1345
|
transactions: Array<NativeTransaction>;
|
|
1270
1346
|
};
|
|
1271
1347
|
|
|
1272
|
-
declare enum Network {
|
|
1273
|
-
MAINNET = "mainnet",
|
|
1274
|
-
FUJI = "fuji",
|
|
1275
|
-
TESTNET = "testnet",
|
|
1276
|
-
DEVNET = "devnet"
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
1348
|
declare enum TransactionStatus {
|
|
1280
1349
|
FAILED = "failed",
|
|
1281
1350
|
SUCCESS = "success"
|
|
@@ -1313,7 +1382,7 @@ declare class EvmChainsService {
|
|
|
1313
1382
|
chainId: string;
|
|
1314
1383
|
}): CancelablePromise<GetChainResponse>;
|
|
1315
1384
|
/**
|
|
1316
|
-
*
|
|
1385
|
+
* @deprecated
|
|
1317
1386
|
* Gets a list of all chains where the address was either a sender or receiver in a transaction or ERC transfer. The list is currently updated every 15 minutes.
|
|
1318
1387
|
* @returns ListAddressChainsResponse Successful response
|
|
1319
1388
|
* @throws ApiError
|
|
@@ -1325,7 +1394,7 @@ declare class EvmChainsService {
|
|
|
1325
1394
|
address: string;
|
|
1326
1395
|
}): CancelablePromise<ListAddressChainsResponse>;
|
|
1327
1396
|
/**
|
|
1328
|
-
*
|
|
1397
|
+
* @deprecated
|
|
1329
1398
|
* Lists the latest transactions for all supported EVM chains. Filterable by status.
|
|
1330
1399
|
* @returns ListNativeTransactionsResponse Successful response
|
|
1331
1400
|
* @throws ApiError
|
|
@@ -1349,7 +1418,7 @@ declare class EvmChainsService {
|
|
|
1349
1418
|
status?: TransactionStatus;
|
|
1350
1419
|
}): CancelablePromise<ListNativeTransactionsResponse>;
|
|
1351
1420
|
/**
|
|
1352
|
-
*
|
|
1421
|
+
* @deprecated
|
|
1353
1422
|
* Lists the latest blocks for all supported EVM chains. Filterable by network.
|
|
1354
1423
|
* @returns ListEvmBlocksResponse Successful response
|
|
1355
1424
|
* @throws ApiError
|
|
@@ -2471,6 +2540,67 @@ declare class HealthCheckService {
|
|
|
2471
2540
|
}>;
|
|
2472
2541
|
}
|
|
2473
2542
|
|
|
2543
|
+
declare class MultiChainService {
|
|
2544
|
+
readonly httpRequest: BaseHttpRequest;
|
|
2545
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
2546
|
+
/**
|
|
2547
|
+
* Get chains for address
|
|
2548
|
+
* Gets a list of all chains where the address was either a sender or receiver in a transaction or ERC transfer. The list is currently updated every 15 minutes.
|
|
2549
|
+
* @returns ListAddressChainsResponse Successful response
|
|
2550
|
+
* @throws ApiError
|
|
2551
|
+
*/
|
|
2552
|
+
getAddressChains({ address, }: {
|
|
2553
|
+
/**
|
|
2554
|
+
* A wallet address.
|
|
2555
|
+
*/
|
|
2556
|
+
address: string;
|
|
2557
|
+
}): CancelablePromise<ListAddressChainsResponse>;
|
|
2558
|
+
/**
|
|
2559
|
+
* List latest transactions for all supported EVM chains
|
|
2560
|
+
* Lists the latest transactions for all supported EVM chains. Filterable by status.
|
|
2561
|
+
* @returns ListNativeTransactionsResponse Successful response
|
|
2562
|
+
* @throws ApiError
|
|
2563
|
+
*/
|
|
2564
|
+
listAllLatestTransactions({ pageToken, pageSize, network, status, }: {
|
|
2565
|
+
/**
|
|
2566
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
2567
|
+
*/
|
|
2568
|
+
pageToken?: string;
|
|
2569
|
+
/**
|
|
2570
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
2571
|
+
*/
|
|
2572
|
+
pageSize?: number;
|
|
2573
|
+
/**
|
|
2574
|
+
* Either mainnet or testnet/fuji.
|
|
2575
|
+
*/
|
|
2576
|
+
network?: Network;
|
|
2577
|
+
/**
|
|
2578
|
+
* A status filter for listed transactions.
|
|
2579
|
+
*/
|
|
2580
|
+
status?: TransactionStatus;
|
|
2581
|
+
}): CancelablePromise<ListNativeTransactionsResponse>;
|
|
2582
|
+
/**
|
|
2583
|
+
* List latest blocks for all supported EVM chains
|
|
2584
|
+
* Lists the latest blocks for all supported EVM chains. Filterable by network.
|
|
2585
|
+
* @returns ListEvmBlocksResponse Successful response
|
|
2586
|
+
* @throws ApiError
|
|
2587
|
+
*/
|
|
2588
|
+
listAllLatestBlocks({ pageToken, pageSize, network, }: {
|
|
2589
|
+
/**
|
|
2590
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
2591
|
+
*/
|
|
2592
|
+
pageToken?: string;
|
|
2593
|
+
/**
|
|
2594
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
2595
|
+
*/
|
|
2596
|
+
pageSize?: number;
|
|
2597
|
+
/**
|
|
2598
|
+
* Either mainnet or testnet/fuji.
|
|
2599
|
+
*/
|
|
2600
|
+
network?: Network;
|
|
2601
|
+
}): CancelablePromise<ListEvmBlocksResponse>;
|
|
2602
|
+
}
|
|
2603
|
+
|
|
2474
2604
|
type ListNftTokens = {
|
|
2475
2605
|
/**
|
|
2476
2606
|
* A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
|
|
@@ -5348,6 +5478,7 @@ declare class Glacier {
|
|
|
5348
5478
|
readonly evmContracts: EvmContractsService;
|
|
5349
5479
|
readonly evmTransactions: EvmTransactionsService;
|
|
5350
5480
|
readonly healthCheck: HealthCheckService;
|
|
5481
|
+
readonly multiChain: MultiChainService;
|
|
5351
5482
|
readonly nfTs: NfTsService;
|
|
5352
5483
|
readonly operations: OperationsService;
|
|
5353
5484
|
readonly primaryNetwork: PrimaryNetworkService;
|
|
@@ -5512,4 +5643,4 @@ type Unauthorized = {
|
|
|
5512
5643
|
error: string;
|
|
5513
5644
|
};
|
|
5514
5645
|
|
|
5515
|
-
export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BalanceOwner, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, BlsCredentials, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CreateWebhookRequest, CurrencyCode, DataApiUsageMetricsService, DataListChainsResponse, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMInput, EVMOperationType, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EventType, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmContractsService, EvmNetworkOptions, EvmTransactionsService, Forbidden, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalServerError, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, L1ValidatorDetailsFull, L1ValidatorDetailsTransaction, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListL1ValidatorsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTeleporterMessagesResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhookAddressesResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NextPageToken, NfTsService, NftTokenMetadataStatus, NotFound, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PricingProviders, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RemovedValidatorDetails, RequestType, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, RpcMetrics, RpcUsageMetricsGroupByEnum,
|
|
5646
|
+
export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BalanceOwner, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, BlsCredentials, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CreateWebhookRequest, CurrencyCode, DataApiUsageMetricsService, DataListChainsResponse, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMInput, EVMOperationType, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EventType, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmContractsService, EvmNetworkOptions, EvmTransactionsService, Forbidden, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalServerError, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, L1ValidatorDetailsFull, L1ValidatorDetailsTransaction, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListL1ValidatorsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTeleporterMessagesResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhookAddressesResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, MultiChainService, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NextPageToken, NfTsService, NftTokenMetadataStatus, NotFound, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PricingProviders, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkRpcMetricsGroupByEnum, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RemovedValidatorDetails, RequestType, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, RpcMetrics, RpcUsageMetricsGroupByEnum, RpcUsageMetricsValueAggregated, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, SignatureAggregatorService, SortByOption, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, SubnetRpcTimeIntervalGranularity, SubnetRpcUsageMetricsResponseDTO, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TimeIntervalGranularityExtended, TooManyRequests, TransactionDetails, TransactionDirectionType, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsGroupByEnum, UsageMetricsResponseDTO, UsageMetricsValueDTO, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };
|