@avalabs/glacier-sdk 3.1.0-canary.fade9d5.0 → 3.1.0-canary.fcb15b0.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.
Files changed (30) hide show
  1. package/dist/index.d.ts +86 -55
  2. package/dist/index.js +1 -1
  3. package/esm/generated/Glacier.d.ts +0 -2
  4. package/esm/generated/Glacier.js +1 -1
  5. package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +2 -0
  6. package/esm/generated/models/ListAddressChainsResponse.d.ts +8 -0
  7. package/esm/generated/models/PChainTransaction.d.ts +13 -0
  8. package/esm/generated/models/PChainTransactionType.d.ts +5 -0
  9. package/esm/generated/models/PChainTransactionType.js +1 -1
  10. package/esm/generated/models/PrimaryNetworkBlock.d.ts +2 -0
  11. package/esm/generated/models/PrimaryNetworkChainInfo.d.ts +2 -2
  12. package/esm/generated/models/PrimaryNetworkTxType.d.ts +5 -0
  13. package/esm/generated/models/PrimaryNetworkTxType.js +1 -1
  14. package/esm/generated/models/SubnetValidatorManagerDetails.d.ts +6 -0
  15. package/esm/generated/services/DataApiUsageMetricsService.d.ts +3 -3
  16. package/esm/generated/services/EvmChainsService.d.ts +13 -0
  17. package/esm/generated/services/EvmChainsService.js +1 -1
  18. package/esm/generated/services/PrimaryNetworkService.d.ts +33 -0
  19. package/esm/generated/services/PrimaryNetworkService.js +1 -1
  20. package/esm/index.d.ts +2 -6
  21. package/esm/index.js +1 -1
  22. package/package.json +2 -2
  23. package/esm/generated/models/PrimaryNetwork.d.ts +0 -7
  24. package/esm/generated/models/PrimaryNetwork.js +0 -1
  25. package/esm/generated/models/RpcErrorDto.d.ts +0 -7
  26. package/esm/generated/models/RpcErrorResponseDto.d.ts +0 -9
  27. package/esm/generated/models/RpcRequestBodyDto.d.ts +0 -8
  28. package/esm/generated/models/RpcSuccessResponseDto.d.ts +0 -7
  29. package/esm/generated/services/RpcService.d.ts +0 -25
  30. package/esm/generated/services/RpcService.js +0 -1
package/dist/index.d.ts CHANGED
@@ -333,7 +333,7 @@ declare class DataApiUsageMetricsService {
333
333
  */
334
334
  startTimestamp?: number;
335
335
  /**
336
- * 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. `endTimestamp` must be no earlier than 0:00 UTC of the day after `startTimestamp`.
336
+ * 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.
337
337
  */
338
338
  endTimestamp?: number;
339
339
  /**
@@ -381,7 +381,7 @@ declare class DataApiUsageMetricsService {
381
381
  */
382
382
  startTimestamp?: number;
383
383
  /**
384
- * 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. `endTimestamp` must be no earlier than 0:00 UTC of the day after `startTimestamp`.
384
+ * 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.
385
385
  */
386
386
  endTimestamp?: number;
387
387
  /**
@@ -429,7 +429,7 @@ declare class DataApiUsageMetricsService {
429
429
  */
430
430
  startTimestamp?: number;
431
431
  /**
432
- * 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. `endTimestamp` must be no earlier than 0:00 UTC of the day after `startTimestamp`.
432
+ * 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.
433
433
  */
434
434
  endTimestamp?: number;
435
435
  /**
@@ -1120,6 +1120,11 @@ type ChainInfo = {
1120
1120
  enabledFeatures?: Array<'nftIndexing' | 'webhooks' | 'teleporter'>;
1121
1121
  };
1122
1122
 
1123
+ type ListAddressChainsResponse = {
1124
+ indexedChains?: Array<ChainInfo>;
1125
+ unindexedChains?: Array<string>;
1126
+ };
1127
+
1123
1128
  type ListChainsResponse = {
1124
1129
  chains: Array<ChainInfo>;
1125
1130
  };
@@ -1162,6 +1167,18 @@ declare class EvmChainsService {
1162
1167
  */
1163
1168
  chainId: string;
1164
1169
  }): CancelablePromise<GetChainResponse>;
1170
+ /**
1171
+ * Get chains for address
1172
+ * Gets the list of chains an address has interacted with.
1173
+ * @returns ListAddressChainsResponse Successful response
1174
+ * @throws ApiError
1175
+ */
1176
+ getAddressChains({ address, }: {
1177
+ /**
1178
+ * A wallet address.
1179
+ */
1180
+ address: string;
1181
+ }): CancelablePromise<ListAddressChainsResponse>;
1165
1182
  }
1166
1183
 
1167
1184
  type ImageAsset = {
@@ -3198,6 +3215,39 @@ declare class PrimaryNetworkService {
3198
3215
  */
3199
3216
  nodeIds?: string;
3200
3217
  }): CancelablePromise<ListDelegatorDetailsResponse>;
3218
+ /**
3219
+ * List subnet-only validators
3220
+ * Lists details for subnet only validators. By default, returns details for all active subnet only validators. Filterable by validator node ids, subnet id, and validation id.
3221
+ * @returns ListValidatorDetailsResponse Successful response
3222
+ * @throws ApiError
3223
+ */
3224
+ listSubnetOnlyValidators({ network, pageToken, pageSize, sovValidationId, includeInactiveSovs, nodeId, subnetId, }: {
3225
+ /**
3226
+ * Either mainnet or testnet/fuji.
3227
+ */
3228
+ network: Network;
3229
+ /**
3230
+ * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3231
+ */
3232
+ pageToken?: string;
3233
+ /**
3234
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3235
+ */
3236
+ pageSize?: number;
3237
+ /**
3238
+ * The Subnet-only-Validator validation ID to filter by. If not provided, then all Subnet-only-Validators will be returned.
3239
+ */
3240
+ sovValidationId?: any;
3241
+ includeInactiveSovs?: boolean;
3242
+ /**
3243
+ * A valid node ID in format 'NodeID-HASH'.
3244
+ */
3245
+ nodeId?: string;
3246
+ /**
3247
+ * The subnet ID to filter by. If not provided, then all subnets will be returned.
3248
+ */
3249
+ subnetId?: any;
3250
+ }): CancelablePromise<ListValidatorDetailsResponse>;
3201
3251
  }
3202
3252
 
3203
3253
  declare enum BlockchainId {
@@ -3244,12 +3294,6 @@ type CChainAtomicBalances = {
3244
3294
  atomicMemoryLocked: Array<CChainSharedAssetBalance>;
3245
3295
  };
3246
3296
 
3247
- declare enum PrimaryNetwork {
3248
- MAINNET = "mainnet",
3249
- FUJI = "fuji",
3250
- DEVNET = "devnet"
3251
- }
3252
-
3253
3297
  declare enum PrimaryNetworkChainName {
3254
3298
  P_CHAIN = "p-chain",
3255
3299
  X_CHAIN = "x-chain",
@@ -3258,7 +3302,7 @@ declare enum PrimaryNetworkChainName {
3258
3302
 
3259
3303
  type PrimaryNetworkChainInfo = {
3260
3304
  chainName: PrimaryNetworkChainName;
3261
- network: PrimaryNetwork;
3305
+ network: Network;
3262
3306
  };
3263
3307
 
3264
3308
  type ListCChainAtomicBalancesResponse = {
@@ -3450,6 +3494,8 @@ type GetPrimaryNetworkBlockResponse = {
3450
3494
  txCount: number;
3451
3495
  transactions: Array<string>;
3452
3496
  blockSizeBytes: number;
3497
+ subnetOnlyValidatorsAccruedFees?: number;
3498
+ activeSubnetOnlyValidators?: number;
3453
3499
  currentSupply?: string;
3454
3500
  proposerDetails?: ProposerDetails;
3455
3501
  };
@@ -3463,6 +3509,8 @@ type PrimaryNetworkBlock = {
3463
3509
  txCount: number;
3464
3510
  transactions: Array<string>;
3465
3511
  blockSizeBytes: number;
3512
+ subnetOnlyValidatorsAccruedFees?: number;
3513
+ activeSubnetOnlyValidators?: number;
3466
3514
  currentSupply?: string;
3467
3515
  proposerDetails?: ProposerDetails;
3468
3516
  };
@@ -3967,6 +4015,11 @@ declare enum PChainTransactionType {
3967
4015
  ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
3968
4016
  BASE_TX = "BaseTx",
3969
4017
  TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
4018
+ CONVERT_SUBNET_TX = "ConvertSubnetTx",
4019
+ REGISTER_SUBNET_VALIDATOR_TX = "RegisterSubnetValidatorTx",
4020
+ SET_SUBNET_VALIDATOR_WEIGHT_TX = "SetSubnetValidatorWeightTx",
4021
+ DISABLE_SUBNET_VALIDATOR_TX = "DisableSubnetValidatorTx",
4022
+ INCREASE_BALANCE_TX = "IncreaseBalanceTx",
3970
4023
  UNKNOWN = "UNKNOWN"
3971
4024
  }
3972
4025
 
@@ -4021,6 +4074,11 @@ type PChainUtxo = {
4021
4074
  utxoType: UtxoType;
4022
4075
  };
4023
4076
 
4077
+ type SubnetValidatorManagerDetails = {
4078
+ blockchainId: string;
4079
+ evmContractAddress: string;
4080
+ };
4081
+
4024
4082
  type PChainTransaction = {
4025
4083
  /**
4026
4084
  * A P-Chain transaction hash.
@@ -4055,6 +4113,10 @@ type PChainTransaction = {
4055
4113
  * A list of objects containing P-chain Asset basic info and the amount of that Asset ID. Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
4056
4114
  */
4057
4115
  amountStaked: Array<AssetAmount>;
4116
+ /**
4117
+ * A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
4118
+ */
4119
+ amountSovBalanceBurned: Array<AssetAmount>;
4058
4120
  /**
4059
4121
  * Present for AddValidatorTx, AddSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
4060
4122
  */
@@ -4075,6 +4137,14 @@ type PChainTransaction = {
4075
4137
  * Present for AddValidatorTx, AddSubnetValidatorTx, RemoveSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx, CreateChainTx, CreateSubnetTx
4076
4138
  */
4077
4139
  subnetId?: string;
4140
+ /**
4141
+ * Present for ConvertSubnetTx
4142
+ */
4143
+ subnetValidatorManagerDetails?: SubnetValidatorManagerDetails;
4144
+ /**
4145
+ * Present for ConvertSubnetTx, RegisterSubnetValidatorTx
4146
+ */
4147
+ subnetOnlyValidatorDetails?: Array<string>;
4078
4148
  /**
4079
4149
  * Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
4080
4150
  */
@@ -4276,6 +4346,11 @@ declare enum PrimaryNetworkTxType {
4276
4346
  ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
4277
4347
  BASE_TX = "BaseTx",
4278
4348
  TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
4349
+ CONVERT_SUBNET_TX = "ConvertSubnetTx",
4350
+ REGISTER_SUBNET_VALIDATOR_TX = "RegisterSubnetValidatorTx",
4351
+ SET_SUBNET_VALIDATOR_WEIGHT_TX = "SetSubnetValidatorWeightTx",
4352
+ DISABLE_SUBNET_VALIDATOR_TX = "DisableSubnetValidatorTx",
4353
+ INCREASE_BALANCE_TX = "IncreaseBalanceTx",
4279
4354
  UNKNOWN = "UNKNOWN",
4280
4355
  CREATE_ASSET_TX = "CreateAssetTx",
4281
4356
  OPERATION_TX = "OperationTx"
@@ -4602,49 +4677,6 @@ declare class PrimaryNetworkVerticesService {
4602
4677
  }): CancelablePromise<ListXChainVerticesResponse>;
4603
4678
  }
4604
4679
 
4605
- type RpcErrorDto = {
4606
- code: number;
4607
- message: string;
4608
- data?: Record<string, any>;
4609
- };
4610
-
4611
- type RpcErrorResponseDto = {
4612
- jsonrpc: string;
4613
- id?: (string | number);
4614
- error: RpcErrorDto;
4615
- };
4616
-
4617
- type RpcRequestBodyDto = {
4618
- method: string;
4619
- params?: Record<string, any>;
4620
- id?: (string | number);
4621
- jsonrpc?: string;
4622
- };
4623
-
4624
- type RpcSuccessResponseDto = {
4625
- jsonrpc: string;
4626
- id?: (string | number);
4627
- result: Record<string, any>;
4628
- };
4629
-
4630
- declare class RpcService {
4631
- readonly httpRequest: BaseHttpRequest;
4632
- constructor(httpRequest: BaseHttpRequest);
4633
- /**
4634
- * Calls JSON-RPC method
4635
- * Calls JSON-RPC method.
4636
- * @returns any Successful response
4637
- * @throws ApiError
4638
- */
4639
- rpc({ chainId, requestBody, }: {
4640
- /**
4641
- * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
4642
- */
4643
- chainId: string;
4644
- requestBody: (RpcRequestBodyDto | Array<RpcRequestBodyDto>);
4645
- }): CancelablePromise<(RpcSuccessResponseDto | RpcErrorResponseDto)>;
4646
- }
4647
-
4648
4680
  type SignatureAggregationResponse = {
4649
4681
  signedMessage: string;
4650
4682
  };
@@ -5140,7 +5172,6 @@ declare class Glacier {
5140
5172
  readonly primaryNetworkTransactions: PrimaryNetworkTransactionsService;
5141
5173
  readonly primaryNetworkUtxOs: PrimaryNetworkUtxOsService;
5142
5174
  readonly primaryNetworkVertices: PrimaryNetworkVerticesService;
5143
- readonly rpc: RpcService;
5144
5175
  readonly signatureAggregator: SignatureAggregatorService;
5145
5176
  readonly teleporter: TeleporterService;
5146
5177
  readonly webhooks: WebhooksService;
@@ -5296,4 +5327,4 @@ type Unauthorized = {
5296
5327
  error: string;
5297
5328
  };
5298
5329
 
5299
- export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, 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, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, 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, PrimaryNetwork, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RemovedValidatorDetails, RequestType, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, RpcErrorDto, RpcErrorResponseDto, RpcMetrics, RpcRequestBodyDto, RpcService, RpcSuccessResponseDto, RpcUsageMetricsResponseDTO, RpcUsageMetricsValueAggregated, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, SignatureAggregatorService, SortByOption, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, 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 };
5330
+ export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, 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, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, 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, RpcUsageMetricsResponseDTO, RpcUsageMetricsValueAggregated, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, SignatureAggregatorService, SortByOption, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, SubnetValidatorManagerDetails, 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 };