@avalabs/glacier-sdk 2.8.0-alpha.16 → 2.8.0-alpha.160

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 (303) hide show
  1. package/README.md +10 -0
  2. package/dist/index.d.ts +4363 -3
  3. package/dist/index.js +2119 -155
  4. package/esm/generated/Glacier.d.ts +44 -0
  5. package/esm/generated/Glacier.js +71 -0
  6. package/esm/generated/core/ApiError.d.ts +13 -0
  7. package/esm/generated/core/ApiError.js +18 -0
  8. package/esm/generated/core/ApiRequestOptions.d.ts +15 -0
  9. package/esm/generated/core/ApiResult.d.ts +9 -0
  10. package/esm/generated/core/BaseHttpRequest.d.ts +11 -0
  11. package/esm/generated/core/BaseHttpRequest.js +7 -0
  12. package/esm/generated/core/CancelablePromise.d.ts +28 -0
  13. package/esm/generated/core/CancelablePromise.js +91 -0
  14. package/esm/generated/core/FetchHttpRequest.js +13 -0
  15. package/esm/generated/core/OpenAPI.d.ts +18 -0
  16. package/esm/generated/core/OpenAPI.js +13 -0
  17. package/esm/generated/core/request.js +227 -0
  18. package/esm/generated/models/ActiveDelegatorDetails.d.ts +19 -0
  19. package/esm/generated/models/ActiveDelegatorDetails.js +8 -0
  20. package/esm/generated/models/ActiveValidatorDetails.d.ts +28 -0
  21. package/esm/generated/models/ActiveValidatorDetails.js +8 -0
  22. package/esm/generated/models/AddressActivityMetadata.d.ts +12 -0
  23. package/esm/generated/models/Asset.d.ts +28 -0
  24. package/esm/generated/models/Blockchain.d.ts +10 -0
  25. package/esm/generated/models/BlockchainId.d.ts +12 -0
  26. package/esm/generated/models/BlockchainId.js +13 -0
  27. package/esm/generated/models/BlockchainIds.d.ts +9 -0
  28. package/esm/generated/models/BlockchainIds.js +10 -0
  29. package/esm/generated/models/BlockchainInfo.d.ts +5 -0
  30. package/esm/generated/models/CChainAtomicBalances.d.ts +8 -0
  31. package/esm/generated/models/CChainExportTransaction.d.ts +58 -0
  32. package/esm/generated/models/CChainExportTransaction.js +8 -0
  33. package/esm/generated/models/CChainImportTransaction.d.ts +58 -0
  34. package/esm/generated/models/CChainImportTransaction.js +8 -0
  35. package/esm/generated/models/CChainSharedAssetBalance.d.ts +30 -0
  36. package/esm/generated/models/ChainAddressChainIdMap.d.ts +8 -0
  37. package/esm/generated/models/ChainAddressChainIdMapListResponse.d.ts +7 -0
  38. package/esm/generated/models/ChainInfo.d.ts +28 -0
  39. package/esm/generated/models/ChainStatus.d.ts +6 -0
  40. package/esm/generated/models/ChainStatus.js +7 -0
  41. package/esm/generated/models/CompletedDelegatorDetails.d.ts +19 -0
  42. package/esm/generated/models/CompletedDelegatorDetails.js +8 -0
  43. package/esm/generated/models/CompletedValidatorDetails.d.ts +21 -0
  44. package/esm/generated/models/CompletedValidatorDetails.js +8 -0
  45. package/esm/generated/models/ContractDeploymentDetails.d.ts +13 -0
  46. package/esm/generated/models/ContractSubmissionBody.d.ts +10 -0
  47. package/esm/generated/models/ContractSubmissionErc1155.d.ts +31 -0
  48. package/esm/generated/models/ContractSubmissionErc1155.js +8 -0
  49. package/esm/generated/models/ContractSubmissionErc20.d.ts +31 -0
  50. package/esm/generated/models/ContractSubmissionErc20.js +8 -0
  51. package/esm/generated/models/ContractSubmissionErc721.d.ts +29 -0
  52. package/esm/generated/models/ContractSubmissionErc721.js +8 -0
  53. package/esm/generated/models/ContractSubmissionUnknown.d.ts +25 -0
  54. package/esm/generated/models/ContractSubmissionUnknown.js +8 -0
  55. package/esm/generated/models/CreateEvmTransactionExportRequest.d.ts +23 -0
  56. package/esm/generated/models/CreateEvmTransactionExportRequest.js +8 -0
  57. package/esm/generated/models/CreatePrimaryNetworkTransactionExportRequest.d.ts +23 -0
  58. package/esm/generated/models/CreatePrimaryNetworkTransactionExportRequest.js +8 -0
  59. package/esm/generated/models/CurrencyCode.d.ts +18 -0
  60. package/esm/generated/models/CurrencyCode.js +19 -0
  61. package/esm/generated/models/DelegationStatusType.d.ts +7 -0
  62. package/esm/generated/models/DelegationStatusType.js +8 -0
  63. package/esm/generated/models/DelegatorsDetails.d.ts +6 -0
  64. package/esm/generated/models/DeliveredSourceNotIndexedTeleporterMessage.d.ts +24 -0
  65. package/esm/generated/models/DeliveredSourceNotIndexedTeleporterMessage.js +8 -0
  66. package/esm/generated/models/DeliveredTeleporterMessage.d.ts +26 -0
  67. package/esm/generated/models/DeliveredTeleporterMessage.js +8 -0
  68. package/esm/generated/models/EVMInput.d.ts +19 -0
  69. package/esm/generated/models/EVMOutput.d.ts +14 -0
  70. package/esm/generated/models/Erc1155Contract.d.ts +37 -0
  71. package/esm/generated/models/Erc1155Contract.js +8 -0
  72. package/esm/generated/models/Erc1155Token.d.ts +19 -0
  73. package/esm/generated/models/Erc1155Token.js +8 -0
  74. package/esm/generated/models/Erc1155TokenBalance.d.ts +27 -0
  75. package/esm/generated/models/Erc1155TokenBalance.js +8 -0
  76. package/esm/generated/models/Erc1155TokenMetadata.d.ts +20 -0
  77. package/esm/generated/models/Erc1155Transfer.d.ts +28 -0
  78. package/esm/generated/models/Erc1155TransferDetails.d.ts +12 -0
  79. package/esm/generated/models/Erc20Contract.d.ts +41 -0
  80. package/esm/generated/models/Erc20Contract.js +8 -0
  81. package/esm/generated/models/Erc20Token.d.ts +36 -0
  82. package/esm/generated/models/Erc20Token.js +8 -0
  83. package/esm/generated/models/Erc20TokenBalance.d.ts +48 -0
  84. package/esm/generated/models/Erc20TokenBalance.js +8 -0
  85. package/esm/generated/models/Erc20Transfer.d.ts +28 -0
  86. package/esm/generated/models/Erc20TransferDetails.d.ts +12 -0
  87. package/esm/generated/models/Erc721Contract.d.ts +35 -0
  88. package/esm/generated/models/Erc721Contract.js +8 -0
  89. package/esm/generated/models/Erc721Token.d.ts +31 -0
  90. package/esm/generated/models/Erc721Token.js +8 -0
  91. package/esm/generated/models/Erc721TokenBalance.d.ts +35 -0
  92. package/esm/generated/models/Erc721TokenBalance.js +8 -0
  93. package/esm/generated/models/Erc721TokenMetadata.d.ts +19 -0
  94. package/esm/generated/models/Erc721Transfer.d.ts +27 -0
  95. package/esm/generated/models/Erc721TransferDetails.d.ts +11 -0
  96. package/esm/generated/models/EventType.d.ts +5 -0
  97. package/esm/generated/models/EventType.js +6 -0
  98. package/esm/generated/models/EvmBlock.d.ts +45 -0
  99. package/esm/generated/models/EvmNetworkOptions.d.ts +6 -0
  100. package/esm/generated/models/FullNativeTransactionDetails.d.ts +62 -0
  101. package/esm/generated/models/GetChainResponse.d.ts +28 -0
  102. package/esm/generated/models/GetEvmBlockResponse.d.ts +45 -0
  103. package/esm/generated/models/GetNativeBalanceResponse.d.ts +10 -0
  104. package/esm/generated/models/GetNetworkDetailsResponse.d.ts +9 -0
  105. package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +16 -0
  106. package/esm/generated/models/GetTransactionResponse.d.ts +29 -0
  107. package/esm/generated/models/HistoricalReward.d.ts +24 -0
  108. package/esm/generated/models/ImageAsset.d.ts +9 -0
  109. package/esm/generated/models/InternalTransaction.d.ts +33 -0
  110. package/esm/generated/models/InternalTransactionDetails.d.ts +17 -0
  111. package/esm/generated/models/InternalTransactionOpCall.d.ts +11 -0
  112. package/esm/generated/models/InternalTransactionOpCall.js +12 -0
  113. package/esm/generated/models/ListBlockchainsResponse.d.ts +11 -0
  114. package/esm/generated/models/ListCChainAtomicBalancesResponse.d.ts +9 -0
  115. package/esm/generated/models/ListCChainAtomicTransactionsResponse.d.ts +14 -0
  116. package/esm/generated/models/ListChainsResponse.d.ts +7 -0
  117. package/esm/generated/models/ListCollectibleBalancesResponse.d.ts +15 -0
  118. package/esm/generated/models/ListContractsResponse.d.ts +14 -0
  119. package/esm/generated/models/ListDelegatorDetailsResponse.d.ts +16 -0
  120. package/esm/generated/models/ListErc1155BalancesResponse.d.ts +14 -0
  121. package/esm/generated/models/ListErc1155TransactionsResponse.d.ts +11 -0
  122. package/esm/generated/models/ListErc20BalancesResponse.d.ts +14 -0
  123. package/esm/generated/models/ListErc20TransactionsResponse.d.ts +11 -0
  124. package/esm/generated/models/ListErc721BalancesResponse.d.ts +14 -0
  125. package/esm/generated/models/ListErc721TransactionsResponse.d.ts +11 -0
  126. package/esm/generated/models/ListEvmBlocksResponse.d.ts +11 -0
  127. package/esm/generated/models/ListHistoricalRewardsResponse.d.ts +11 -0
  128. package/esm/generated/models/ListInternalTransactionsResponse.d.ts +11 -0
  129. package/esm/generated/models/ListNativeTransactionsResponse.d.ts +11 -0
  130. package/esm/generated/models/ListNftTokens.d.ts +12 -0
  131. package/esm/generated/models/ListPChainBalancesResponse.d.ts +9 -0
  132. package/esm/generated/models/ListPChainTransactionsResponse.d.ts +13 -0
  133. package/esm/generated/models/ListPChainUtxosResponse.d.ts +13 -0
  134. package/esm/generated/models/ListPendingRewardsResponse.d.ts +11 -0
  135. package/esm/generated/models/ListPrimaryNetworkBlocksResponse.d.ts +13 -0
  136. package/esm/generated/models/ListSubnetsResponse.d.ts +11 -0
  137. package/esm/generated/models/ListTransactionDetailsResponse.d.ts +11 -0
  138. package/esm/generated/models/ListTransfersResponse.d.ts +13 -0
  139. package/esm/generated/models/ListUtxosResponse.d.ts +13 -0
  140. package/esm/generated/models/ListValidatorDetailsResponse.d.ts +17 -0
  141. package/esm/generated/models/ListWebhooksResponse.d.ts +11 -0
  142. package/esm/generated/models/ListXChainBalancesResponse.d.ts +9 -0
  143. package/esm/generated/models/ListXChainTransactionsResponse.d.ts +14 -0
  144. package/esm/generated/models/ListXChainVerticesResponse.d.ts +13 -0
  145. package/esm/generated/models/Method.d.ts +18 -0
  146. package/esm/generated/models/Money.d.ts +14 -0
  147. package/esm/generated/models/NativeTokenBalance.d.ts +38 -0
  148. package/esm/generated/models/NativeTransaction.d.ts +55 -0
  149. package/esm/generated/models/Network.d.ts +6 -0
  150. package/esm/generated/models/Network.js +7 -0
  151. package/esm/generated/models/NetworkToken.d.ts +21 -0
  152. package/esm/generated/models/NetworkTokenDetails.d.ts +16 -0
  153. package/esm/generated/models/NetworkType.d.ts +6 -0
  154. package/esm/generated/models/NetworkType.js +7 -0
  155. package/esm/generated/models/NextPageToken.d.ts +8 -0
  156. package/esm/generated/models/NftTokenMetadataStatus.d.ts +15 -0
  157. package/esm/generated/models/NftTokenMetadataStatus.js +16 -0
  158. package/esm/generated/models/OperationStatus.d.ts +8 -0
  159. package/esm/generated/models/OperationStatus.js +9 -0
  160. package/esm/generated/models/OperationStatusCode.d.ts +7 -0
  161. package/esm/generated/models/OperationStatusCode.js +8 -0
  162. package/esm/generated/models/OperationStatusResponse.d.ts +15 -0
  163. package/esm/generated/models/OperationType.d.ts +6 -0
  164. package/esm/generated/models/OperationType.js +7 -0
  165. package/esm/generated/models/PChainBalance.d.ts +39 -0
  166. package/esm/generated/models/PChainId.d.ts +6 -0
  167. package/esm/generated/models/PChainId.js +7 -0
  168. package/esm/generated/models/PChainSharedAsset.d.ts +30 -0
  169. package/esm/generated/models/PChainTransaction.d.ts +72 -0
  170. package/esm/generated/models/PChainTransactionType.d.ts +18 -0
  171. package/esm/generated/models/PChainTransactionType.js +19 -0
  172. package/esm/generated/models/PChainUtxo.d.ts +51 -0
  173. package/esm/generated/models/PendingDelegatorDetails.d.ts +19 -0
  174. package/esm/generated/models/PendingDelegatorDetails.js +8 -0
  175. package/esm/generated/models/PendingReward.d.ts +22 -0
  176. package/esm/generated/models/PendingTeleporterMessage.d.ts +24 -0
  177. package/esm/generated/models/PendingTeleporterMessage.js +8 -0
  178. package/esm/generated/models/PendingValidatorDetails.d.ts +17 -0
  179. package/esm/generated/models/PendingValidatorDetails.js +8 -0
  180. package/esm/generated/models/PricingProviders.d.ts +5 -0
  181. package/esm/generated/models/PrimaryNetwork.d.ts +6 -0
  182. package/esm/generated/models/PrimaryNetwork.js +7 -0
  183. package/esm/generated/models/PrimaryNetworkBlock.d.ts +16 -0
  184. package/esm/generated/models/PrimaryNetworkChainInfo.d.ts +9 -0
  185. package/esm/generated/models/PrimaryNetworkChainName.d.ts +7 -0
  186. package/esm/generated/models/PrimaryNetworkChainName.js +8 -0
  187. package/esm/generated/models/PrimaryNetworkOptions.d.ts +7 -0
  188. package/esm/generated/models/PrimaryNetworkTxType.d.ts +21 -0
  189. package/esm/generated/models/PrimaryNetworkTxType.js +22 -0
  190. package/esm/generated/models/ProposerDetails.d.ts +9 -0
  191. package/esm/generated/models/RegisterWebhookRequest.d.ts +14 -0
  192. package/esm/generated/models/RemovedValidatorDetails.d.ts +19 -0
  193. package/esm/generated/models/RemovedValidatorDetails.js +8 -0
  194. package/esm/generated/models/ResourceLink.d.ts +8 -0
  195. package/esm/generated/models/ResourceLinkType.d.ts +22 -0
  196. package/esm/generated/models/ResourceLinkType.js +23 -0
  197. package/esm/generated/models/RewardType.d.ts +7 -0
  198. package/esm/generated/models/RewardType.js +8 -0
  199. package/esm/generated/models/Rewards.d.ts +8 -0
  200. package/esm/generated/models/RichAddress.d.ts +24 -0
  201. package/esm/generated/models/SharedSecretsResponse.d.ts +5 -0
  202. package/esm/generated/models/SortOrder.d.ts +6 -0
  203. package/esm/generated/models/SortOrder.js +7 -0
  204. package/esm/generated/models/StakingDistribution.d.ts +7 -0
  205. package/esm/generated/models/Subnet.d.ts +13 -0
  206. package/esm/generated/models/TeleporterDestinationTransaction.d.ts +9 -0
  207. package/esm/generated/models/TeleporterRewardDetails.d.ts +37 -0
  208. package/esm/generated/models/TeleporterRewardDetails.js +8 -0
  209. package/esm/generated/models/TeleporterSourceTransaction.d.ts +7 -0
  210. package/esm/generated/models/TransactionDetails.d.ts +30 -0
  211. package/esm/generated/models/TransactionExportMetadata.d.ts +15 -0
  212. package/esm/generated/models/TransactionMethodType.d.ts +7 -0
  213. package/esm/generated/models/TransactionMethodType.js +8 -0
  214. package/esm/generated/models/TransactionStatus.d.ts +6 -0
  215. package/esm/generated/models/TransactionStatus.js +7 -0
  216. package/esm/generated/models/TransactionVertexDetail.d.ts +16 -0
  217. package/esm/generated/models/UnknownContract.d.ts +31 -0
  218. package/esm/generated/models/UnknownContract.js +8 -0
  219. package/esm/generated/models/UpdateContractResponse.d.ts +10 -0
  220. package/esm/generated/models/UtilityAddresses.d.ts +5 -0
  221. package/esm/generated/models/Utxo.d.ts +68 -0
  222. package/esm/generated/models/UtxoCredential.d.ts +12 -0
  223. package/esm/generated/models/UtxoType.d.ts +6 -0
  224. package/esm/generated/models/UtxoType.js +7 -0
  225. package/esm/generated/models/ValidationStatusType.d.ts +8 -0
  226. package/esm/generated/models/ValidationStatusType.js +9 -0
  227. package/esm/generated/models/ValidatorHealthDetails.d.ts +20 -0
  228. package/esm/generated/models/ValidatorsDetails.d.ts +11 -0
  229. package/esm/generated/models/VmName.d.ts +7 -0
  230. package/esm/generated/models/VmName.js +8 -0
  231. package/esm/generated/models/WebhookResponse.d.ts +15 -0
  232. package/esm/generated/models/WebhookStatus.d.ts +6 -0
  233. package/esm/generated/models/WebhookStatus.js +7 -0
  234. package/esm/generated/models/WebhookStatusType.d.ts +6 -0
  235. package/esm/generated/models/WebhookStatusType.js +7 -0
  236. package/esm/generated/models/XChainAssetBalance.d.ts +29 -0
  237. package/esm/generated/models/XChainAssetDetails.d.ts +32 -0
  238. package/esm/generated/models/XChainBalances.d.ts +17 -0
  239. package/esm/generated/models/XChainId.d.ts +7 -0
  240. package/esm/generated/models/XChainId.js +8 -0
  241. package/esm/generated/models/XChainLinearTransaction.d.ts +68 -0
  242. package/esm/generated/models/XChainLinearTransaction.js +9 -0
  243. package/esm/generated/models/XChainNonLinearTransaction.d.ts +65 -0
  244. package/esm/generated/models/XChainNonLinearTransaction.js +9 -0
  245. package/esm/generated/models/XChainSharedAssetBalance.d.ts +30 -0
  246. package/esm/generated/models/XChainTransactionType.d.ts +10 -0
  247. package/esm/generated/models/XChainTransactionType.js +11 -0
  248. package/esm/generated/models/XChainVertex.d.ts +12 -0
  249. package/esm/generated/services/DefaultService.d.ts +67 -0
  250. package/esm/generated/services/DefaultService.js +55 -0
  251. package/esm/generated/services/EvmBalancesService.d.ts +177 -0
  252. package/esm/generated/services/EvmBalancesService.js +116 -0
  253. package/esm/generated/services/EvmBlocksService.d.ts +47 -0
  254. package/esm/generated/services/EvmBlocksService.js +37 -0
  255. package/esm/generated/services/EvmChainsService.d.ts +36 -0
  256. package/esm/generated/services/EvmChainsService.js +29 -0
  257. package/esm/generated/services/EvmContractsService.d.ts +48 -0
  258. package/esm/generated/services/EvmContractsService.js +36 -0
  259. package/esm/generated/services/EvmTransactionsService.d.ts +353 -0
  260. package/esm/generated/services/EvmTransactionsService.js +251 -0
  261. package/esm/generated/services/HealthCheckService.d.ts +20 -0
  262. package/esm/generated/services/HealthCheckService.js +16 -0
  263. package/esm/generated/services/NfTsService.d.ts +76 -0
  264. package/esm/generated/services/NfTsService.js +56 -0
  265. package/esm/generated/services/OperationsService.d.ts +35 -0
  266. package/esm/generated/services/OperationsService.js +28 -0
  267. package/esm/generated/services/PrimaryNetworkBalancesService.d.ts +40 -0
  268. package/esm/generated/services/PrimaryNetworkBalancesService.js +26 -0
  269. package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +85 -0
  270. package/esm/generated/services/PrimaryNetworkBlocksService.js +62 -0
  271. package/esm/generated/services/PrimaryNetworkRewardsService.d.ts +77 -0
  272. package/esm/generated/services/PrimaryNetworkRewardsService.js +53 -0
  273. package/esm/generated/services/PrimaryNetworkService.d.ts +245 -0
  274. package/esm/generated/services/PrimaryNetworkService.js +171 -0
  275. package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +175 -0
  276. package/esm/generated/services/PrimaryNetworkTransactionsService.js +107 -0
  277. package/esm/generated/services/PrimaryNetworkUtxOsService.d.ts +54 -0
  278. package/esm/generated/services/PrimaryNetworkUtxOsService.js +34 -0
  279. package/esm/generated/services/PrimaryNetworkVerticesService.d.ts +90 -0
  280. package/esm/generated/services/PrimaryNetworkVerticesService.js +64 -0
  281. package/esm/generated/services/TeleporterService.d.ts +65 -0
  282. package/esm/generated/services/TeleporterService.js +43 -0
  283. package/esm/index.d.ts +192 -0
  284. package/esm/index.js +83 -0
  285. package/package.json +11 -20
  286. package/.eslintrc.js +0 -3
  287. package/CHANGELOG.md +0 -256
  288. package/__tests__/glacier-sdk.test.js +0 -7
  289. package/dist/index.d.ts.map +0 -1
  290. package/dist/index.js.map +0 -1
  291. package/dist/src/generated/models.d.ts +0 -385
  292. package/dist/src/generated/models.d.ts.map +0 -1
  293. package/dist/src/glacierClient.d.ts +0 -93
  294. package/dist/src/glacierClient.d.ts.map +0 -1
  295. package/dist/src/types.d.ts +0 -13
  296. package/dist/src/types.d.ts.map +0 -1
  297. package/index.ts +0 -2
  298. package/rollup.config.js +0 -33
  299. package/src/generated/models.ts +0 -460
  300. package/src/glacierClient.ts +0 -190
  301. package/src/types.ts +0 -6
  302. package/swagger/generateModels.js +0 -40
  303. package/tsconfig.json +0 -7
@@ -0,0 +1,11 @@
1
+ import { HistoricalReward } from './HistoricalReward.js';
2
+
3
+ type ListHistoricalRewardsResponse = {
4
+ /**
5
+ * 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.
6
+ */
7
+ nextPageToken?: string;
8
+ historicalRewards: Array<HistoricalReward>;
9
+ };
10
+
11
+ export { ListHistoricalRewardsResponse };
@@ -0,0 +1,11 @@
1
+ import { InternalTransaction } from './InternalTransaction.js';
2
+
3
+ type ListInternalTransactionsResponse = {
4
+ /**
5
+ * 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.
6
+ */
7
+ nextPageToken?: string;
8
+ transactions: Array<InternalTransaction>;
9
+ };
10
+
11
+ export { ListInternalTransactionsResponse };
@@ -0,0 +1,11 @@
1
+ import { NativeTransaction } from './NativeTransaction.js';
2
+
3
+ type ListNativeTransactionsResponse = {
4
+ /**
5
+ * 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.
6
+ */
7
+ nextPageToken?: string;
8
+ transactions: Array<NativeTransaction>;
9
+ };
10
+
11
+ export { ListNativeTransactionsResponse };
@@ -0,0 +1,12 @@
1
+ import { Erc1155Token } from './Erc1155Token.js';
2
+ import { Erc721Token } from './Erc721Token.js';
3
+
4
+ type ListNftTokens = {
5
+ /**
6
+ * 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.
7
+ */
8
+ nextPageToken?: string;
9
+ tokens: (Array<Erc721Token> | Array<Erc1155Token>);
10
+ };
11
+
12
+ export { ListNftTokens };
@@ -0,0 +1,9 @@
1
+ import { PChainBalance } from './PChainBalance.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
3
+
4
+ type ListPChainBalancesResponse = {
5
+ balances: PChainBalance;
6
+ chainInfo: PrimaryNetworkChainInfo;
7
+ };
8
+
9
+ export { ListPChainBalancesResponse };
@@ -0,0 +1,13 @@
1
+ import { PChainTransaction } from './PChainTransaction.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
3
+
4
+ type ListPChainTransactionsResponse = {
5
+ /**
6
+ * 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.
7
+ */
8
+ nextPageToken?: string;
9
+ transactions: Array<PChainTransaction>;
10
+ chainInfo: PrimaryNetworkChainInfo;
11
+ };
12
+
13
+ export { ListPChainTransactionsResponse };
@@ -0,0 +1,13 @@
1
+ import { PChainUtxo } from './PChainUtxo.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
3
+
4
+ type ListPChainUtxosResponse = {
5
+ /**
6
+ * 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.
7
+ */
8
+ nextPageToken?: string;
9
+ utxos: Array<PChainUtxo>;
10
+ chainInfo: PrimaryNetworkChainInfo;
11
+ };
12
+
13
+ export { ListPChainUtxosResponse };
@@ -0,0 +1,11 @@
1
+ import { PendingReward } from './PendingReward.js';
2
+
3
+ type ListPendingRewardsResponse = {
4
+ /**
5
+ * 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.
6
+ */
7
+ nextPageToken?: string;
8
+ pendingRewards: Array<PendingReward>;
9
+ };
10
+
11
+ export { ListPendingRewardsResponse };
@@ -0,0 +1,13 @@
1
+ import { PrimaryNetworkBlock } from './PrimaryNetworkBlock.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
3
+
4
+ type ListPrimaryNetworkBlocksResponse = {
5
+ /**
6
+ * 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.
7
+ */
8
+ nextPageToken?: string;
9
+ blocks: Array<PrimaryNetworkBlock>;
10
+ chainInfo: PrimaryNetworkChainInfo;
11
+ };
12
+
13
+ export { ListPrimaryNetworkBlocksResponse };
@@ -0,0 +1,11 @@
1
+ import { Subnet } from './Subnet.js';
2
+
3
+ type ListSubnetsResponse = {
4
+ /**
5
+ * 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.
6
+ */
7
+ nextPageToken?: string;
8
+ subnets: Array<Subnet>;
9
+ };
10
+
11
+ export { ListSubnetsResponse };
@@ -0,0 +1,11 @@
1
+ import { TransactionDetails } from './TransactionDetails.js';
2
+
3
+ type ListTransactionDetailsResponse = {
4
+ /**
5
+ * 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.
6
+ */
7
+ nextPageToken?: string;
8
+ transactions: Array<TransactionDetails>;
9
+ };
10
+
11
+ export { ListTransactionDetailsResponse };
@@ -0,0 +1,13 @@
1
+ import { Erc1155Transfer } from './Erc1155Transfer.js';
2
+ import { Erc20Transfer } from './Erc20Transfer.js';
3
+ import { Erc721Transfer } from './Erc721Transfer.js';
4
+
5
+ type ListTransfersResponse = {
6
+ /**
7
+ * 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.
8
+ */
9
+ nextPageToken?: string;
10
+ transfers: (Array<Erc20Transfer> | Array<Erc721Transfer> | Array<Erc1155Transfer>);
11
+ };
12
+
13
+ export { ListTransfersResponse };
@@ -0,0 +1,13 @@
1
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
2
+ import { Utxo } from './Utxo.js';
3
+
4
+ type ListUtxosResponse = {
5
+ /**
6
+ * 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.
7
+ */
8
+ nextPageToken?: string;
9
+ utxos: Array<Utxo>;
10
+ chainInfo: PrimaryNetworkChainInfo;
11
+ };
12
+
13
+ export { ListUtxosResponse };
@@ -0,0 +1,17 @@
1
+ import { ActiveValidatorDetails } from './ActiveValidatorDetails.js';
2
+ import { CompletedValidatorDetails } from './CompletedValidatorDetails.js';
3
+ import { PendingValidatorDetails } from './PendingValidatorDetails.js';
4
+ import { RemovedValidatorDetails } from './RemovedValidatorDetails.js';
5
+
6
+ type ListValidatorDetailsResponse = {
7
+ /**
8
+ * 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.
9
+ */
10
+ nextPageToken?: string;
11
+ /**
12
+ * The list of validator Details.
13
+ */
14
+ validators: Array<(CompletedValidatorDetails | ActiveValidatorDetails | PendingValidatorDetails | RemovedValidatorDetails)>;
15
+ };
16
+
17
+ export { ListValidatorDetailsResponse };
@@ -0,0 +1,11 @@
1
+ import { WebhookResponse } from './WebhookResponse.js';
2
+
3
+ type ListWebhooksResponse = {
4
+ /**
5
+ * 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.
6
+ */
7
+ nextPageToken?: string;
8
+ webhooks: Array<WebhookResponse>;
9
+ };
10
+
11
+ export { ListWebhooksResponse };
@@ -0,0 +1,9 @@
1
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
2
+ import { XChainBalances } from './XChainBalances.js';
3
+
4
+ type ListXChainBalancesResponse = {
5
+ balances: XChainBalances;
6
+ chainInfo: PrimaryNetworkChainInfo;
7
+ };
8
+
9
+ export { ListXChainBalancesResponse };
@@ -0,0 +1,14 @@
1
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
2
+ import { XChainLinearTransaction } from './XChainLinearTransaction.js';
3
+ import { XChainNonLinearTransaction } from './XChainNonLinearTransaction.js';
4
+
5
+ type ListXChainTransactionsResponse = {
6
+ /**
7
+ * 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.
8
+ */
9
+ nextPageToken?: string;
10
+ transactions: Array<(XChainNonLinearTransaction | XChainLinearTransaction)>;
11
+ chainInfo: PrimaryNetworkChainInfo;
12
+ };
13
+
14
+ export { ListXChainTransactionsResponse };
@@ -0,0 +1,13 @@
1
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
2
+ import { XChainVertex } from './XChainVertex.js';
3
+
4
+ type ListXChainVerticesResponse = {
5
+ /**
6
+ * 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.
7
+ */
8
+ nextPageToken?: string;
9
+ vertices: Array<XChainVertex>;
10
+ chainInfo: PrimaryNetworkChainInfo;
11
+ };
12
+
13
+ export { ListXChainVerticesResponse };
@@ -0,0 +1,18 @@
1
+ import { TransactionMethodType } from './TransactionMethodType.js';
2
+
3
+ type Method = {
4
+ /**
5
+ * The contract call type. NATIVE_TRANSFER indicates a transfer of the native token without any smart-contract interaction. CONTRACT_CALL indicates a smart-contract interaction. CONTRACT_CREATION indicates a smart-contract creation.
6
+ */
7
+ callType: TransactionMethodType;
8
+ /**
9
+ * The contract method hash identifier. The method hash is only set if the `callType` is `CONTRACT_CALL`.
10
+ */
11
+ methodHash: string;
12
+ /**
13
+ * The contract method name including parameter types. If the `callType` is `NATIVE_TRANSFER` this is set to 'Native Transfer'. If the `callType` is `CONTRACT_CREATION` this is set to 'Contract Created'.
14
+ */
15
+ methodName?: string;
16
+ };
17
+
18
+ export { Method };
@@ -0,0 +1,14 @@
1
+ import { CurrencyCode } from './CurrencyCode.js';
2
+
3
+ type Money = {
4
+ /**
5
+ * ISO 4217 currency code.
6
+ */
7
+ currencyCode: CurrencyCode;
8
+ /**
9
+ * Monetary value in base 10 decimals.
10
+ */
11
+ value: number;
12
+ };
13
+
14
+ export { Money };
@@ -0,0 +1,38 @@
1
+ import { Money } from './Money.js';
2
+
3
+ type NativeTokenBalance = {
4
+ /**
5
+ * The contract name.
6
+ */
7
+ name: string;
8
+ /**
9
+ * The contract symbol.
10
+ */
11
+ symbol: string;
12
+ /**
13
+ * The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
14
+ */
15
+ decimals: number;
16
+ /**
17
+ * The logo uri for the address.
18
+ */
19
+ logoUri?: string;
20
+ /**
21
+ * The evm chain id.
22
+ */
23
+ chainId: string;
24
+ /**
25
+ * The token price, if available.
26
+ */
27
+ price?: Money;
28
+ /**
29
+ * The address balance for the token, in units specified by the `decimals` value for the contract.
30
+ */
31
+ balance: string;
32
+ /**
33
+ * The monetary value of the balance, if a price is available for the token.
34
+ */
35
+ balanceValue?: Money;
36
+ };
37
+
38
+ export { NativeTokenBalance };
@@ -0,0 +1,55 @@
1
+ import { Method } from './Method.js';
2
+ import { RichAddress } from './RichAddress.js';
3
+
4
+ type NativeTransaction = {
5
+ /**
6
+ * The block number on the chain.
7
+ */
8
+ blockNumber: string;
9
+ /**
10
+ * The block finality timestamp.
11
+ */
12
+ blockTimestamp: number;
13
+ /**
14
+ * The block hash identifier.
15
+ */
16
+ blockHash: string;
17
+ /**
18
+ * The index at which the transaction occured in the block (0-indexed).
19
+ */
20
+ blockIndex: number;
21
+ /**
22
+ * The transaction hash identifier.
23
+ */
24
+ txHash: string;
25
+ /**
26
+ * The transaction status, which is either 0 (failed) or 1 (successful).
27
+ */
28
+ txStatus: string;
29
+ /**
30
+ * The transaction type.
31
+ */
32
+ txType: number;
33
+ /**
34
+ * The gas limit set for the transaction.
35
+ */
36
+ gasLimit: string;
37
+ /**
38
+ * The amount of gas used.
39
+ */
40
+ gasUsed: string;
41
+ /**
42
+ * The gas price denominated by the number of decimals of the native token.
43
+ */
44
+ gasPrice: string;
45
+ /**
46
+ * The nonce used by the sender of the transaction.
47
+ */
48
+ nonce: string;
49
+ from: RichAddress;
50
+ to: RichAddress;
51
+ method?: Method;
52
+ value: string;
53
+ };
54
+
55
+ export { NativeTransaction };
@@ -0,0 +1,6 @@
1
+ declare enum Network {
2
+ MAINNET = "mainnet",
3
+ FUJI = "fuji"
4
+ }
5
+
6
+ export { Network };
@@ -0,0 +1,7 @@
1
+ var Network = /* @__PURE__ */ ((Network2) => {
2
+ Network2["MAINNET"] = "mainnet";
3
+ Network2["FUJI"] = "fuji";
4
+ return Network2;
5
+ })(Network || {});
6
+
7
+ export { Network };
@@ -0,0 +1,21 @@
1
+ type NetworkToken = {
2
+ /**
3
+ * The contract name.
4
+ */
5
+ name: string;
6
+ /**
7
+ * The contract symbol.
8
+ */
9
+ symbol: string;
10
+ /**
11
+ * The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
12
+ */
13
+ decimals: number;
14
+ /**
15
+ * The logo uri for the address.
16
+ */
17
+ logoUri?: string;
18
+ description?: string;
19
+ };
20
+
21
+ export { NetworkToken };
@@ -0,0 +1,16 @@
1
+ import { Money } from './Money.js';
2
+ import { NetworkToken } from './NetworkToken.js';
3
+
4
+ type NetworkTokenDetails = {
5
+ networkToken: NetworkToken;
6
+ /**
7
+ * The current token price, if available.
8
+ */
9
+ currentPrice?: Money;
10
+ /**
11
+ * The historical token price at the time the transaction occured, if available. Note, this is only provided if the transaction occured more than 24 hours ago.
12
+ */
13
+ historicalPrice?: Money;
14
+ };
15
+
16
+ export { NetworkTokenDetails };
@@ -0,0 +1,6 @@
1
+ declare enum NetworkType {
2
+ MAINNET = "mainnet",
3
+ TESTNET = "testnet"
4
+ }
5
+
6
+ export { NetworkType };
@@ -0,0 +1,7 @@
1
+ var NetworkType = /* @__PURE__ */ ((NetworkType2) => {
2
+ NetworkType2["MAINNET"] = "mainnet";
3
+ NetworkType2["TESTNET"] = "testnet";
4
+ return NetworkType2;
5
+ })(NetworkType || {});
6
+
7
+ export { NetworkType };
@@ -0,0 +1,8 @@
1
+ type NextPageToken = {
2
+ /**
3
+ * 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.
4
+ */
5
+ nextPageToken?: string;
6
+ };
7
+
8
+ export { NextPageToken };
@@ -0,0 +1,15 @@
1
+ declare enum NftTokenMetadataStatus {
2
+ UNKNOWN = "UNKNOWN",
3
+ MISSING_TOKEN = "MISSING_TOKEN",
4
+ INVALID_TOKEN_URI = "INVALID_TOKEN_URI",
5
+ INVALID_TOKEN_URI_SCHEME = "INVALID_TOKEN_URI_SCHEME",
6
+ UNREACHABLE_TOKEN_URI = "UNREACHABLE_TOKEN_URI",
7
+ THROTTLED_TOKEN_URI = "THROTTLED_TOKEN_URI",
8
+ METADATA_CONTENT_TOO_LARGE = "METADATA_CONTENT_TOO_LARGE",
9
+ INVALID_METADATA = "INVALID_METADATA",
10
+ INVALID_METADATA_JSON = "INVALID_METADATA_JSON",
11
+ INDEXED = "INDEXED",
12
+ UNINDEXED = "UNINDEXED"
13
+ }
14
+
15
+ export { NftTokenMetadataStatus };
@@ -0,0 +1,16 @@
1
+ var NftTokenMetadataStatus = /* @__PURE__ */ ((NftTokenMetadataStatus2) => {
2
+ NftTokenMetadataStatus2["UNKNOWN"] = "UNKNOWN";
3
+ NftTokenMetadataStatus2["MISSING_TOKEN"] = "MISSING_TOKEN";
4
+ NftTokenMetadataStatus2["INVALID_TOKEN_URI"] = "INVALID_TOKEN_URI";
5
+ NftTokenMetadataStatus2["INVALID_TOKEN_URI_SCHEME"] = "INVALID_TOKEN_URI_SCHEME";
6
+ NftTokenMetadataStatus2["UNREACHABLE_TOKEN_URI"] = "UNREACHABLE_TOKEN_URI";
7
+ NftTokenMetadataStatus2["THROTTLED_TOKEN_URI"] = "THROTTLED_TOKEN_URI";
8
+ NftTokenMetadataStatus2["METADATA_CONTENT_TOO_LARGE"] = "METADATA_CONTENT_TOO_LARGE";
9
+ NftTokenMetadataStatus2["INVALID_METADATA"] = "INVALID_METADATA";
10
+ NftTokenMetadataStatus2["INVALID_METADATA_JSON"] = "INVALID_METADATA_JSON";
11
+ NftTokenMetadataStatus2["INDEXED"] = "INDEXED";
12
+ NftTokenMetadataStatus2["UNINDEXED"] = "UNINDEXED";
13
+ return NftTokenMetadataStatus2;
14
+ })(NftTokenMetadataStatus || {});
15
+
16
+ export { NftTokenMetadataStatus };
@@ -0,0 +1,8 @@
1
+ declare enum OperationStatus {
2
+ RUNNING = "RUNNING",
3
+ COMPLETED = "COMPLETED",
4
+ COMPLETED_WITH_WARNING = "COMPLETED_WITH_WARNING",
5
+ FAILED = "FAILED"
6
+ }
7
+
8
+ export { OperationStatus };
@@ -0,0 +1,9 @@
1
+ var OperationStatus = /* @__PURE__ */ ((OperationStatus2) => {
2
+ OperationStatus2["RUNNING"] = "RUNNING";
3
+ OperationStatus2["COMPLETED"] = "COMPLETED";
4
+ OperationStatus2["COMPLETED_WITH_WARNING"] = "COMPLETED_WITH_WARNING";
5
+ OperationStatus2["FAILED"] = "FAILED";
6
+ return OperationStatus2;
7
+ })(OperationStatus || {});
8
+
9
+ export { OperationStatus };
@@ -0,0 +1,7 @@
1
+ declare enum OperationStatusCode {
2
+ ERR_INVALID_REQUEST = "ErrInvalidRequest",
3
+ ERR_INTERNAL = "ErrInternal",
4
+ WARN_TRUNCATED_EXPORT = "WarnTruncatedExport"
5
+ }
6
+
7
+ export { OperationStatusCode };
@@ -0,0 +1,8 @@
1
+ var OperationStatusCode = /* @__PURE__ */ ((OperationStatusCode2) => {
2
+ OperationStatusCode2["ERR_INVALID_REQUEST"] = "ErrInvalidRequest";
3
+ OperationStatusCode2["ERR_INTERNAL"] = "ErrInternal";
4
+ OperationStatusCode2["WARN_TRUNCATED_EXPORT"] = "WarnTruncatedExport";
5
+ return OperationStatusCode2;
6
+ })(OperationStatusCode || {});
7
+
8
+ export { OperationStatusCode };
@@ -0,0 +1,15 @@
1
+ import { OperationStatus } from './OperationStatus.js';
2
+ import { OperationType } from './OperationType.js';
3
+ import { TransactionExportMetadata } from './TransactionExportMetadata.js';
4
+
5
+ type OperationStatusResponse = {
6
+ operationId: string;
7
+ operationType: OperationType;
8
+ operationStatus: OperationStatus;
9
+ message?: string;
10
+ metadata: TransactionExportMetadata;
11
+ createdAtTimestamp: number;
12
+ updatedAtTimestamp: number;
13
+ };
14
+
15
+ export { OperationStatusResponse };
@@ -0,0 +1,6 @@
1
+ declare enum OperationType {
2
+ TRANSACTION_EXPORT_EVM = "TRANSACTION_EXPORT_EVM",
3
+ TRANSACTION_EXPORT_PRIMARY_NETWORK = "TRANSACTION_EXPORT_PRIMARY_NETWORK"
4
+ }
5
+
6
+ export { OperationType };
@@ -0,0 +1,7 @@
1
+ var OperationType = /* @__PURE__ */ ((OperationType2) => {
2
+ OperationType2["TRANSACTION_EXPORT_EVM"] = "TRANSACTION_EXPORT_EVM";
3
+ OperationType2["TRANSACTION_EXPORT_PRIMARY_NETWORK"] = "TRANSACTION_EXPORT_PRIMARY_NETWORK";
4
+ return OperationType2;
5
+ })(OperationType || {});
6
+
7
+ export { OperationType };
@@ -0,0 +1,39 @@
1
+ import { Asset } from './Asset.js';
2
+ import { PChainSharedAsset } from './PChainSharedAsset.js';
3
+
4
+ type PChainBalance = {
5
+ /**
6
+ * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of unstaked Avax that is consumable by any transaction.
7
+ */
8
+ unlockedUnstaked: Array<Asset>;
9
+ /**
10
+ * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of staked Avax that is consumable by any transaction when the staking period ends.
11
+ */
12
+ unlockedStaked: Array<Asset>;
13
+ /**
14
+ * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of unstaked Avax that is locked at the platform level and not consumable by any transaction at the current time.
15
+ */
16
+ lockedPlatform: Array<Asset>;
17
+ /**
18
+ * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of unstaked Avax that is locked at the platform level and only consumeable for staking transactions.
19
+ */
20
+ lockedStakeable: Array<Asset>;
21
+ /**
22
+ * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of staked Avax that will be locked when the staking period ends.
23
+ */
24
+ lockedStaked: Array<Asset>;
25
+ /**
26
+ * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of staked Avax whose staking period has not yet started.
27
+ */
28
+ pendingStaked: Array<Asset>;
29
+ /**
30
+ * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of unlocked Avax in the atomic memory between P-Chain and other chain.
31
+ */
32
+ atomicMemoryUnlocked: Array<PChainSharedAsset>;
33
+ /**
34
+ * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of locked Avax in the atomic memory between P-Chain and other chain.
35
+ */
36
+ atomicMemoryLocked: Array<PChainSharedAsset>;
37
+ };
38
+
39
+ export { PChainBalance };
@@ -0,0 +1,6 @@
1
+ declare enum PChainId {
2
+ _11111111111111111111111111111111LPO_YY = "11111111111111111111111111111111LpoYY",
3
+ P_CHAIN = "p-chain"
4
+ }
5
+
6
+ export { PChainId };
@@ -0,0 +1,7 @@
1
+ var PChainId = /* @__PURE__ */ ((PChainId2) => {
2
+ PChainId2["_11111111111111111111111111111111LPO_YY"] = "11111111111111111111111111111111LpoYY";
3
+ PChainId2["P_CHAIN"] = "p-chain";
4
+ return PChainId2;
5
+ })(PChainId || {});
6
+
7
+ export { PChainId };
@@ -0,0 +1,30 @@
1
+ type PChainSharedAsset = {
2
+ /**
3
+ * Unique ID for an asset.
4
+ */
5
+ assetId: string;
6
+ /**
7
+ * Name of this asset.
8
+ */
9
+ name: string;
10
+ /**
11
+ * Symbol for this asset (max 4 characters).
12
+ */
13
+ symbol: string;
14
+ /**
15
+ * Denomination of this asset to represent fungibility.
16
+ */
17
+ denomination: number;
18
+ /**
19
+ * Type of asset like SECP256K1 or NFT.
20
+ */
21
+ type: string;
22
+ /**
23
+ * Amount of the asset.
24
+ */
25
+ amount: string;
26
+ sharedWithChainId: string;
27
+ status: string;
28
+ };
29
+
30
+ export { PChainSharedAsset };