@avalabs/glacier-sdk 3.1.0-canary.fb39b20.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.
- package/dist/index.d.ts +76 -57
- package/dist/index.js +1 -1
- package/esm/generated/Glacier.d.ts +0 -2
- package/esm/generated/Glacier.js +1 -1
- package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +2 -0
- package/esm/generated/models/ListAddressChainsResponse.d.ts +8 -0
- package/esm/generated/models/PChainTransaction.d.ts +13 -0
- package/esm/generated/models/PChainTransactionType.d.ts +5 -0
- package/esm/generated/models/PChainTransactionType.js +1 -1
- package/esm/generated/models/PrimaryNetworkBlock.d.ts +2 -0
- package/esm/generated/models/PrimaryNetworkChainInfo.d.ts +2 -2
- package/esm/generated/models/PrimaryNetworkTxType.d.ts +5 -0
- package/esm/generated/models/PrimaryNetworkTxType.js +1 -1
- package/esm/generated/models/SubnetValidatorManagerDetails.d.ts +6 -0
- package/esm/generated/services/DataApiUsageMetricsService.d.ts +3 -3
- package/esm/generated/services/EvmChainsService.d.ts +3 -2
- package/esm/generated/services/PrimaryNetworkService.d.ts +33 -0
- package/esm/generated/services/PrimaryNetworkService.js +1 -1
- package/esm/index.d.ts +2 -6
- package/esm/index.js +1 -1
- package/package.json +2 -2
- package/esm/generated/models/PrimaryNetwork.d.ts +0 -7
- package/esm/generated/models/PrimaryNetwork.js +0 -1
- package/esm/generated/models/RpcErrorDto.d.ts +0 -7
- package/esm/generated/models/RpcErrorResponseDto.d.ts +0 -9
- package/esm/generated/models/RpcRequestBodyDto.d.ts +0 -8
- package/esm/generated/models/RpcSuccessResponseDto.d.ts +0 -7
- package/esm/generated/services/RpcService.d.ts +0 -25
- 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.
|
|
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.
|
|
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.
|
|
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
|
};
|
|
@@ -1165,7 +1170,7 @@ declare class EvmChainsService {
|
|
|
1165
1170
|
/**
|
|
1166
1171
|
* Get chains for address
|
|
1167
1172
|
* Gets the list of chains an address has interacted with.
|
|
1168
|
-
* @returns
|
|
1173
|
+
* @returns ListAddressChainsResponse Successful response
|
|
1169
1174
|
* @throws ApiError
|
|
1170
1175
|
*/
|
|
1171
1176
|
getAddressChains({ address, }: {
|
|
@@ -1173,7 +1178,7 @@ declare class EvmChainsService {
|
|
|
1173
1178
|
* A wallet address.
|
|
1174
1179
|
*/
|
|
1175
1180
|
address: string;
|
|
1176
|
-
}): CancelablePromise<
|
|
1181
|
+
}): CancelablePromise<ListAddressChainsResponse>;
|
|
1177
1182
|
}
|
|
1178
1183
|
|
|
1179
1184
|
type ImageAsset = {
|
|
@@ -3210,6 +3215,39 @@ declare class PrimaryNetworkService {
|
|
|
3210
3215
|
*/
|
|
3211
3216
|
nodeIds?: string;
|
|
3212
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>;
|
|
3213
3251
|
}
|
|
3214
3252
|
|
|
3215
3253
|
declare enum BlockchainId {
|
|
@@ -3256,12 +3294,6 @@ type CChainAtomicBalances = {
|
|
|
3256
3294
|
atomicMemoryLocked: Array<CChainSharedAssetBalance>;
|
|
3257
3295
|
};
|
|
3258
3296
|
|
|
3259
|
-
declare enum PrimaryNetwork {
|
|
3260
|
-
MAINNET = "mainnet",
|
|
3261
|
-
FUJI = "fuji",
|
|
3262
|
-
DEVNET = "devnet"
|
|
3263
|
-
}
|
|
3264
|
-
|
|
3265
3297
|
declare enum PrimaryNetworkChainName {
|
|
3266
3298
|
P_CHAIN = "p-chain",
|
|
3267
3299
|
X_CHAIN = "x-chain",
|
|
@@ -3270,7 +3302,7 @@ declare enum PrimaryNetworkChainName {
|
|
|
3270
3302
|
|
|
3271
3303
|
type PrimaryNetworkChainInfo = {
|
|
3272
3304
|
chainName: PrimaryNetworkChainName;
|
|
3273
|
-
network:
|
|
3305
|
+
network: Network;
|
|
3274
3306
|
};
|
|
3275
3307
|
|
|
3276
3308
|
type ListCChainAtomicBalancesResponse = {
|
|
@@ -3462,6 +3494,8 @@ type GetPrimaryNetworkBlockResponse = {
|
|
|
3462
3494
|
txCount: number;
|
|
3463
3495
|
transactions: Array<string>;
|
|
3464
3496
|
blockSizeBytes: number;
|
|
3497
|
+
subnetOnlyValidatorsAccruedFees?: number;
|
|
3498
|
+
activeSubnetOnlyValidators?: number;
|
|
3465
3499
|
currentSupply?: string;
|
|
3466
3500
|
proposerDetails?: ProposerDetails;
|
|
3467
3501
|
};
|
|
@@ -3475,6 +3509,8 @@ type PrimaryNetworkBlock = {
|
|
|
3475
3509
|
txCount: number;
|
|
3476
3510
|
transactions: Array<string>;
|
|
3477
3511
|
blockSizeBytes: number;
|
|
3512
|
+
subnetOnlyValidatorsAccruedFees?: number;
|
|
3513
|
+
activeSubnetOnlyValidators?: number;
|
|
3478
3514
|
currentSupply?: string;
|
|
3479
3515
|
proposerDetails?: ProposerDetails;
|
|
3480
3516
|
};
|
|
@@ -3979,6 +4015,11 @@ declare enum PChainTransactionType {
|
|
|
3979
4015
|
ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
|
|
3980
4016
|
BASE_TX = "BaseTx",
|
|
3981
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",
|
|
3982
4023
|
UNKNOWN = "UNKNOWN"
|
|
3983
4024
|
}
|
|
3984
4025
|
|
|
@@ -4033,6 +4074,11 @@ type PChainUtxo = {
|
|
|
4033
4074
|
utxoType: UtxoType;
|
|
4034
4075
|
};
|
|
4035
4076
|
|
|
4077
|
+
type SubnetValidatorManagerDetails = {
|
|
4078
|
+
blockchainId: string;
|
|
4079
|
+
evmContractAddress: string;
|
|
4080
|
+
};
|
|
4081
|
+
|
|
4036
4082
|
type PChainTransaction = {
|
|
4037
4083
|
/**
|
|
4038
4084
|
* A P-Chain transaction hash.
|
|
@@ -4067,6 +4113,10 @@ type PChainTransaction = {
|
|
|
4067
4113
|
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID. Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4068
4114
|
*/
|
|
4069
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>;
|
|
4070
4120
|
/**
|
|
4071
4121
|
* Present for AddValidatorTx, AddSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4072
4122
|
*/
|
|
@@ -4087,6 +4137,14 @@ type PChainTransaction = {
|
|
|
4087
4137
|
* Present for AddValidatorTx, AddSubnetValidatorTx, RemoveSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx, CreateChainTx, CreateSubnetTx
|
|
4088
4138
|
*/
|
|
4089
4139
|
subnetId?: string;
|
|
4140
|
+
/**
|
|
4141
|
+
* Present for ConvertSubnetTx
|
|
4142
|
+
*/
|
|
4143
|
+
subnetValidatorManagerDetails?: SubnetValidatorManagerDetails;
|
|
4144
|
+
/**
|
|
4145
|
+
* Present for ConvertSubnetTx, RegisterSubnetValidatorTx
|
|
4146
|
+
*/
|
|
4147
|
+
subnetOnlyValidatorDetails?: Array<string>;
|
|
4090
4148
|
/**
|
|
4091
4149
|
* Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4092
4150
|
*/
|
|
@@ -4288,6 +4346,11 @@ declare enum PrimaryNetworkTxType {
|
|
|
4288
4346
|
ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
|
|
4289
4347
|
BASE_TX = "BaseTx",
|
|
4290
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",
|
|
4291
4354
|
UNKNOWN = "UNKNOWN",
|
|
4292
4355
|
CREATE_ASSET_TX = "CreateAssetTx",
|
|
4293
4356
|
OPERATION_TX = "OperationTx"
|
|
@@ -4614,49 +4677,6 @@ declare class PrimaryNetworkVerticesService {
|
|
|
4614
4677
|
}): CancelablePromise<ListXChainVerticesResponse>;
|
|
4615
4678
|
}
|
|
4616
4679
|
|
|
4617
|
-
type RpcErrorDto = {
|
|
4618
|
-
code: number;
|
|
4619
|
-
message: string;
|
|
4620
|
-
data?: Record<string, any>;
|
|
4621
|
-
};
|
|
4622
|
-
|
|
4623
|
-
type RpcErrorResponseDto = {
|
|
4624
|
-
jsonrpc: string;
|
|
4625
|
-
id?: (string | number);
|
|
4626
|
-
error: RpcErrorDto;
|
|
4627
|
-
};
|
|
4628
|
-
|
|
4629
|
-
type RpcRequestBodyDto = {
|
|
4630
|
-
method: string;
|
|
4631
|
-
params?: Record<string, any>;
|
|
4632
|
-
id?: (string | number);
|
|
4633
|
-
jsonrpc?: string;
|
|
4634
|
-
};
|
|
4635
|
-
|
|
4636
|
-
type RpcSuccessResponseDto = {
|
|
4637
|
-
jsonrpc: string;
|
|
4638
|
-
id?: (string | number);
|
|
4639
|
-
result: Record<string, any>;
|
|
4640
|
-
};
|
|
4641
|
-
|
|
4642
|
-
declare class RpcService {
|
|
4643
|
-
readonly httpRequest: BaseHttpRequest;
|
|
4644
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
4645
|
-
/**
|
|
4646
|
-
* Calls JSON-RPC method
|
|
4647
|
-
* Calls JSON-RPC method.
|
|
4648
|
-
* @returns any Successful response
|
|
4649
|
-
* @throws ApiError
|
|
4650
|
-
*/
|
|
4651
|
-
rpc({ chainId, requestBody, }: {
|
|
4652
|
-
/**
|
|
4653
|
-
* A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
4654
|
-
*/
|
|
4655
|
-
chainId: string;
|
|
4656
|
-
requestBody: (RpcRequestBodyDto | Array<RpcRequestBodyDto>);
|
|
4657
|
-
}): CancelablePromise<(RpcSuccessResponseDto | RpcErrorResponseDto)>;
|
|
4658
|
-
}
|
|
4659
|
-
|
|
4660
4680
|
type SignatureAggregationResponse = {
|
|
4661
4681
|
signedMessage: string;
|
|
4662
4682
|
};
|
|
@@ -5152,7 +5172,6 @@ declare class Glacier {
|
|
|
5152
5172
|
readonly primaryNetworkTransactions: PrimaryNetworkTransactionsService;
|
|
5153
5173
|
readonly primaryNetworkUtxOs: PrimaryNetworkUtxOsService;
|
|
5154
5174
|
readonly primaryNetworkVertices: PrimaryNetworkVerticesService;
|
|
5155
|
-
readonly rpc: RpcService;
|
|
5156
5175
|
readonly signatureAggregator: SignatureAggregatorService;
|
|
5157
5176
|
readonly teleporter: TeleporterService;
|
|
5158
5177
|
readonly webhooks: WebhooksService;
|
|
@@ -5308,4 +5327,4 @@ type Unauthorized = {
|
|
|
5308
5327
|
error: string;
|
|
5309
5328
|
};
|
|
5310
5329
|
|
|
5311
|
-
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,
|
|
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 };
|