@avalabs/glacier-sdk 3.1.0-alpha.45 → 3.1.0-alpha.47
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 +31 -4
- package/esm/generated/models/ActiveValidatorDetails.d.ts +5 -0
- package/esm/generated/models/Geolocation.d.ts +24 -0
- package/esm/generated/services/InterchainMessagingService.d.ts +2 -2
- package/esm/generated/services/PrimaryNetworkService.d.ts +1 -1
- package/esm/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2851,13 +2851,13 @@ declare class InterchainMessagingService {
|
|
|
2851
2851
|
constructor(httpRequest: BaseHttpRequest);
|
|
2852
2852
|
/**
|
|
2853
2853
|
* Get an ICM message
|
|
2854
|
-
* Gets an ICM message by message ID.
|
|
2854
|
+
* Gets an ICM message by teleporter message ID.
|
|
2855
2855
|
* @returns any Successful response
|
|
2856
2856
|
* @throws ApiError
|
|
2857
2857
|
*/
|
|
2858
2858
|
getIcmMessage({ messageId, }: {
|
|
2859
2859
|
/**
|
|
2860
|
-
* The message ID of the ICM message.
|
|
2860
|
+
* The teleporter message ID of the ICM message.
|
|
2861
2861
|
*/
|
|
2862
2862
|
messageId: string;
|
|
2863
2863
|
}): CancelablePromise<(PendingIcmMessage | DeliveredIcmMessage | DeliveredSourceNotIndexedIcmMessage)>;
|
|
@@ -3506,6 +3506,29 @@ type BlsCredentials = {
|
|
|
3506
3506
|
proofOfPossession: string;
|
|
3507
3507
|
};
|
|
3508
3508
|
|
|
3509
|
+
type Geolocation = {
|
|
3510
|
+
/**
|
|
3511
|
+
* The name of the validator node.
|
|
3512
|
+
*/
|
|
3513
|
+
city: string;
|
|
3514
|
+
/**
|
|
3515
|
+
* The city of the validator node.
|
|
3516
|
+
*/
|
|
3517
|
+
country: string;
|
|
3518
|
+
/**
|
|
3519
|
+
* The country code of the validator node.
|
|
3520
|
+
*/
|
|
3521
|
+
countryCode: string;
|
|
3522
|
+
/**
|
|
3523
|
+
* The latitude of the validator node.
|
|
3524
|
+
*/
|
|
3525
|
+
latitude: number;
|
|
3526
|
+
/**
|
|
3527
|
+
* The longitude of the validator node.
|
|
3528
|
+
*/
|
|
3529
|
+
longitude: number;
|
|
3530
|
+
};
|
|
3531
|
+
|
|
3509
3532
|
type Rewards = {
|
|
3510
3533
|
validationRewardAmount: string;
|
|
3511
3534
|
delegationRewardAmount: string;
|
|
@@ -3574,6 +3597,10 @@ type ActiveValidatorDetails = {
|
|
|
3574
3597
|
potentialRewards: Rewards;
|
|
3575
3598
|
validationStatus: ActiveValidatorDetails.validationStatus;
|
|
3576
3599
|
validatorHealth: ValidatorHealthDetails;
|
|
3600
|
+
/**
|
|
3601
|
+
* The geographical location of the validator node, if available.
|
|
3602
|
+
*/
|
|
3603
|
+
geolocation: Geolocation | null;
|
|
3577
3604
|
};
|
|
3578
3605
|
declare namespace ActiveValidatorDetails {
|
|
3579
3606
|
enum validationStatus {
|
|
@@ -4030,7 +4057,7 @@ declare class PrimaryNetworkService {
|
|
|
4030
4057
|
/**
|
|
4031
4058
|
* The L1 Validator's validation ID to filter by. If not provided, then all L1 Validators will be returned.
|
|
4032
4059
|
*/
|
|
4033
|
-
l1ValidationId?:
|
|
4060
|
+
l1ValidationId?: string;
|
|
4034
4061
|
includeInactiveL1Validators?: boolean;
|
|
4035
4062
|
/**
|
|
4036
4063
|
* A valid node ID in format 'NodeID-HASH'.
|
|
@@ -6653,4 +6680,4 @@ declare namespace WebhookAddressActivityResponse {
|
|
|
6653
6680
|
}
|
|
6654
6681
|
}
|
|
6655
6682
|
|
|
6656
|
-
export { AccessListData, AccessRequest, ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BalanceOwner, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlsCredentials, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CommonBalanceType, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CurrencyCode, DataApiUsageMetricsService, DataListChainsResponse, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredIcmMessage, DeliveredSourceNotIndexedIcmMessage, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, ERCToken, ERCTransfer, EVMAddressActivityRequest, EVMAddressActivityResponse, 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, HealthCheckResultDto, HealthCheckService, HealthIndicatorResultDto, HistoricalReward, IcmDestinationTransaction, IcmReceipt, IcmRewardDetails, IcmSourceTransaction, ImageAsset, InterchainMessagingService, InternalServerError, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, L1ValidatorDetailsFull, L1ValidatorDetailsTransaction, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListIcmMessagesResponse, ListInternalTransactionsResponse, ListL1ValidatorsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTeleporterMessagesResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhookAddressesResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, Log, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkTokenInfo, NextPageToken, NfTsService, NftTokenMetadataStatus, NotFound, NotificationsResponse, NotificationsService, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingIcmMessage, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PlatformActivityKeyType, PlatformActivityMetadata, PlatformActivityRequest, PlatformActivityResponse, PlatformActivitySubEvents, PlatformAddressActivitySubEventType, PlatformBalanceThresholdFilter, PricingProviders, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkRpcMetricsGroupByEnum, PrimaryNetworkRpcTimeIntervalGranularity, PrimaryNetworkRpcUsageMetricsResponseDTO, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkType, 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, SubscribeRequest, SubscriptionsRequest, SubscriptionsResponse, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TimeIntervalGranularityExtended, TooManyRequests, Transaction, TransactionDetails, TransactionDirectionType, TransactionEvent, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UnsubscribeRequest, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsGroupByEnum, UsageMetricsResponseDTO, UsageMetricsValueDTO, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookAddressActivityResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };
|
|
6683
|
+
export { AccessListData, AccessRequest, ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BalanceOwner, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlsCredentials, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CommonBalanceType, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CurrencyCode, DataApiUsageMetricsService, DataListChainsResponse, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredIcmMessage, DeliveredSourceNotIndexedIcmMessage, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, ERCToken, ERCTransfer, EVMAddressActivityRequest, EVMAddressActivityResponse, 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, Geolocation, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckResultDto, HealthCheckService, HealthIndicatorResultDto, HistoricalReward, IcmDestinationTransaction, IcmReceipt, IcmRewardDetails, IcmSourceTransaction, ImageAsset, InterchainMessagingService, InternalServerError, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, L1ValidatorDetailsFull, L1ValidatorDetailsTransaction, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListIcmMessagesResponse, ListInternalTransactionsResponse, ListL1ValidatorsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTeleporterMessagesResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhookAddressesResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, Log, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkTokenInfo, NextPageToken, NfTsService, NftTokenMetadataStatus, NotFound, NotificationsResponse, NotificationsService, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingIcmMessage, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PlatformActivityKeyType, PlatformActivityMetadata, PlatformActivityRequest, PlatformActivityResponse, PlatformActivitySubEvents, PlatformAddressActivitySubEventType, PlatformBalanceThresholdFilter, PricingProviders, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkRpcMetricsGroupByEnum, PrimaryNetworkRpcTimeIntervalGranularity, PrimaryNetworkRpcUsageMetricsResponseDTO, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkType, 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, SubscribeRequest, SubscriptionsRequest, SubscriptionsResponse, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TimeIntervalGranularityExtended, TooManyRequests, Transaction, TransactionDetails, TransactionDirectionType, TransactionEvent, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UnsubscribeRequest, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsGroupByEnum, UsageMetricsResponseDTO, UsageMetricsValueDTO, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookAddressActivityResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { BlsCredentials } from './BlsCredentials.js';
|
|
2
|
+
import { Geolocation } from './Geolocation.js';
|
|
2
3
|
import { Rewards } from './Rewards.js';
|
|
3
4
|
import { ValidatorHealthDetails } from './ValidatorHealthDetails.js';
|
|
4
5
|
|
|
@@ -44,6 +45,10 @@ type ActiveValidatorDetails = {
|
|
|
44
45
|
potentialRewards: Rewards;
|
|
45
46
|
validationStatus: ActiveValidatorDetails.validationStatus;
|
|
46
47
|
validatorHealth: ValidatorHealthDetails;
|
|
48
|
+
/**
|
|
49
|
+
* The geographical location of the validator node, if available.
|
|
50
|
+
*/
|
|
51
|
+
geolocation: Geolocation | null;
|
|
47
52
|
};
|
|
48
53
|
declare namespace ActiveValidatorDetails {
|
|
49
54
|
enum validationStatus {
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
type Geolocation = {
|
|
2
|
+
/**
|
|
3
|
+
* The name of the validator node.
|
|
4
|
+
*/
|
|
5
|
+
city: string;
|
|
6
|
+
/**
|
|
7
|
+
* The city of the validator node.
|
|
8
|
+
*/
|
|
9
|
+
country: string;
|
|
10
|
+
/**
|
|
11
|
+
* The country code of the validator node.
|
|
12
|
+
*/
|
|
13
|
+
countryCode: string;
|
|
14
|
+
/**
|
|
15
|
+
* The latitude of the validator node.
|
|
16
|
+
*/
|
|
17
|
+
latitude: number;
|
|
18
|
+
/**
|
|
19
|
+
* The longitude of the validator node.
|
|
20
|
+
*/
|
|
21
|
+
longitude: number;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export { Geolocation };
|
|
@@ -11,13 +11,13 @@ declare class InterchainMessagingService {
|
|
|
11
11
|
constructor(httpRequest: BaseHttpRequest);
|
|
12
12
|
/**
|
|
13
13
|
* Get an ICM message
|
|
14
|
-
* Gets an ICM message by message ID.
|
|
14
|
+
* Gets an ICM message by teleporter message ID.
|
|
15
15
|
* @returns any Successful response
|
|
16
16
|
* @throws ApiError
|
|
17
17
|
*/
|
|
18
18
|
getIcmMessage({ messageId, }: {
|
|
19
19
|
/**
|
|
20
|
-
* The message ID of the ICM message.
|
|
20
|
+
* The teleporter message ID of the ICM message.
|
|
21
21
|
*/
|
|
22
22
|
messageId: string;
|
|
23
23
|
}): CancelablePromise<(PendingIcmMessage | DeliveredIcmMessage | DeliveredSourceNotIndexedIcmMessage)>;
|
|
@@ -312,7 +312,7 @@ declare class PrimaryNetworkService {
|
|
|
312
312
|
/**
|
|
313
313
|
* The L1 Validator's validation ID to filter by. If not provided, then all L1 Validators will be returned.
|
|
314
314
|
*/
|
|
315
|
-
l1ValidationId?:
|
|
315
|
+
l1ValidationId?: string;
|
|
316
316
|
includeInactiveL1Validators?: boolean;
|
|
317
317
|
/**
|
|
318
318
|
* A valid node ID in format 'NodeID-HASH'.
|
package/esm/index.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ export { EVMOperationType } from './generated/models/EVMOperationType.js';
|
|
|
76
76
|
export { EVMOutput } from './generated/models/EVMOutput.js';
|
|
77
77
|
export { Forbidden } from './generated/models/Forbidden.js';
|
|
78
78
|
export { FullNativeTransactionDetails } from './generated/models/FullNativeTransactionDetails.js';
|
|
79
|
+
export { Geolocation } from './generated/models/Geolocation.js';
|
|
79
80
|
export { GetChainResponse } from './generated/models/GetChainResponse.js';
|
|
80
81
|
export { GetEvmBlockResponse } from './generated/models/GetEvmBlockResponse.js';
|
|
81
82
|
export { GetNativeBalanceResponse } from './generated/models/GetNativeBalanceResponse.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalabs/glacier-sdk",
|
|
3
|
-
"version": "3.1.0-alpha.
|
|
3
|
+
"version": "3.1.0-alpha.47",
|
|
4
4
|
"description": "sdk for interacting with glacier-api",
|
|
5
5
|
"author": "Oliver Wang <oliver.wang@avalabs.org>",
|
|
6
6
|
"homepage": "https://github.com/ava-labs/avalanche-sdks#readme",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"bugs": {
|
|
30
30
|
"url": "https://github.com/ava-labs/avalanche-sdks/issues"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "41bdd72404742cb6097f09524f596746a363538f"
|
|
33
33
|
}
|