@avalabs/glacier-sdk 2.8.0-canary.ca01c76.0 → 2.8.0-canary.f0b0684.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist/index.d.ts +254 -202
  2. package/dist/index.js +131 -60
  3. package/esm/generated/Glacier.d.ts +2 -0
  4. package/esm/generated/Glacier.js +27 -10
  5. package/esm/generated/core/ApiError.js +5 -0
  6. package/esm/generated/core/CancelablePromise.js +11 -6
  7. package/esm/generated/core/request.js +14 -31
  8. package/esm/generated/models/ActiveDelegatorDetails.d.ts +6 -3
  9. package/esm/generated/models/ActiveDelegatorDetails.js +8 -0
  10. package/esm/generated/models/ActiveValidatorDetails.d.ts +6 -2
  11. package/esm/generated/models/ActiveValidatorDetails.js +8 -0
  12. package/esm/generated/models/CompletedDelegatorDetails.d.ts +6 -3
  13. package/esm/generated/models/CompletedDelegatorDetails.js +8 -0
  14. package/esm/generated/models/CompletedValidatorDetails.d.ts +6 -2
  15. package/esm/generated/models/CompletedValidatorDetails.js +8 -0
  16. package/esm/generated/models/Erc20Contract.d.ts +1 -1
  17. package/esm/generated/models/ListContractsResponse.d.ts +1 -1
  18. package/esm/generated/models/PendingDelegatorDetails.d.ts +6 -3
  19. package/esm/generated/models/PendingDelegatorDetails.js +8 -0
  20. package/esm/generated/models/PendingValidatorDetails.d.ts +6 -3
  21. package/esm/generated/models/PendingValidatorDetails.js +8 -0
  22. package/esm/generated/services/EvmContractsService.d.ts +29 -0
  23. package/esm/generated/services/EvmContractsService.js +20 -0
  24. package/esm/generated/services/EvmTransactionsService.d.ts +20 -0
  25. package/esm/generated/services/EvmTransactionsService.js +13 -0
  26. package/esm/generated/services/NfTsService.d.ts +0 -18
  27. package/esm/generated/services/NfTsService.js +0 -13
  28. package/esm/index.d.ts +1 -0
  29. package/esm/index.js +7 -0
  30. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -741,6 +741,199 @@ declare class EvmChainsService {
741
741
  }): CancelablePromise<GetChainResponse>;
742
742
  }
743
743
 
744
+ type ContractDeploymentDetails = {
745
+ txHash: string;
746
+ /**
747
+ * The address that initiated the transaction which deployed this contract.
748
+ */
749
+ deployerAddress: string;
750
+ /**
751
+ * The contract address which deployed this contract via smart contract. This field is only populated when the contract was deployed as part of smart contract execution.
752
+ */
753
+ deployerContractAddress?: string;
754
+ };
755
+
756
+ type ImageAsset = {
757
+ assetId?: string;
758
+ /**
759
+ * OUTPUT ONLY
760
+ */
761
+ imageUri?: string;
762
+ };
763
+
764
+ type PricingProviders = {
765
+ coingeckoCoinId?: string;
766
+ };
767
+
768
+ declare enum ResourceLinkType {
769
+ BLOG = "Blog",
770
+ COIN_GECKO = "CoinGecko",
771
+ COIN_MARKET_CAP = "CoinMarketCap",
772
+ DISCORD = "Discord",
773
+ DOCUMENTATION = "Documentation",
774
+ FACEBOOK = "Facebook",
775
+ GITHUB = "Github",
776
+ INSTAGRAM = "Instagram",
777
+ LINKED_IN = "LinkedIn",
778
+ MEDIUM = "Medium",
779
+ REDDIT = "Reddit",
780
+ SUPPORT = "Support",
781
+ TELEGRAM = "Telegram",
782
+ TIK_TOK = "TikTok",
783
+ TWITTER = "Twitter",
784
+ WEBSITE = "Website",
785
+ WHITEPAPER = "Whitepaper",
786
+ YOUTUBE = "Youtube"
787
+ }
788
+
789
+ type ResourceLink = {
790
+ type: ResourceLinkType;
791
+ url: string;
792
+ };
793
+
794
+ type Erc1155Contract = {
795
+ /**
796
+ * The contract name.
797
+ */
798
+ name?: string;
799
+ description?: string;
800
+ officialSite?: string;
801
+ email?: string;
802
+ logoAsset?: ImageAsset;
803
+ bannerAsset?: ImageAsset;
804
+ color?: string;
805
+ resourceLinks?: Array<ResourceLink>;
806
+ tags?: Array<string>;
807
+ /**
808
+ * A wallet or contract address in mixed-case checksum encoding.
809
+ */
810
+ address: string;
811
+ deploymentDetails: ContractDeploymentDetails;
812
+ ercType: Erc1155Contract.ercType;
813
+ /**
814
+ * The contract symbol.
815
+ */
816
+ symbol?: string;
817
+ pricingProviders?: PricingProviders;
818
+ };
819
+ declare namespace Erc1155Contract {
820
+ enum ercType {
821
+ ERC_1155 = "ERC-1155"
822
+ }
823
+ }
824
+
825
+ type Erc20Contract = {
826
+ /**
827
+ * The contract name.
828
+ */
829
+ name?: string;
830
+ description?: string;
831
+ officialSite?: string;
832
+ email?: string;
833
+ logoAsset?: ImageAsset;
834
+ bannerAsset?: ImageAsset;
835
+ color?: string;
836
+ resourceLinks?: Array<ResourceLink>;
837
+ tags?: Array<string>;
838
+ /**
839
+ * A wallet or contract address in mixed-case checksum encoding.
840
+ */
841
+ address: string;
842
+ deploymentDetails: ContractDeploymentDetails;
843
+ ercType: Erc20Contract.ercType;
844
+ /**
845
+ * The contract symbol.
846
+ */
847
+ symbol?: string;
848
+ /**
849
+ * The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
850
+ */
851
+ decimals: number;
852
+ pricingProviders?: PricingProviders;
853
+ };
854
+ declare namespace Erc20Contract {
855
+ enum ercType {
856
+ ERC_20 = "ERC-20"
857
+ }
858
+ }
859
+
860
+ type Erc721Contract = {
861
+ /**
862
+ * The contract name.
863
+ */
864
+ name?: string;
865
+ description?: string;
866
+ officialSite?: string;
867
+ email?: string;
868
+ logoAsset?: ImageAsset;
869
+ bannerAsset?: ImageAsset;
870
+ color?: string;
871
+ resourceLinks?: Array<ResourceLink>;
872
+ tags?: Array<string>;
873
+ /**
874
+ * A wallet or contract address in mixed-case checksum encoding.
875
+ */
876
+ address: string;
877
+ deploymentDetails: ContractDeploymentDetails;
878
+ ercType: Erc721Contract.ercType;
879
+ /**
880
+ * The contract symbol.
881
+ */
882
+ symbol?: string;
883
+ };
884
+ declare namespace Erc721Contract {
885
+ enum ercType {
886
+ ERC_721 = "ERC-721"
887
+ }
888
+ }
889
+
890
+ type UnknownContract = {
891
+ /**
892
+ * The contract name.
893
+ */
894
+ name?: string;
895
+ description?: string;
896
+ officialSite?: string;
897
+ email?: string;
898
+ logoAsset?: ImageAsset;
899
+ bannerAsset?: ImageAsset;
900
+ color?: string;
901
+ resourceLinks?: Array<ResourceLink>;
902
+ tags?: Array<string>;
903
+ /**
904
+ * A wallet or contract address in mixed-case checksum encoding.
905
+ */
906
+ address: string;
907
+ deploymentDetails: ContractDeploymentDetails;
908
+ ercType: UnknownContract.ercType;
909
+ };
910
+ declare namespace UnknownContract {
911
+ enum ercType {
912
+ UNKNOWN = "UNKNOWN"
913
+ }
914
+ }
915
+
916
+ declare class EvmContractsService {
917
+ readonly httpRequest: BaseHttpRequest;
918
+ constructor(httpRequest: BaseHttpRequest);
919
+ /**
920
+ * Get contract metadata
921
+ * Gets metadata about the contract at the given address.
922
+ * @returns any
923
+ * @throws ApiError
924
+ */
925
+ getContractMetadata({ chainId, address, }: {
926
+ /**
927
+ * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
928
+ */
929
+ chainId: string;
930
+ /**
931
+ * Contract address on the relevant chain.
932
+ */
933
+ address: string;
934
+ }): CancelablePromise<(Erc721Contract | Erc1155Contract | Erc20Contract | UnknownContract)>;
935
+ }
936
+
744
937
  type Erc1155Token = {
745
938
  /**
746
939
  * A wallet or contract address in mixed-case checksum encoding.
@@ -999,184 +1192,12 @@ type GetTransactionResponse = {
999
1192
  nativeTransaction: FullNativeTransactionDetails;
1000
1193
  };
1001
1194
 
1002
- type ContractDeploymentDetails = {
1003
- txHash: string;
1004
- /**
1005
- * The address that initiated the transaction which deployed this contract.
1006
- */
1007
- deployerAddress: string;
1008
- /**
1009
- * The contract address which deployed this contract via smart contract. This field is only populated when the contract was deployed as part of smart contract execution.
1010
- */
1011
- deployerContractAddress?: string;
1012
- };
1013
-
1014
- type ImageAsset = {
1015
- assetId?: string;
1016
- /**
1017
- * OUTPUT ONLY
1018
- */
1019
- imageUri?: string;
1020
- };
1021
-
1022
- type PricingProviders = {
1023
- coingeckoCoinId?: string;
1024
- };
1025
-
1026
- declare enum ResourceLinkType {
1027
- BLOG = "Blog",
1028
- COIN_GECKO = "CoinGecko",
1029
- COIN_MARKET_CAP = "CoinMarketCap",
1030
- DISCORD = "Discord",
1031
- DOCUMENTATION = "Documentation",
1032
- FACEBOOK = "Facebook",
1033
- GITHUB = "Github",
1034
- INSTAGRAM = "Instagram",
1035
- LINKED_IN = "LinkedIn",
1036
- MEDIUM = "Medium",
1037
- REDDIT = "Reddit",
1038
- SUPPORT = "Support",
1039
- TELEGRAM = "Telegram",
1040
- TIK_TOK = "TikTok",
1041
- TWITTER = "Twitter",
1042
- WEBSITE = "Website",
1043
- WHITEPAPER = "Whitepaper",
1044
- YOUTUBE = "Youtube"
1045
- }
1046
-
1047
- type ResourceLink = {
1048
- type: ResourceLinkType;
1049
- url: string;
1050
- };
1051
-
1052
- type Erc1155Contract = {
1053
- /**
1054
- * The contract name.
1055
- */
1056
- name?: string;
1057
- description?: string;
1058
- officialSite?: string;
1059
- email?: string;
1060
- logoAsset?: ImageAsset;
1061
- bannerAsset?: ImageAsset;
1062
- color?: string;
1063
- resourceLinks?: Array<ResourceLink>;
1064
- tags?: Array<string>;
1065
- /**
1066
- * A wallet or contract address in mixed-case checksum encoding.
1067
- */
1068
- address: string;
1069
- deploymentDetails: ContractDeploymentDetails;
1070
- ercType: Erc1155Contract.ercType;
1071
- /**
1072
- * The contract symbol.
1073
- */
1074
- symbol?: string;
1075
- pricingProviders?: PricingProviders;
1076
- };
1077
- declare namespace Erc1155Contract {
1078
- enum ercType {
1079
- ERC_1155 = "ERC-1155"
1080
- }
1081
- }
1082
-
1083
- type Erc20Contract = {
1084
- /**
1085
- * The contract name.
1086
- */
1087
- name?: string;
1088
- description?: string;
1089
- officialSite?: string;
1090
- email?: string;
1091
- logoAsset?: ImageAsset;
1092
- bannerAsset?: ImageAsset;
1093
- color?: string;
1094
- resourceLinks?: Array<ResourceLink>;
1095
- tags?: Array<string>;
1096
- /**
1097
- * A wallet or contract address in mixed-case checksum encoding.
1098
- */
1099
- address: string;
1100
- deploymentDetails: ContractDeploymentDetails;
1101
- ercType: Erc20Contract.ercType;
1102
- /**
1103
- * The contract symbol.
1104
- */
1105
- symbol?: string;
1106
- /**
1107
- * The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
1108
- */
1109
- decimals: number;
1110
- pricingProviders: PricingProviders;
1111
- };
1112
- declare namespace Erc20Contract {
1113
- enum ercType {
1114
- ERC_20 = "ERC-20"
1115
- }
1116
- }
1117
-
1118
- type Erc721Contract = {
1119
- /**
1120
- * The contract name.
1121
- */
1122
- name?: string;
1123
- description?: string;
1124
- officialSite?: string;
1125
- email?: string;
1126
- logoAsset?: ImageAsset;
1127
- bannerAsset?: ImageAsset;
1128
- color?: string;
1129
- resourceLinks?: Array<ResourceLink>;
1130
- tags?: Array<string>;
1131
- /**
1132
- * A wallet or contract address in mixed-case checksum encoding.
1133
- */
1134
- address: string;
1135
- deploymentDetails: ContractDeploymentDetails;
1136
- ercType: Erc721Contract.ercType;
1137
- /**
1138
- * The contract symbol.
1139
- */
1140
- symbol?: string;
1141
- };
1142
- declare namespace Erc721Contract {
1143
- enum ercType {
1144
- ERC_721 = "ERC-721"
1145
- }
1146
- }
1147
-
1148
- type UnknownContract = {
1149
- /**
1150
- * The contract name.
1151
- */
1152
- name?: string;
1153
- description?: string;
1154
- officialSite?: string;
1155
- email?: string;
1156
- logoAsset?: ImageAsset;
1157
- bannerAsset?: ImageAsset;
1158
- color?: string;
1159
- resourceLinks?: Array<ResourceLink>;
1160
- tags?: Array<string>;
1161
- /**
1162
- * A wallet or contract address in mixed-case checksum encoding.
1163
- */
1164
- address: string;
1165
- deploymentDetails: ContractDeploymentDetails;
1166
- ercType: UnknownContract.ercType;
1167
- };
1168
- declare namespace UnknownContract {
1169
- enum ercType {
1170
- UNKNOWN = "UNKNOWN"
1171
- }
1172
- }
1173
-
1174
1195
  type ListContractsResponse = {
1175
1196
  /**
1176
1197
  * 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.
1177
1198
  */
1178
1199
  nextPageToken?: string;
1179
- contracts: Array<(UnknownContract | Erc20Contract | Erc721Contract | Erc1155Contract)>;
1200
+ contracts: Array<(Erc721Contract | Erc1155Contract | Erc20Contract | UnknownContract)>;
1180
1201
  };
1181
1202
 
1182
1203
  type Erc1155Transfer = {
@@ -1466,6 +1487,22 @@ declare class EvmTransactionsService {
1466
1487
  */
1467
1488
  pageToken?: string;
1468
1489
  }): CancelablePromise<ListContractsResponse>;
1490
+ /**
1491
+ * Get contract metadata
1492
+ * Gets metadata about the contract at the given address.
1493
+ * @returns any
1494
+ * @throws ApiError
1495
+ */
1496
+ getContractMetadata({ chainId, address, }: {
1497
+ /**
1498
+ * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1499
+ */
1500
+ chainId: string;
1501
+ /**
1502
+ * Contract address on the relevant chain.
1503
+ */
1504
+ address: string;
1505
+ }): CancelablePromise<(Erc721Contract | Erc1155Contract | Erc20Contract | UnknownContract)>;
1469
1506
  /**
1470
1507
  * List ERC transfers
1471
1508
  * Lists ERC transfers for an ERC-20, ERC-721, or ERC-1155 contract address.
@@ -1773,22 +1810,6 @@ declare class NfTsService {
1773
1810
  */
1774
1811
  tokenId: string;
1775
1812
  }): CancelablePromise<(Erc721Token | Erc1155Token)>;
1776
- /**
1777
- * Get collection details
1778
- * Gets collection details for a NFT contract.
1779
- * @returns any
1780
- * @throws ApiError
1781
- */
1782
- getCollection({ chainId, address, }: {
1783
- /**
1784
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1785
- */
1786
- chainId: string;
1787
- /**
1788
- * Contract address on the relevant chain.
1789
- */
1790
- address: string;
1791
- }): CancelablePromise<(Erc721Contract | Erc1155Contract)>;
1792
1813
  }
1793
1814
 
1794
1815
  type EvmNetworkOptions = {
@@ -1981,10 +2002,15 @@ type ActiveDelegatorDetails = {
1981
2002
  delegationFee: string;
1982
2003
  startTimestamp: number;
1983
2004
  endTimestamp: number;
1984
- delegationStatus: DelegationStatusType;
1985
2005
  estimatedGrossReward: string;
1986
2006
  estimatedNetReward: string;
2007
+ delegationStatus: ActiveDelegatorDetails.delegationStatus;
1987
2008
  };
2009
+ declare namespace ActiveDelegatorDetails {
2010
+ enum delegationStatus {
2011
+ ACTIVE = "active"
2012
+ }
2013
+ }
1988
2014
 
1989
2015
  type CompletedDelegatorDetails = {
1990
2016
  txHash: string;
@@ -1993,10 +2019,15 @@ type CompletedDelegatorDetails = {
1993
2019
  delegationFee: string;
1994
2020
  startTimestamp: number;
1995
2021
  endTimestamp: number;
1996
- delegationStatus: DelegationStatusType;
1997
2022
  grossReward: string;
1998
2023
  netReward: string;
2024
+ delegationStatus: CompletedDelegatorDetails.delegationStatus;
1999
2025
  };
2026
+ declare namespace CompletedDelegatorDetails {
2027
+ enum delegationStatus {
2028
+ COMPLETED = "completed"
2029
+ }
2030
+ }
2000
2031
 
2001
2032
  type PendingDelegatorDetails = {
2002
2033
  txHash: string;
@@ -2005,10 +2036,15 @@ type PendingDelegatorDetails = {
2005
2036
  delegationFee: string;
2006
2037
  startTimestamp: number;
2007
2038
  endTimestamp: number;
2008
- delegationStatus: DelegationStatusType;
2009
2039
  estimatedGrossReward: string;
2010
2040
  estimatedNetReward: string;
2041
+ delegationStatus: PendingDelegatorDetails.delegationStatus;
2011
2042
  };
2043
+ declare namespace PendingDelegatorDetails {
2044
+ enum delegationStatus {
2045
+ PENDING = "pending"
2046
+ }
2047
+ }
2012
2048
 
2013
2049
  type ListDelegatorDetailsResponse = {
2014
2050
  /**
@@ -2048,19 +2084,12 @@ type Rewards = {
2048
2084
  delegationRewardAmount: string;
2049
2085
  };
2050
2086
 
2051
- declare enum ValidationStatusType {
2052
- COMPLETED = "completed",
2053
- ACTIVE = "active",
2054
- PENDING = "pending"
2055
- }
2056
-
2057
2087
  type ActiveValidatorDetails = {
2058
2088
  nodeId: string;
2059
2089
  amountStaked: string;
2060
2090
  delegationFee: string;
2061
2091
  startTimestamp: number;
2062
2092
  endTimestamp: number;
2063
- validationStatus: ValidationStatusType;
2064
2093
  stakePercentage: number;
2065
2094
  delegatorCount: number;
2066
2095
  amountDelegated: string;
@@ -2068,7 +2097,13 @@ type ActiveValidatorDetails = {
2068
2097
  avalancheGoVersion: string;
2069
2098
  delegationCapacity: string;
2070
2099
  potentialRewards: Rewards;
2100
+ validationStatus: ActiveValidatorDetails.validationStatus;
2071
2101
  };
2102
+ declare namespace ActiveValidatorDetails {
2103
+ enum validationStatus {
2104
+ ACTIVE = "active"
2105
+ }
2106
+ }
2072
2107
 
2073
2108
  type CompletedValidatorDetails = {
2074
2109
  nodeId: string;
@@ -2076,10 +2111,15 @@ type CompletedValidatorDetails = {
2076
2111
  delegationFee: string;
2077
2112
  startTimestamp: number;
2078
2113
  endTimestamp: number;
2079
- validationStatus: ValidationStatusType;
2080
2114
  delegatorCount: number;
2081
2115
  rewards: Rewards;
2116
+ validationStatus: CompletedValidatorDetails.validationStatus;
2082
2117
  };
2118
+ declare namespace CompletedValidatorDetails {
2119
+ enum validationStatus {
2120
+ COMPLETED = "completed"
2121
+ }
2122
+ }
2083
2123
 
2084
2124
  type PendingValidatorDetails = {
2085
2125
  nodeId: string;
@@ -2087,8 +2127,13 @@ type PendingValidatorDetails = {
2087
2127
  delegationFee: string;
2088
2128
  startTimestamp: number;
2089
2129
  endTimestamp: number;
2090
- validationStatus: ValidationStatusType;
2130
+ validationStatus: PendingValidatorDetails.validationStatus;
2091
2131
  };
2132
+ declare namespace PendingValidatorDetails {
2133
+ enum validationStatus {
2134
+ PENDING = "pending"
2135
+ }
2136
+ }
2092
2137
 
2093
2138
  type ListValidatorDetailsResponse = {
2094
2139
  /**
@@ -2106,6 +2151,12 @@ declare enum Network {
2106
2151
  FUJI = "fuji"
2107
2152
  }
2108
2153
 
2154
+ declare enum ValidationStatusType {
2155
+ COMPLETED = "completed",
2156
+ ACTIVE = "active",
2157
+ PENDING = "pending"
2158
+ }
2159
+
2109
2160
  type XChainAssetDetails = {
2110
2161
  /**
2111
2162
  * Unique ID for an asset.
@@ -3668,6 +3719,7 @@ declare class Glacier {
3668
3719
  readonly evmBalances: EvmBalancesService;
3669
3720
  readonly evmBlocks: EvmBlocksService;
3670
3721
  readonly evmChains: EvmChainsService;
3722
+ readonly evmContracts: EvmContractsService;
3671
3723
  readonly evmTransactions: EvmTransactionsService;
3672
3724
  readonly healthCheck: HealthCheckService;
3673
3725
  readonly nfTs: NfTsService;
@@ -3700,4 +3752,4 @@ declare class ApiError extends Error {
3700
3752
  constructor(request: ApiRequestOptions, response: ApiResult, message: string);
3701
3753
  }
3702
3754
 
3703
- export { ActiveDelegatorDetails, ActiveValidatorDetails, ApiError, Asset, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CurrencyCode, DelegationStatusType, DelegatorsDetails, EVMInput, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmNetworkOptions, EvmTransactionsService, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, Method, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkType, NfTsService, NftTokenMetadataStatus, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainAsset, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingValidatorDetails, PricingProviders, PrimaryNetwork, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, SortOrder, StakingDistribution, Subnet, TransactionDetails, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, UnknownContract, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorsDetails, VmName, XChainAssetBalance, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainVertex };
3755
+ export { ActiveDelegatorDetails, ActiveValidatorDetails, ApiError, Asset, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CurrencyCode, DelegationStatusType, DelegatorsDetails, EVMInput, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmContractsService, EvmNetworkOptions, EvmTransactionsService, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, Method, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkType, NfTsService, NftTokenMetadataStatus, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainAsset, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingValidatorDetails, PricingProviders, PrimaryNetwork, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, SortOrder, StakingDistribution, Subnet, TransactionDetails, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, UnknownContract, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorsDetails, VmName, XChainAssetBalance, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainVertex };