@avalabs/glacier-sdk 3.1.0-canary.b86a6f6.0 → 3.1.0-canary.baf73a2.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 +66 -69
- package/dist/index.js +1 -1
- package/esm/generated/models/CreateWebhookRequest.d.ts +1 -1
- package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +2 -2
- package/esm/generated/models/L1ValidatorDetailsFull.d.ts +33 -0
- package/esm/generated/models/L1ValidatorDetailsTransaction.d.ts +23 -0
- package/esm/generated/models/{ListSubnetOnlyValidatorsResponse.d.ts → ListL1ValidatorsResponse.d.ts} +4 -4
- package/esm/generated/models/PChainTransaction.d.ts +5 -5
- package/esm/generated/models/PChainTransactionType.d.ts +5 -5
- package/esm/generated/models/PChainTransactionType.js +1 -1
- package/esm/generated/models/PrimaryNetworkBlock.d.ts +2 -2
- package/esm/generated/models/PrimaryNetworkTxType.d.ts +5 -5
- package/esm/generated/models/PrimaryNetworkTxType.js +1 -1
- package/esm/generated/models/SignatureAggregatorRequest.d.ts +1 -7
- package/esm/generated/models/UpdateWebhookRequest.d.ts +3 -0
- package/esm/generated/services/PrimaryNetworkService.d.ts +9 -9
- package/esm/generated/services/PrimaryNetworkService.js +1 -1
- package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +3 -3
- package/esm/generated/services/PrimaryNetworkTransactionsService.js +1 -1
- package/esm/index.d.ts +3 -3
- package/package.json +2 -2
- package/esm/generated/models/SoVDetailsTransaction.d.ts +0 -23
- package/esm/generated/models/SovDetailsFull.d.ts +0 -33
package/dist/index.d.ts
CHANGED
|
@@ -2712,37 +2712,37 @@ type BalanceOwner = {
|
|
|
2712
2712
|
threshold: number;
|
|
2713
2713
|
};
|
|
2714
2714
|
|
|
2715
|
-
type
|
|
2715
|
+
type L1ValidatorDetailsFull = {
|
|
2716
2716
|
/**
|
|
2717
|
-
* Unique
|
|
2717
|
+
* Unique L1 validation ID used network-wide to identify L1 validation until its weight is reduced to 0 i.e. removed.
|
|
2718
2718
|
*/
|
|
2719
2719
|
validationId: string;
|
|
2720
2720
|
nodeId: string;
|
|
2721
2721
|
subnetId: string;
|
|
2722
2722
|
/**
|
|
2723
|
-
* Weight of the
|
|
2723
|
+
* Weight of the L1 validator used while sampling validators within the L1. A zero-weight L1 validator means it has been removed from the L1, and the validationID is no longer valid
|
|
2724
2724
|
*/
|
|
2725
2725
|
weight: number;
|
|
2726
2726
|
/**
|
|
2727
|
-
* Remaining
|
|
2727
|
+
* Remaining L1 validator balance in nAVAX until inactive. It can rejoin L1 sampling by increasing balance with IncreaseL1ValidatorBalanceTx
|
|
2728
2728
|
*/
|
|
2729
2729
|
remainingBalance: number;
|
|
2730
2730
|
/**
|
|
2731
|
-
* The timestamp of the transaction which created this
|
|
2731
|
+
* The timestamp of the transaction which created this L1 validator
|
|
2732
2732
|
*/
|
|
2733
2733
|
creationTimestamp: number;
|
|
2734
2734
|
blsCredentials: Record<string, any>;
|
|
2735
2735
|
/**
|
|
2736
|
-
* The
|
|
2736
|
+
* The L1 validator owner's balance, returned after it's disabled or removed
|
|
2737
2737
|
*/
|
|
2738
2738
|
remainingBalanceOwner: BalanceOwner;
|
|
2739
2739
|
/**
|
|
2740
|
-
* Owner ddresses details which can disable or remove the
|
|
2740
|
+
* Owner ddresses details which can disable or remove the L1 validator
|
|
2741
2741
|
*/
|
|
2742
2742
|
deactivationOwner: BalanceOwner;
|
|
2743
2743
|
};
|
|
2744
2744
|
|
|
2745
|
-
type
|
|
2745
|
+
type ListL1ValidatorsResponse = {
|
|
2746
2746
|
/**
|
|
2747
2747
|
* 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.
|
|
2748
2748
|
*/
|
|
@@ -2750,7 +2750,7 @@ type ListSubnetOnlyValidatorsResponse = {
|
|
|
2750
2750
|
/**
|
|
2751
2751
|
* The list of L1 validations for the given Subnet ID, NodeId or validationId
|
|
2752
2752
|
*/
|
|
2753
|
-
validators: Array<
|
|
2753
|
+
validators: Array<L1ValidatorDetailsFull>;
|
|
2754
2754
|
};
|
|
2755
2755
|
|
|
2756
2756
|
type BlockchainInfo = {
|
|
@@ -3275,12 +3275,12 @@ declare class PrimaryNetworkService {
|
|
|
3275
3275
|
nodeIds?: string;
|
|
3276
3276
|
}): CancelablePromise<ListDelegatorDetailsResponse>;
|
|
3277
3277
|
/**
|
|
3278
|
-
* List
|
|
3279
|
-
* Lists details for
|
|
3280
|
-
* @returns
|
|
3278
|
+
* List L1 validators
|
|
3279
|
+
* Lists details for L1 validators. By default, returns details for all active L1 validators. Filterable by validator node ids, subnet id, and validation id.
|
|
3280
|
+
* @returns ListL1ValidatorsResponse Successful response
|
|
3281
3281
|
* @throws ApiError
|
|
3282
3282
|
*/
|
|
3283
|
-
|
|
3283
|
+
listL1Validators({ network, pageToken, pageSize, l1ValidationId, includeInactiveL1Validators, nodeId, subnetId, }: {
|
|
3284
3284
|
/**
|
|
3285
3285
|
* Either mainnet or testnet/fuji.
|
|
3286
3286
|
*/
|
|
@@ -3294,10 +3294,10 @@ declare class PrimaryNetworkService {
|
|
|
3294
3294
|
*/
|
|
3295
3295
|
pageSize?: number;
|
|
3296
3296
|
/**
|
|
3297
|
-
* The
|
|
3297
|
+
* The L1 Validator's validation ID to filter by. If not provided, then all L1 Validators will be returned.
|
|
3298
3298
|
*/
|
|
3299
|
-
|
|
3300
|
-
|
|
3299
|
+
l1ValidationId?: any;
|
|
3300
|
+
includeInactiveL1Validators?: boolean;
|
|
3301
3301
|
/**
|
|
3302
3302
|
* A valid node ID in format 'NodeID-HASH'.
|
|
3303
3303
|
*/
|
|
@@ -3306,7 +3306,7 @@ declare class PrimaryNetworkService {
|
|
|
3306
3306
|
* The subnet ID to filter by. If not provided, then all subnets will be returned.
|
|
3307
3307
|
*/
|
|
3308
3308
|
subnetId?: any;
|
|
3309
|
-
}): CancelablePromise<
|
|
3309
|
+
}): CancelablePromise<ListL1ValidatorsResponse>;
|
|
3310
3310
|
}
|
|
3311
3311
|
|
|
3312
3312
|
declare enum BlockchainId {
|
|
@@ -3553,8 +3553,8 @@ type GetPrimaryNetworkBlockResponse = {
|
|
|
3553
3553
|
txCount: number;
|
|
3554
3554
|
transactions: Array<string>;
|
|
3555
3555
|
blockSizeBytes: number;
|
|
3556
|
-
|
|
3557
|
-
|
|
3556
|
+
l1ValidatorsAccruedFees?: number;
|
|
3557
|
+
activeL1Validators?: number;
|
|
3558
3558
|
currentSupply?: string;
|
|
3559
3559
|
proposerDetails?: ProposerDetails;
|
|
3560
3560
|
};
|
|
@@ -3568,8 +3568,8 @@ type PrimaryNetworkBlock = {
|
|
|
3568
3568
|
txCount: number;
|
|
3569
3569
|
transactions: Array<string>;
|
|
3570
3570
|
blockSizeBytes: number;
|
|
3571
|
-
|
|
3572
|
-
|
|
3571
|
+
l1ValidatorsAccruedFees?: number;
|
|
3572
|
+
activeL1Validators?: number;
|
|
3573
3573
|
currentSupply?: string;
|
|
3574
3574
|
proposerDetails?: ProposerDetails;
|
|
3575
3575
|
};
|
|
@@ -4058,6 +4058,28 @@ type ListCChainAtomicTransactionsResponse = {
|
|
|
4058
4058
|
chainInfo: PrimaryNetworkChainInfo;
|
|
4059
4059
|
};
|
|
4060
4060
|
|
|
4061
|
+
type L1ValidatorDetailsTransaction = {
|
|
4062
|
+
/**
|
|
4063
|
+
* Unique L1 validation ID used network-wide to identify L1 validation until its weight is reduced to 0 i.e. removed.
|
|
4064
|
+
*/
|
|
4065
|
+
validationId: string;
|
|
4066
|
+
nodeId: string;
|
|
4067
|
+
subnetId: string;
|
|
4068
|
+
/**
|
|
4069
|
+
* Weight of the L1 validator used while sampling validators within the L1. A zero-weight L1 validator means it has been removed from the L1, and the validationID is no longer valid
|
|
4070
|
+
*/
|
|
4071
|
+
weight: number;
|
|
4072
|
+
/**
|
|
4073
|
+
* Remaining L1 validator balance in nAVAX until inactive. It can rejoin L1 sampling by increasing balance with IncreaseL1ValidatorBalanceTx
|
|
4074
|
+
*/
|
|
4075
|
+
remainingBalance: number;
|
|
4076
|
+
/**
|
|
4077
|
+
* The increase in L1 validator balance in the current transaction. When the balance is returned after the L1 validator is disabled or removed, this value is negative
|
|
4078
|
+
*/
|
|
4079
|
+
balanceChange?: number;
|
|
4080
|
+
blsCredentials?: Record<string, any>;
|
|
4081
|
+
};
|
|
4082
|
+
|
|
4061
4083
|
declare enum PChainTransactionType {
|
|
4062
4084
|
ADD_VALIDATOR_TX = "AddValidatorTx",
|
|
4063
4085
|
ADD_SUBNET_VALIDATOR_TX = "AddSubnetValidatorTx",
|
|
@@ -4074,11 +4096,11 @@ declare enum PChainTransactionType {
|
|
|
4074
4096
|
ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
|
|
4075
4097
|
BASE_TX = "BaseTx",
|
|
4076
4098
|
TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4099
|
+
CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
|
|
4100
|
+
REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
|
|
4101
|
+
SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
|
|
4102
|
+
DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
|
|
4103
|
+
INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
|
|
4082
4104
|
UNKNOWN = "UNKNOWN"
|
|
4083
4105
|
}
|
|
4084
4106
|
|
|
@@ -4133,28 +4155,6 @@ type PChainUtxo = {
|
|
|
4133
4155
|
utxoType: UtxoType;
|
|
4134
4156
|
};
|
|
4135
4157
|
|
|
4136
|
-
type SoVDetailsTransaction = {
|
|
4137
|
-
/**
|
|
4138
|
-
* Unique SoV ID used network-wide to identify subnet-only validation until its weight is reduced to 0 i.e. removed.
|
|
4139
|
-
*/
|
|
4140
|
-
validationId: string;
|
|
4141
|
-
nodeId: string;
|
|
4142
|
-
subnetId: string;
|
|
4143
|
-
/**
|
|
4144
|
-
* Weight of the SoV used while sampling validators within the L1. A zero-weight SoV means it has been removed from the L1, and the validationID is no longer valid
|
|
4145
|
-
*/
|
|
4146
|
-
weight: number;
|
|
4147
|
-
/**
|
|
4148
|
-
* Remaining SoV balance in nAVAX until inactive. It can rejoin subnet sampling by increasing balance with IncreaseBalanceTx
|
|
4149
|
-
*/
|
|
4150
|
-
remainingBalance: number;
|
|
4151
|
-
/**
|
|
4152
|
-
* The increase in SoV balance in the current transaction. When the balance is returned after the SoV is disabled or removed, this value is negative
|
|
4153
|
-
*/
|
|
4154
|
-
balanceChange?: number;
|
|
4155
|
-
blsCredentials?: Record<string, any>;
|
|
4156
|
-
};
|
|
4157
|
-
|
|
4158
4158
|
type PChainTransaction = {
|
|
4159
4159
|
/**
|
|
4160
4160
|
* A P-Chain transaction hash.
|
|
@@ -4192,7 +4192,7 @@ type PChainTransaction = {
|
|
|
4192
4192
|
/**
|
|
4193
4193
|
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
|
|
4194
4194
|
*/
|
|
4195
|
-
|
|
4195
|
+
amountL1ValidatorBalanceBurned: Array<AssetAmount>;
|
|
4196
4196
|
/**
|
|
4197
4197
|
* Present for AddValidatorTx, AddSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4198
4198
|
*/
|
|
@@ -4214,13 +4214,13 @@ type PChainTransaction = {
|
|
|
4214
4214
|
*/
|
|
4215
4215
|
subnetId?: string;
|
|
4216
4216
|
/**
|
|
4217
|
-
* Details of the L1's validator manager contract and blockchain. Present for the
|
|
4217
|
+
* Details of the L1's validator manager contract and blockchain. Present for the ConvertSubnetToL1Tx which transforms a subnet into L1
|
|
4218
4218
|
*/
|
|
4219
4219
|
l1ValidatorManagerDetails?: L1ValidatorManagerDetails;
|
|
4220
4220
|
/**
|
|
4221
|
-
* Details of
|
|
4221
|
+
* Details of L1 validators registered or changed in the current transaction. The details reflect the state at the time of the transaction, not in real-time
|
|
4222
4222
|
*/
|
|
4223
|
-
l1ValidatorDetails?: Array<
|
|
4223
|
+
l1ValidatorDetails?: Array<L1ValidatorDetailsTransaction>;
|
|
4224
4224
|
/**
|
|
4225
4225
|
* Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4226
4226
|
*/
|
|
@@ -4422,11 +4422,11 @@ declare enum PrimaryNetworkTxType {
|
|
|
4422
4422
|
ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
|
|
4423
4423
|
BASE_TX = "BaseTx",
|
|
4424
4424
|
TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4425
|
+
CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
|
|
4426
|
+
REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
|
|
4427
|
+
SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
|
|
4428
|
+
DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
|
|
4429
|
+
INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
|
|
4430
4430
|
UNKNOWN = "UNKNOWN",
|
|
4431
4431
|
CREATE_ASSET_TX = "CreateAssetTx",
|
|
4432
4432
|
OPERATION_TX = "OperationTx"
|
|
@@ -4461,13 +4461,13 @@ declare class PrimaryNetworkTransactionsService {
|
|
|
4461
4461
|
*
|
|
4462
4462
|
* Transactions are filterable by addresses, txTypes, and timestamps. When querying for latest transactions without an address parameter, filtering by txTypes and timestamps is not supported. An address filter must be provided to utilize txTypes and timestamp filters.
|
|
4463
4463
|
*
|
|
4464
|
-
* For P-Chain, you can fetch all
|
|
4464
|
+
* For P-Chain, you can fetch all L1 validators related transactions like ConvertSubnetToL1Tx, IncreaseL1ValidatorBalanceTx etc. using the unique L1 validation ID. These transactions are further filterable by txTypes and timestamps as well.
|
|
4465
4465
|
*
|
|
4466
4466
|
* Given that each transaction may return a large number of UTXO objects, bounded only by the maximum transaction size, the query may return less transactions than the provided page size. The result will contain less results than the page size if the number of utxos contained in the resulting transactions reach a performance threshold.
|
|
4467
4467
|
* @returns any Successful response
|
|
4468
4468
|
* @throws ApiError
|
|
4469
4469
|
*/
|
|
4470
|
-
listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses,
|
|
4470
|
+
listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, l1ValidationId, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
|
|
4471
4471
|
/**
|
|
4472
4472
|
* A primary network blockchain id or alias.
|
|
4473
4473
|
*/
|
|
@@ -4480,7 +4480,7 @@ declare class PrimaryNetworkTransactionsService {
|
|
|
4480
4480
|
* A comma separated list of X-Chain or P-Chain wallet addresses, starting with "avax"/"fuji", "P-avax"/"P-fuji" or "X-avax"/"X-fuji". Also accepts EVM formatted addresses starting with "0x" for C-Chain-related atomic transaction lookups.
|
|
4481
4481
|
*/
|
|
4482
4482
|
addresses?: string;
|
|
4483
|
-
|
|
4483
|
+
l1ValidationId?: string;
|
|
4484
4484
|
/**
|
|
4485
4485
|
* Query param for filtering items based on transaction types.
|
|
4486
4486
|
*/
|
|
@@ -4761,13 +4761,7 @@ type SignatureAggregationResponse = {
|
|
|
4761
4761
|
};
|
|
4762
4762
|
|
|
4763
4763
|
type SignatureAggregatorRequest = {
|
|
4764
|
-
|
|
4765
|
-
* Must be defined if justification is not defined
|
|
4766
|
-
*/
|
|
4767
|
-
message?: string;
|
|
4768
|
-
/**
|
|
4769
|
-
* Must be defined if message is not defined
|
|
4770
|
-
*/
|
|
4764
|
+
message: string;
|
|
4771
4765
|
justification?: string;
|
|
4772
4766
|
signingSubnetId?: string;
|
|
4773
4767
|
quorumPercentage?: number;
|
|
@@ -5032,7 +5026,7 @@ type CreateWebhookRequest = {
|
|
|
5032
5026
|
name?: string;
|
|
5033
5027
|
description?: string;
|
|
5034
5028
|
/**
|
|
5035
|
-
* Whether to include traces in the webhook payload.
|
|
5029
|
+
* Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
|
|
5036
5030
|
*/
|
|
5037
5031
|
includeInternalTxs?: boolean;
|
|
5038
5032
|
/**
|
|
@@ -5092,6 +5086,9 @@ type UpdateWebhookRequest = {
|
|
|
5092
5086
|
description?: string;
|
|
5093
5087
|
url?: string;
|
|
5094
5088
|
status?: WebhookStatusType;
|
|
5089
|
+
/**
|
|
5090
|
+
* Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
|
|
5091
|
+
*/
|
|
5095
5092
|
includeInternalTxs?: boolean;
|
|
5096
5093
|
includeLogs?: boolean;
|
|
5097
5094
|
};
|
|
@@ -5406,4 +5403,4 @@ type Unauthorized = {
|
|
|
5406
5403
|
error: string;
|
|
5407
5404
|
};
|
|
5408
5405
|
|
|
5409
|
-
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, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse,
|
|
5406
|
+
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, 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 };
|