@avalabs/glacier-sdk 2.8.0-canary.a18b4e4.0 → 2.8.0-canary.aeb3588.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 (31) hide show
  1. package/dist/index.d.ts +240 -202
  2. package/dist/index.js +119 -61
  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/ChainInfo.d.ts +1 -0
  13. package/esm/generated/models/CompletedDelegatorDetails.d.ts +6 -3
  14. package/esm/generated/models/CompletedDelegatorDetails.js +8 -0
  15. package/esm/generated/models/CompletedValidatorDetails.d.ts +6 -2
  16. package/esm/generated/models/CompletedValidatorDetails.js +8 -0
  17. package/esm/generated/models/Erc20Contract.d.ts +1 -1
  18. package/esm/generated/models/GetChainResponse.d.ts +1 -0
  19. package/esm/generated/models/ListContractsResponse.d.ts +1 -1
  20. package/esm/generated/models/PendingDelegatorDetails.d.ts +6 -3
  21. package/esm/generated/models/PendingDelegatorDetails.js +8 -0
  22. package/esm/generated/models/PendingValidatorDetails.d.ts +6 -3
  23. package/esm/generated/models/PendingValidatorDetails.js +8 -0
  24. package/esm/generated/services/EvmContractsService.d.ts +29 -0
  25. package/esm/generated/services/EvmContractsService.js +20 -0
  26. package/esm/generated/services/EvmTransactionsService.js +1 -1
  27. package/esm/generated/services/NfTsService.d.ts +0 -18
  28. package/esm/generated/services/NfTsService.js +0 -13
  29. package/esm/index.d.ts +1 -0
  30. package/esm/index.js +7 -0
  31. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -680,6 +680,7 @@ type GetChainResponse = {
680
680
  utilityAddresses?: UtilityAddresses;
681
681
  networkToken: NetworkToken;
682
682
  chainLogoUri?: string;
683
+ private?: boolean;
683
684
  };
684
685
 
685
686
  type ChainInfo = {
@@ -701,6 +702,7 @@ type ChainInfo = {
701
702
  utilityAddresses?: UtilityAddresses;
702
703
  networkToken: NetworkToken;
703
704
  chainLogoUri?: string;
705
+ private?: boolean;
704
706
  };
705
707
 
706
708
  type ListChainsResponse = {
@@ -741,6 +743,199 @@ declare class EvmChainsService {
741
743
  }): CancelablePromise<GetChainResponse>;
742
744
  }
743
745
 
746
+ type ContractDeploymentDetails = {
747
+ txHash: string;
748
+ /**
749
+ * The address that initiated the transaction which deployed this contract.
750
+ */
751
+ deployerAddress: string;
752
+ /**
753
+ * 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.
754
+ */
755
+ deployerContractAddress?: string;
756
+ };
757
+
758
+ type ImageAsset = {
759
+ assetId?: string;
760
+ /**
761
+ * OUTPUT ONLY
762
+ */
763
+ imageUri?: string;
764
+ };
765
+
766
+ type PricingProviders = {
767
+ coingeckoCoinId?: string;
768
+ };
769
+
770
+ declare enum ResourceLinkType {
771
+ BLOG = "Blog",
772
+ COIN_GECKO = "CoinGecko",
773
+ COIN_MARKET_CAP = "CoinMarketCap",
774
+ DISCORD = "Discord",
775
+ DOCUMENTATION = "Documentation",
776
+ FACEBOOK = "Facebook",
777
+ GITHUB = "Github",
778
+ INSTAGRAM = "Instagram",
779
+ LINKED_IN = "LinkedIn",
780
+ MEDIUM = "Medium",
781
+ REDDIT = "Reddit",
782
+ SUPPORT = "Support",
783
+ TELEGRAM = "Telegram",
784
+ TIK_TOK = "TikTok",
785
+ TWITTER = "Twitter",
786
+ WEBSITE = "Website",
787
+ WHITEPAPER = "Whitepaper",
788
+ YOUTUBE = "Youtube"
789
+ }
790
+
791
+ type ResourceLink = {
792
+ type: ResourceLinkType;
793
+ url: string;
794
+ };
795
+
796
+ type Erc1155Contract = {
797
+ /**
798
+ * The contract name.
799
+ */
800
+ name?: string;
801
+ description?: string;
802
+ officialSite?: string;
803
+ email?: string;
804
+ logoAsset?: ImageAsset;
805
+ bannerAsset?: ImageAsset;
806
+ color?: string;
807
+ resourceLinks?: Array<ResourceLink>;
808
+ tags?: Array<string>;
809
+ /**
810
+ * A wallet or contract address in mixed-case checksum encoding.
811
+ */
812
+ address: string;
813
+ deploymentDetails: ContractDeploymentDetails;
814
+ ercType: Erc1155Contract.ercType;
815
+ /**
816
+ * The contract symbol.
817
+ */
818
+ symbol?: string;
819
+ pricingProviders?: PricingProviders;
820
+ };
821
+ declare namespace Erc1155Contract {
822
+ enum ercType {
823
+ ERC_1155 = "ERC-1155"
824
+ }
825
+ }
826
+
827
+ type Erc20Contract = {
828
+ /**
829
+ * The contract name.
830
+ */
831
+ name?: string;
832
+ description?: string;
833
+ officialSite?: string;
834
+ email?: string;
835
+ logoAsset?: ImageAsset;
836
+ bannerAsset?: ImageAsset;
837
+ color?: string;
838
+ resourceLinks?: Array<ResourceLink>;
839
+ tags?: Array<string>;
840
+ /**
841
+ * A wallet or contract address in mixed-case checksum encoding.
842
+ */
843
+ address: string;
844
+ deploymentDetails: ContractDeploymentDetails;
845
+ ercType: Erc20Contract.ercType;
846
+ /**
847
+ * The contract symbol.
848
+ */
849
+ symbol?: string;
850
+ /**
851
+ * The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
852
+ */
853
+ decimals: number;
854
+ pricingProviders?: PricingProviders;
855
+ };
856
+ declare namespace Erc20Contract {
857
+ enum ercType {
858
+ ERC_20 = "ERC-20"
859
+ }
860
+ }
861
+
862
+ type Erc721Contract = {
863
+ /**
864
+ * The contract name.
865
+ */
866
+ name?: string;
867
+ description?: string;
868
+ officialSite?: string;
869
+ email?: string;
870
+ logoAsset?: ImageAsset;
871
+ bannerAsset?: ImageAsset;
872
+ color?: string;
873
+ resourceLinks?: Array<ResourceLink>;
874
+ tags?: Array<string>;
875
+ /**
876
+ * A wallet or contract address in mixed-case checksum encoding.
877
+ */
878
+ address: string;
879
+ deploymentDetails: ContractDeploymentDetails;
880
+ ercType: Erc721Contract.ercType;
881
+ /**
882
+ * The contract symbol.
883
+ */
884
+ symbol?: string;
885
+ };
886
+ declare namespace Erc721Contract {
887
+ enum ercType {
888
+ ERC_721 = "ERC-721"
889
+ }
890
+ }
891
+
892
+ type UnknownContract = {
893
+ /**
894
+ * The contract name.
895
+ */
896
+ name?: string;
897
+ description?: string;
898
+ officialSite?: string;
899
+ email?: string;
900
+ logoAsset?: ImageAsset;
901
+ bannerAsset?: ImageAsset;
902
+ color?: string;
903
+ resourceLinks?: Array<ResourceLink>;
904
+ tags?: Array<string>;
905
+ /**
906
+ * A wallet or contract address in mixed-case checksum encoding.
907
+ */
908
+ address: string;
909
+ deploymentDetails: ContractDeploymentDetails;
910
+ ercType: UnknownContract.ercType;
911
+ };
912
+ declare namespace UnknownContract {
913
+ enum ercType {
914
+ UNKNOWN = "UNKNOWN"
915
+ }
916
+ }
917
+
918
+ declare class EvmContractsService {
919
+ readonly httpRequest: BaseHttpRequest;
920
+ constructor(httpRequest: BaseHttpRequest);
921
+ /**
922
+ * Get contract metadata
923
+ * Gets metadata about the contract at the given address.
924
+ * @returns any
925
+ * @throws ApiError
926
+ */
927
+ getContractMetadata({ chainId, address, }: {
928
+ /**
929
+ * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
930
+ */
931
+ chainId: string;
932
+ /**
933
+ * Contract address on the relevant chain.
934
+ */
935
+ address: string;
936
+ }): CancelablePromise<(Erc721Contract | Erc1155Contract | Erc20Contract | UnknownContract)>;
937
+ }
938
+
744
939
  type Erc1155Token = {
745
940
  /**
746
941
  * A wallet or contract address in mixed-case checksum encoding.
@@ -999,184 +1194,12 @@ type GetTransactionResponse = {
999
1194
  nativeTransaction: FullNativeTransactionDetails;
1000
1195
  };
1001
1196
 
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
1197
  type ListContractsResponse = {
1175
1198
  /**
1176
1199
  * 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
1200
  */
1178
1201
  nextPageToken?: string;
1179
- contracts: Array<(UnknownContract | Erc20Contract | Erc721Contract | Erc1155Contract)>;
1202
+ contracts: Array<(Erc721Contract | Erc1155Contract | Erc20Contract | UnknownContract)>;
1180
1203
  };
1181
1204
 
1182
1205
  type Erc1155Transfer = {
@@ -1773,22 +1796,6 @@ declare class NfTsService {
1773
1796
  */
1774
1797
  tokenId: string;
1775
1798
  }): 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
1799
  }
1793
1800
 
1794
1801
  type EvmNetworkOptions = {
@@ -1981,10 +1988,15 @@ type ActiveDelegatorDetails = {
1981
1988
  delegationFee: string;
1982
1989
  startTimestamp: number;
1983
1990
  endTimestamp: number;
1984
- delegationStatus: DelegationStatusType;
1985
1991
  estimatedGrossReward: string;
1986
1992
  estimatedNetReward: string;
1993
+ delegationStatus: ActiveDelegatorDetails.delegationStatus;
1987
1994
  };
1995
+ declare namespace ActiveDelegatorDetails {
1996
+ enum delegationStatus {
1997
+ ACTIVE = "active"
1998
+ }
1999
+ }
1988
2000
 
1989
2001
  type CompletedDelegatorDetails = {
1990
2002
  txHash: string;
@@ -1993,10 +2005,15 @@ type CompletedDelegatorDetails = {
1993
2005
  delegationFee: string;
1994
2006
  startTimestamp: number;
1995
2007
  endTimestamp: number;
1996
- delegationStatus: DelegationStatusType;
1997
2008
  grossReward: string;
1998
2009
  netReward: string;
2010
+ delegationStatus: CompletedDelegatorDetails.delegationStatus;
1999
2011
  };
2012
+ declare namespace CompletedDelegatorDetails {
2013
+ enum delegationStatus {
2014
+ COMPLETED = "completed"
2015
+ }
2016
+ }
2000
2017
 
2001
2018
  type PendingDelegatorDetails = {
2002
2019
  txHash: string;
@@ -2005,10 +2022,15 @@ type PendingDelegatorDetails = {
2005
2022
  delegationFee: string;
2006
2023
  startTimestamp: number;
2007
2024
  endTimestamp: number;
2008
- delegationStatus: DelegationStatusType;
2009
2025
  estimatedGrossReward: string;
2010
2026
  estimatedNetReward: string;
2027
+ delegationStatus: PendingDelegatorDetails.delegationStatus;
2011
2028
  };
2029
+ declare namespace PendingDelegatorDetails {
2030
+ enum delegationStatus {
2031
+ PENDING = "pending"
2032
+ }
2033
+ }
2012
2034
 
2013
2035
  type ListDelegatorDetailsResponse = {
2014
2036
  /**
@@ -2048,19 +2070,12 @@ type Rewards = {
2048
2070
  delegationRewardAmount: string;
2049
2071
  };
2050
2072
 
2051
- declare enum ValidationStatusType {
2052
- COMPLETED = "completed",
2053
- ACTIVE = "active",
2054
- PENDING = "pending"
2055
- }
2056
-
2057
2073
  type ActiveValidatorDetails = {
2058
2074
  nodeId: string;
2059
2075
  amountStaked: string;
2060
2076
  delegationFee: string;
2061
2077
  startTimestamp: number;
2062
2078
  endTimestamp: number;
2063
- validationStatus: ValidationStatusType;
2064
2079
  stakePercentage: number;
2065
2080
  delegatorCount: number;
2066
2081
  amountDelegated: string;
@@ -2068,7 +2083,13 @@ type ActiveValidatorDetails = {
2068
2083
  avalancheGoVersion: string;
2069
2084
  delegationCapacity: string;
2070
2085
  potentialRewards: Rewards;
2086
+ validationStatus: ActiveValidatorDetails.validationStatus;
2071
2087
  };
2088
+ declare namespace ActiveValidatorDetails {
2089
+ enum validationStatus {
2090
+ ACTIVE = "active"
2091
+ }
2092
+ }
2072
2093
 
2073
2094
  type CompletedValidatorDetails = {
2074
2095
  nodeId: string;
@@ -2076,10 +2097,15 @@ type CompletedValidatorDetails = {
2076
2097
  delegationFee: string;
2077
2098
  startTimestamp: number;
2078
2099
  endTimestamp: number;
2079
- validationStatus: ValidationStatusType;
2080
2100
  delegatorCount: number;
2081
2101
  rewards: Rewards;
2102
+ validationStatus: CompletedValidatorDetails.validationStatus;
2082
2103
  };
2104
+ declare namespace CompletedValidatorDetails {
2105
+ enum validationStatus {
2106
+ COMPLETED = "completed"
2107
+ }
2108
+ }
2083
2109
 
2084
2110
  type PendingValidatorDetails = {
2085
2111
  nodeId: string;
@@ -2087,8 +2113,13 @@ type PendingValidatorDetails = {
2087
2113
  delegationFee: string;
2088
2114
  startTimestamp: number;
2089
2115
  endTimestamp: number;
2090
- validationStatus: ValidationStatusType;
2116
+ validationStatus: PendingValidatorDetails.validationStatus;
2091
2117
  };
2118
+ declare namespace PendingValidatorDetails {
2119
+ enum validationStatus {
2120
+ PENDING = "pending"
2121
+ }
2122
+ }
2092
2123
 
2093
2124
  type ListValidatorDetailsResponse = {
2094
2125
  /**
@@ -2106,6 +2137,12 @@ declare enum Network {
2106
2137
  FUJI = "fuji"
2107
2138
  }
2108
2139
 
2140
+ declare enum ValidationStatusType {
2141
+ COMPLETED = "completed",
2142
+ ACTIVE = "active",
2143
+ PENDING = "pending"
2144
+ }
2145
+
2109
2146
  type XChainAssetDetails = {
2110
2147
  /**
2111
2148
  * Unique ID for an asset.
@@ -3668,6 +3705,7 @@ declare class Glacier {
3668
3705
  readonly evmBalances: EvmBalancesService;
3669
3706
  readonly evmBlocks: EvmBlocksService;
3670
3707
  readonly evmChains: EvmChainsService;
3708
+ readonly evmContracts: EvmContractsService;
3671
3709
  readonly evmTransactions: EvmTransactionsService;
3672
3710
  readonly healthCheck: HealthCheckService;
3673
3711
  readonly nfTs: NfTsService;
@@ -3700,4 +3738,4 @@ declare class ApiError extends Error {
3700
3738
  constructor(request: ApiRequestOptions, response: ApiResult, message: string);
3701
3739
  }
3702
3740
 
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 };
3741
+ 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 };