@avalabs/glacier-sdk 3.1.0-canary.0bf7de8.0 → 3.1.0-canary.0d842e8.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 (33) hide show
  1. package/dist/index.d.ts +189 -43
  2. package/dist/index.js +1 -1
  3. package/esm/generated/models/{CreateWebhookRequest.d.ts → EVMAddressActivityRequest.d.ts} +11 -5
  4. package/esm/generated/models/EVMAddressActivityRequest.js +1 -0
  5. package/esm/generated/models/{WebhookResponse.d.ts → EVMAddressActivityResponse.d.ts} +8 -8
  6. package/esm/generated/models/Erc20TokenBalance.d.ts +1 -1
  7. package/esm/generated/models/EventType.d.ts +3 -1
  8. package/esm/generated/models/EventType.js +1 -1
  9. package/esm/generated/models/ListWebhooksResponse.d.ts +3 -2
  10. package/esm/generated/models/Network.d.ts +1 -2
  11. package/esm/generated/models/Network.js +1 -1
  12. package/esm/generated/models/OperationStatusResponse.d.ts +1 -1
  13. package/esm/generated/models/PChainBalanceType.d.ts +15 -0
  14. package/esm/generated/models/PChainBalanceType.js +1 -0
  15. package/esm/generated/models/PlatformActivityKeyType.d.ts +10 -0
  16. package/esm/generated/models/PlatformActivityKeyType.js +1 -0
  17. package/esm/generated/models/PlatformActivityMetadata.d.ts +37 -0
  18. package/esm/generated/models/PlatformActivityRequest.d.ts +31 -0
  19. package/esm/generated/models/PlatformActivityRequest.js +1 -0
  20. package/esm/generated/models/PlatformActivityResponse.d.ts +17 -0
  21. package/esm/generated/models/PlatformActivitySubEvents.d.ts +11 -0
  22. package/esm/generated/models/PlatformAddressActivitySubEventType.d.ts +9 -0
  23. package/esm/generated/models/PlatformAddressActivitySubEventType.js +1 -0
  24. package/esm/generated/models/PlatformBalanceThresholdFilter.d.ts +11 -0
  25. package/esm/generated/models/PrimaryNetworkType.d.ts +6 -0
  26. package/esm/generated/models/PrimaryNetworkType.js +1 -0
  27. package/esm/generated/services/EvmBalancesService.d.ts +4 -4
  28. package/esm/generated/services/SignatureAggregatorService.d.ts +16 -0
  29. package/esm/generated/services/SignatureAggregatorService.js +1 -1
  30. package/esm/generated/services/WebhooksService.d.ts +23 -21
  31. package/esm/index.d.ts +11 -2
  32. package/esm/index.js +1 -1
  33. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -151,8 +151,7 @@ type LogsResponseDTO = {
151
151
  declare enum Network {
152
152
  MAINNET = "mainnet",
153
153
  FUJI = "fuji",
154
- TESTNET = "testnet",
155
- DEVNET = "devnet"
154
+ TESTNET = "testnet"
156
155
  }
157
156
 
158
157
  declare enum PrimaryNetworkRpcMetricsGroupByEnum {
@@ -867,7 +866,7 @@ type Erc20TokenBalance = {
867
866
  /**
868
867
  * Indicates the reputation of the token based on a security analysis. 'Benign' suggests the token is likely safe, while 'Malicious' indicates potential security risks. This field is nullable and is only populated for tokens on the C-Chain. Possible values are 'Benign', 'Malicious', or null if the reputation is unknown.
869
868
  */
870
- tokenReputation: Erc20TokenBalance.tokenReputation | null;
869
+ tokenReputation: Erc20TokenBalance.tokenReputation;
871
870
  };
872
871
  declare namespace Erc20TokenBalance {
873
872
  enum ercType {
@@ -969,7 +968,7 @@ declare class EvmBalancesService {
969
968
  */
970
969
  pageToken?: string;
971
970
  /**
972
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
971
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 500.
973
972
  */
974
973
  pageSize?: number;
975
974
  /**
@@ -1007,7 +1006,7 @@ declare class EvmBalancesService {
1007
1006
  */
1008
1007
  pageToken?: string;
1009
1008
  /**
1010
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1009
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 500.
1011
1010
  */
1012
1011
  pageSize?: number;
1013
1012
  /**
@@ -1043,7 +1042,7 @@ declare class EvmBalancesService {
1043
1042
  */
1044
1043
  pageToken?: string;
1045
1044
  /**
1046
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1045
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 500.
1047
1046
  */
1048
1047
  pageSize?: number;
1049
1048
  /**
@@ -1073,7 +1072,7 @@ declare class EvmBalancesService {
1073
1072
  */
1074
1073
  pageToken?: string;
1075
1074
  /**
1076
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1075
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 500.
1077
1076
  */
1078
1077
  pageSize?: number;
1079
1078
  /**
@@ -3193,7 +3192,7 @@ type OperationStatusResponse = {
3193
3192
  operationType: OperationType;
3194
3193
  operationStatus: OperationStatus;
3195
3194
  message?: string;
3196
- metadata: TransactionExportMetadata;
3195
+ metadata?: TransactionExportMetadata;
3197
3196
  createdAtTimestamp: number;
3198
3197
  updatedAtTimestamp: number;
3199
3198
  };
@@ -5558,6 +5557,22 @@ declare class SignatureAggregatorService {
5558
5557
  network: Network;
5559
5558
  requestBody: SignatureAggregatorRequest;
5560
5559
  }): CancelablePromise<SignatureAggregationResponse>;
5560
+ /**
5561
+ * Get Aggregated Signatures
5562
+ * Get Aggregated Signatures for a P-Chain L1 related Warp Message.
5563
+ * @returns SignatureAggregationResponse Successful response
5564
+ * @throws ApiError
5565
+ */
5566
+ getAggregatedSignatures({ network, txHash, }: {
5567
+ /**
5568
+ * Either mainnet or testnet/fuji.
5569
+ */
5570
+ network: Network;
5571
+ /**
5572
+ * A primary network (P or X chain) transaction hash.
5573
+ */
5574
+ txHash: string;
5575
+ }): CancelablePromise<SignatureAggregationResponse>;
5561
5576
  }
5562
5577
 
5563
5578
  type TeleporterDestinationTransaction = {
@@ -5799,15 +5814,16 @@ type AddressActivityMetadata = {
5799
5814
  eventSignatures?: Array<string>;
5800
5815
  };
5801
5816
 
5802
- declare enum EventType {
5803
- ADDRESS_ACTIVITY = "address_activity"
5817
+ declare enum PrimaryNetworkType {
5818
+ MAINNET = "mainnet",
5819
+ FUJI = "fuji"
5804
5820
  }
5805
5821
 
5806
- type CreateWebhookRequest = {
5822
+ type EVMAddressActivityRequest = {
5823
+ eventType: EVMAddressActivityRequest.eventType;
5807
5824
  url: string;
5808
5825
  chainId: string;
5809
- eventType: EventType;
5810
- metadata: AddressActivityMetadata;
5826
+ network?: PrimaryNetworkType;
5811
5827
  name?: string;
5812
5828
  description?: string;
5813
5829
  /**
@@ -5818,25 +5834,34 @@ type CreateWebhookRequest = {
5818
5834
  * Whether to include logs in the webhook payload.
5819
5835
  */
5820
5836
  includeLogs?: boolean;
5837
+ metadata: AddressActivityMetadata;
5821
5838
  };
5839
+ declare namespace EVMAddressActivityRequest {
5840
+ enum eventType {
5841
+ ADDRESS_ACTIVITY = "address_activity"
5842
+ }
5843
+ }
5822
5844
 
5823
- type ListWebhookAddressesResponse = {
5824
- /**
5825
- * 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.
5826
- */
5827
- nextPageToken?: string;
5828
- addresses: Array<string>;
5829
- totalAddresses: number;
5830
- };
5845
+ declare enum EventType {
5846
+ ADDRESS_ACTIVITY = "address_activity",
5847
+ PLATFORM_ADDRESS_ACTIVITY = "platform_address_activity",
5848
+ VALIDATOR_ACTIVITY = "validator_activity"
5849
+ }
5831
5850
 
5832
5851
  declare enum WebhookStatusType {
5833
5852
  ACTIVE = "active",
5834
5853
  INACTIVE = "inactive"
5835
5854
  }
5836
5855
 
5837
- type WebhookResponse = {
5856
+ type EVMAddressActivityResponse = {
5838
5857
  id: string;
5839
5858
  eventType: EventType;
5859
+ url: string;
5860
+ chainId: string;
5861
+ status: WebhookStatusType;
5862
+ createdAt: number;
5863
+ name: string;
5864
+ description: string;
5840
5865
  metadata: AddressActivityMetadata;
5841
5866
  /**
5842
5867
  * Whether to include traces in the webhook payload.
@@ -5846,12 +5871,106 @@ type WebhookResponse = {
5846
5871
  * Whether to include logs in the webhook payload.
5847
5872
  */
5848
5873
  includeLogs?: boolean;
5874
+ };
5875
+
5876
+ type ListWebhookAddressesResponse = {
5877
+ /**
5878
+ * 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.
5879
+ */
5880
+ nextPageToken?: string;
5881
+ addresses: Array<string>;
5882
+ totalAddresses: number;
5883
+ };
5884
+
5885
+ /**
5886
+ * The type of key for platform activity depending on the event type
5887
+ */
5888
+ declare enum PlatformActivityKeyType {
5889
+ ADDRESSES = "addresses",
5890
+ NODE_ID = "nodeId",
5891
+ SUBNET_ID = "subnetId"
5892
+ }
5893
+
5894
+ /**
5895
+ * Array of address activity sub-event types
5896
+ */
5897
+ declare enum PlatformAddressActivitySubEventType {
5898
+ BALANCE_CHANGE_PLATFORM = "balance_change_platform",
5899
+ BALANCE_THRESHOLD_PLATFORM = "balance_threshold_platform"
5900
+ }
5901
+
5902
+ type PlatformActivitySubEvents = {
5903
+ /**
5904
+ * Array of validator activity sub-event types
5905
+ */
5906
+ validatorActivitySubEvents?: Array<'validator_registration' | 'reward_distribution' | 'l1_validator_balance_increased' | 'l1_validator_disabled' | 'l1_validator_removed' | 'l1_validator_balance_threshold'>;
5907
+ addressActivitySubEvents?: Array<PlatformAddressActivitySubEventType>;
5908
+ };
5909
+
5910
+ /**
5911
+ * Type of balance to monitor
5912
+ */
5913
+ declare enum PChainBalanceType {
5914
+ UNLOCKED_UNSTAKED = "unlockedUnstaked",
5915
+ UNLOCKED_STAKED = "unlockedStaked",
5916
+ LOCKED_PLATFORM = "lockedPlatform",
5917
+ LOCKED_STAKEABLE = "lockedStakeable",
5918
+ LOCKED_STAKED = "lockedStaked",
5919
+ PENDING_STAKED = "pendingStaked",
5920
+ ATOMIC_MEMORY_UNLOCKED = "atomicMemoryUnlocked",
5921
+ ATOMIC_MEMORY_LOCKED = "atomicMemoryLocked"
5922
+ }
5923
+
5924
+ type PlatformBalanceThresholdFilter = {
5925
+ balanceType: PChainBalanceType;
5926
+ /**
5927
+ * Threshold for balance corresponding to balanceType in nAVAX
5928
+ */
5929
+ balanceThreshold: string;
5930
+ };
5931
+
5932
+ type PlatformActivityMetadata = {
5933
+ keyType: PlatformActivityKeyType;
5934
+ /**
5935
+ * Array of keys like addresses, NodeID or SubnetID corresponding to the keyType being monitored. For PlatformAddressActivity event, an array of multiple addresses can be provided. ValidatorActivity event will only accept a single key
5936
+ */
5937
+ keys: Array<string>;
5938
+ /**
5939
+ * Sub-events to monitor
5940
+ */
5941
+ subEvents?: PlatformActivitySubEvents;
5942
+ /**
5943
+ * Array of hexadecimal strings of the event signatures.
5944
+ */
5945
+ eventSignatures?: Array<string>;
5946
+ /**
5947
+ * Array of node IDs to filter the events
5948
+ */
5949
+ nodeIds?: Array<string>;
5950
+ /**
5951
+ * Array of subnet IDs to filter the events
5952
+ */
5953
+ subnetIds?: Array<string>;
5954
+ /**
5955
+ * Balance threshold filter
5956
+ */
5957
+ balanceThresholdFilter?: PlatformBalanceThresholdFilter;
5958
+ /**
5959
+ * L1 validator fee balance threshold in nAVAX
5960
+ */
5961
+ l1ValidatorFeeBalanceThreshold?: string;
5962
+ };
5963
+
5964
+ type PlatformActivityResponse = {
5965
+ id: string;
5966
+ eventType: EventType;
5849
5967
  url: string;
5850
5968
  chainId: string;
5851
5969
  status: WebhookStatusType;
5852
5970
  createdAt: number;
5853
5971
  name: string;
5854
5972
  description: string;
5973
+ metadata: PlatformActivityMetadata;
5855
5974
  };
5856
5975
 
5857
5976
  type ListWebhooksResponse = {
@@ -5859,8 +5978,35 @@ type ListWebhooksResponse = {
5859
5978
  * 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.
5860
5979
  */
5861
5980
  nextPageToken?: string;
5862
- webhooks: Array<WebhookResponse>;
5981
+ webhooks: Array<(EVMAddressActivityResponse | PlatformActivityResponse)>;
5982
+ };
5983
+
5984
+ type PlatformActivityRequest = {
5985
+ eventType: PlatformActivityRequest.eventType;
5986
+ url: string;
5987
+ chainId: string;
5988
+ network?: PrimaryNetworkType;
5989
+ name?: string;
5990
+ description?: string;
5991
+ /**
5992
+ * Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
5993
+ */
5994
+ includeInternalTxs?: boolean;
5995
+ /**
5996
+ * Whether to include logs in the webhook payload.
5997
+ */
5998
+ includeLogs?: boolean;
5999
+ /**
6000
+ * Metadata for platform activity
6001
+ */
6002
+ metadata: PlatformActivityMetadata;
5863
6003
  };
6004
+ declare namespace PlatformActivityRequest {
6005
+ enum eventType {
6006
+ PLATFORM_ADDRESS_ACTIVITY = "platform_address_activity",
6007
+ VALIDATOR_ACTIVITY = "validator_activity"
6008
+ }
6009
+ }
5864
6010
 
5865
6011
  type SharedSecretsResponse = {
5866
6012
  secret: string;
@@ -5889,12 +6035,12 @@ declare class WebhooksService {
5889
6035
  /**
5890
6036
  * Create a webhook
5891
6037
  * Create a new webhook.
5892
- * @returns WebhookResponse Successful response
6038
+ * @returns any Successful response
5893
6039
  * @throws ApiError
5894
6040
  */
5895
6041
  createWebhook({ requestBody, }: {
5896
- requestBody: CreateWebhookRequest;
5897
- }): CancelablePromise<WebhookResponse>;
6042
+ requestBody: (EVMAddressActivityRequest | PlatformActivityRequest);
6043
+ }): CancelablePromise<(EVMAddressActivityResponse | PlatformActivityResponse)>;
5898
6044
  /**
5899
6045
  * List webhooks
5900
6046
  * Lists webhooks for the user.
@@ -5918,7 +6064,7 @@ declare class WebhooksService {
5918
6064
  /**
5919
6065
  * Get a webhook by ID
5920
6066
  * Retrieves a webhook by ID.
5921
- * @returns WebhookResponse Successful response
6067
+ * @returns any Successful response
5922
6068
  * @throws ApiError
5923
6069
  */
5924
6070
  getWebhook({ id, }: {
@@ -5926,11 +6072,11 @@ declare class WebhooksService {
5926
6072
  * The webhook identifier.
5927
6073
  */
5928
6074
  id: string;
5929
- }): CancelablePromise<WebhookResponse>;
6075
+ }): CancelablePromise<(EVMAddressActivityResponse | PlatformActivityResponse)>;
5930
6076
  /**
5931
6077
  * Deactivate a webhook
5932
6078
  * Deactivates a webhook by ID.
5933
- * @returns WebhookResponse Successful response
6079
+ * @returns any Successful response
5934
6080
  * @throws ApiError
5935
6081
  */
5936
6082
  deactivateWebhook({ id, }: {
@@ -5938,11 +6084,11 @@ declare class WebhooksService {
5938
6084
  * The webhook identifier.
5939
6085
  */
5940
6086
  id: string;
5941
- }): CancelablePromise<WebhookResponse>;
6087
+ }): CancelablePromise<(EVMAddressActivityResponse | PlatformActivityResponse)>;
5942
6088
  /**
5943
6089
  * Update a webhook
5944
6090
  * Updates an existing webhook.
5945
- * @returns WebhookResponse Successful response
6091
+ * @returns any Successful response
5946
6092
  * @throws ApiError
5947
6093
  */
5948
6094
  updateWebhook({ id, requestBody, }: {
@@ -5951,7 +6097,7 @@ declare class WebhooksService {
5951
6097
  */
5952
6098
  id: string;
5953
6099
  requestBody: UpdateWebhookRequest;
5954
- }): CancelablePromise<WebhookResponse>;
6100
+ }): CancelablePromise<(EVMAddressActivityResponse | PlatformActivityResponse)>;
5955
6101
  /**
5956
6102
  * Generate or rotate a shared secret
5957
6103
  * Generates a new shared secret or rotate an existing one.
@@ -5967,9 +6113,9 @@ declare class WebhooksService {
5967
6113
  */
5968
6114
  getSharedSecret(): CancelablePromise<SharedSecretsResponse>;
5969
6115
  /**
5970
- * Add addresses to webhook
5971
- * Add addresses to webhook.
5972
- * @returns WebhookResponse Successful response
6116
+ * Add addresses to EVM activity webhook
6117
+ * Add addresses to webhook. Only valid for EVM activity webhooks.
6118
+ * @returns EVMAddressActivityResponse Successful response
5973
6119
  * @throws ApiError
5974
6120
  */
5975
6121
  addAddressesToWebhook({ id, requestBody, }: {
@@ -5978,11 +6124,11 @@ declare class WebhooksService {
5978
6124
  */
5979
6125
  id: string;
5980
6126
  requestBody: AddressesChangeRequest;
5981
- }): CancelablePromise<WebhookResponse>;
6127
+ }): CancelablePromise<EVMAddressActivityResponse>;
5982
6128
  /**
5983
- * Remove addresses from webhook
5984
- * Remove addresses from webhook.
5985
- * @returns WebhookResponse Successful response
6129
+ * Remove addresses from EVM activity webhook
6130
+ * Remove addresses from webhook. Only valid for EVM activity webhooks.
6131
+ * @returns EVMAddressActivityResponse Successful response
5986
6132
  * @throws ApiError
5987
6133
  */
5988
6134
  removeAddressesFromWebhook({ id, requestBody, }: {
@@ -5991,10 +6137,10 @@ declare class WebhooksService {
5991
6137
  */
5992
6138
  id: string;
5993
6139
  requestBody: AddressesChangeRequest;
5994
- }): CancelablePromise<WebhookResponse>;
6140
+ }): CancelablePromise<EVMAddressActivityResponse>;
5995
6141
  /**
5996
- * List adresses by webhook
5997
- * List adresses by webhook.
6142
+ * List adresses by EVM activity webhooks
6143
+ * List adresses by webhook. Only valid for EVM activity webhooks.
5998
6144
  * @returns ListWebhookAddressesResponse Successful response
5999
6145
  * @throws ApiError
6000
6146
  */
@@ -6190,4 +6336,4 @@ type Unauthorized = {
6190
6336
  error: string;
6191
6337
  };
6192
6338
 
6193
- export { AccessRequest, 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, DeliveredIcmMessage, DeliveredSourceNotIndexedIcmMessage, 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, 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, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NextPageToken, NfTsService, NftTokenMetadataStatus, NotFound, NotificationsResponse, NotificationsService, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingIcmMessage, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PricingProviders, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkRpcMetricsGroupByEnum, PrimaryNetworkRpcTimeIntervalGranularity, PrimaryNetworkRpcUsageMetricsResponseDTO, 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, SubscribeRequest, SubscriptionsRequest, SubscriptionsResponse, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TimeIntervalGranularityExtended, TooManyRequests, TransactionDetails, TransactionDirectionType, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UnsubscribeRequest, 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 };
6339
+ export { AccessRequest, 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, CurrencyCode, DataApiUsageMetricsService, DataListChainsResponse, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredIcmMessage, DeliveredSourceNotIndexedIcmMessage, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, 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, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NextPageToken, NfTsService, NftTokenMetadataStatus, NotFound, NotificationsResponse, NotificationsService, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainBalanceType, 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, TransactionDetails, TransactionDirectionType, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UnsubscribeRequest, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsGroupByEnum, UsageMetricsResponseDTO, UsageMetricsValueDTO, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookStatus, WebhookStatusType, WebhooksService, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };