@moveindustries/ts-sdk 5.1.4

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 (729) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +66 -0
  3. package/dist/common/accountAddress-DoqkxUqw.d.ts +7769 -0
  4. package/dist/common/chunk-56DGDNEY.js +4 -0
  5. package/dist/common/chunk-56DGDNEY.js.map +1 -0
  6. package/dist/common/cli/index.d.ts +316 -0
  7. package/dist/common/cli/index.js +2 -0
  8. package/dist/common/cli/index.js.map +1 -0
  9. package/dist/common/index.d.ts +10643 -0
  10. package/dist/common/index.js +482 -0
  11. package/dist/common/index.js.map +1 -0
  12. package/dist/esm/Ed25519Account-DsqenvLJ.d.mts +628 -0
  13. package/dist/esm/account/AbstractKeylessAccount.d.mts +336 -0
  14. package/dist/esm/account/AbstractKeylessAccount.mjs +2 -0
  15. package/dist/esm/account/AbstractKeylessAccount.mjs.map +1 -0
  16. package/dist/esm/account/AbstractedAccount.d.mts +64 -0
  17. package/dist/esm/account/AbstractedAccount.mjs +2 -0
  18. package/dist/esm/account/AbstractedAccount.mjs.map +1 -0
  19. package/dist/esm/account/Account.d.mts +8 -0
  20. package/dist/esm/account/Account.mjs +2 -0
  21. package/dist/esm/account/Account.mjs.map +1 -0
  22. package/dist/esm/account/AccountUtils.d.mts +38 -0
  23. package/dist/esm/account/AccountUtils.mjs +2 -0
  24. package/dist/esm/account/AccountUtils.mjs.map +1 -0
  25. package/dist/esm/account/DerivableAbstractedAccount.d.mts +59 -0
  26. package/dist/esm/account/DerivableAbstractedAccount.mjs +2 -0
  27. package/dist/esm/account/DerivableAbstractedAccount.mjs.map +1 -0
  28. package/dist/esm/account/Ed25519Account.d.mts +8 -0
  29. package/dist/esm/account/Ed25519Account.mjs +2 -0
  30. package/dist/esm/account/Ed25519Account.mjs.map +1 -0
  31. package/dist/esm/account/EphemeralKeyPair.d.mts +141 -0
  32. package/dist/esm/account/EphemeralKeyPair.mjs +2 -0
  33. package/dist/esm/account/EphemeralKeyPair.mjs.map +1 -0
  34. package/dist/esm/account/FederatedKeylessAccount.d.mts +118 -0
  35. package/dist/esm/account/FederatedKeylessAccount.mjs +2 -0
  36. package/dist/esm/account/FederatedKeylessAccount.mjs.map +1 -0
  37. package/dist/esm/account/KeylessAccount.d.mts +124 -0
  38. package/dist/esm/account/KeylessAccount.mjs +2 -0
  39. package/dist/esm/account/KeylessAccount.mjs.map +1 -0
  40. package/dist/esm/account/MultiEd25519Account.d.mts +102 -0
  41. package/dist/esm/account/MultiEd25519Account.mjs +2 -0
  42. package/dist/esm/account/MultiEd25519Account.mjs.map +1 -0
  43. package/dist/esm/account/MultiKeyAccount.d.mts +206 -0
  44. package/dist/esm/account/MultiKeyAccount.mjs +2 -0
  45. package/dist/esm/account/MultiKeyAccount.mjs.map +1 -0
  46. package/dist/esm/account/SingleKeyAccount.d.mts +8 -0
  47. package/dist/esm/account/SingleKeyAccount.mjs +2 -0
  48. package/dist/esm/account/SingleKeyAccount.mjs.map +1 -0
  49. package/dist/esm/account/index.d.mts +24 -0
  50. package/dist/esm/account/index.mjs +2 -0
  51. package/dist/esm/account/index.mjs.map +1 -0
  52. package/dist/esm/account/utils.d.mts +14 -0
  53. package/dist/esm/account/utils.mjs +2 -0
  54. package/dist/esm/account/utils.mjs.map +1 -0
  55. package/dist/esm/accountAddress-CNXtapt1.d.mts +6979 -0
  56. package/dist/esm/api/account/abstraction.d.mts +181 -0
  57. package/dist/esm/api/account/abstraction.mjs +2 -0
  58. package/dist/esm/api/account/abstraction.mjs.map +1 -0
  59. package/dist/esm/api/account.d.mts +852 -0
  60. package/dist/esm/api/account.mjs +2 -0
  61. package/dist/esm/api/account.mjs.map +1 -0
  62. package/dist/esm/api/ans.d.mts +504 -0
  63. package/dist/esm/api/ans.mjs +2 -0
  64. package/dist/esm/api/ans.mjs.map +1 -0
  65. package/dist/esm/api/coin.d.mts +81 -0
  66. package/dist/esm/api/coin.mjs +2 -0
  67. package/dist/esm/api/coin.mjs.map +1 -0
  68. package/dist/esm/api/digitalAsset.d.mts +1030 -0
  69. package/dist/esm/api/digitalAsset.mjs +2 -0
  70. package/dist/esm/api/digitalAsset.mjs.map +1 -0
  71. package/dist/esm/api/faucet.d.mts +80 -0
  72. package/dist/esm/api/faucet.mjs +2 -0
  73. package/dist/esm/api/faucet.mjs.map +1 -0
  74. package/dist/esm/api/fungibleAsset.d.mts +288 -0
  75. package/dist/esm/api/fungibleAsset.mjs +2 -0
  76. package/dist/esm/api/fungibleAsset.mjs.map +1 -0
  77. package/dist/esm/api/general.d.mts +303 -0
  78. package/dist/esm/api/general.mjs +2 -0
  79. package/dist/esm/api/general.mjs.map +1 -0
  80. package/dist/esm/api/index.d.mts +46 -0
  81. package/dist/esm/api/index.mjs +2 -0
  82. package/dist/esm/api/index.mjs.map +1 -0
  83. package/dist/esm/api/keyless.d.mts +170 -0
  84. package/dist/esm/api/keyless.mjs +2 -0
  85. package/dist/esm/api/keyless.mjs.map +1 -0
  86. package/dist/esm/api/movement.d.mts +113 -0
  87. package/dist/esm/api/movement.mjs +2 -0
  88. package/dist/esm/api/movement.mjs.map +1 -0
  89. package/dist/esm/api/movementConfig.d.mts +7 -0
  90. package/dist/esm/api/movementConfig.mjs +2 -0
  91. package/dist/esm/api/movementConfig.mjs.map +1 -0
  92. package/dist/esm/api/object.d.mts +80 -0
  93. package/dist/esm/api/object.mjs +2 -0
  94. package/dist/esm/api/object.mjs.map +1 -0
  95. package/dist/esm/api/staking.d.mts +134 -0
  96. package/dist/esm/api/staking.mjs +2 -0
  97. package/dist/esm/api/staking.mjs.map +1 -0
  98. package/dist/esm/api/table.d.mts +169 -0
  99. package/dist/esm/api/table.mjs +2 -0
  100. package/dist/esm/api/table.mjs.map +1 -0
  101. package/dist/esm/api/transaction.d.mts +679 -0
  102. package/dist/esm/api/transaction.mjs +2 -0
  103. package/dist/esm/api/transaction.mjs.map +1 -0
  104. package/dist/esm/api/transactionSubmission/build.d.mts +141 -0
  105. package/dist/esm/api/transactionSubmission/build.mjs +2 -0
  106. package/dist/esm/api/transactionSubmission/build.mjs.map +1 -0
  107. package/dist/esm/api/transactionSubmission/helpers.d.mts +98 -0
  108. package/dist/esm/api/transactionSubmission/helpers.mjs +2 -0
  109. package/dist/esm/api/transactionSubmission/helpers.mjs.map +1 -0
  110. package/dist/esm/api/transactionSubmission/management.d.mts +168 -0
  111. package/dist/esm/api/transactionSubmission/management.mjs +2 -0
  112. package/dist/esm/api/transactionSubmission/management.mjs.map +1 -0
  113. package/dist/esm/api/transactionSubmission/sign.d.mts +124 -0
  114. package/dist/esm/api/transactionSubmission/sign.mjs +2 -0
  115. package/dist/esm/api/transactionSubmission/sign.mjs.map +1 -0
  116. package/dist/esm/api/transactionSubmission/simulate.d.mts +181 -0
  117. package/dist/esm/api/transactionSubmission/simulate.mjs +2 -0
  118. package/dist/esm/api/transactionSubmission/simulate.mjs.map +1 -0
  119. package/dist/esm/api/transactionSubmission/submit.d.mts +142 -0
  120. package/dist/esm/api/transactionSubmission/submit.mjs +2 -0
  121. package/dist/esm/api/transactionSubmission/submit.mjs.map +1 -0
  122. package/dist/esm/api/utils.d.mts +45 -0
  123. package/dist/esm/api/utils.mjs +2 -0
  124. package/dist/esm/api/utils.mjs.map +1 -0
  125. package/dist/esm/bcs/consts.d.mts +28 -0
  126. package/dist/esm/bcs/consts.mjs +2 -0
  127. package/dist/esm/bcs/consts.mjs.map +1 -0
  128. package/dist/esm/bcs/deserializer.d.mts +7 -0
  129. package/dist/esm/bcs/deserializer.mjs +2 -0
  130. package/dist/esm/bcs/deserializer.mjs.map +1 -0
  131. package/dist/esm/bcs/index.d.mts +8 -0
  132. package/dist/esm/bcs/index.mjs +2 -0
  133. package/dist/esm/bcs/index.mjs.map +1 -0
  134. package/dist/esm/bcs/serializable/entryFunctionBytes.d.mts +65 -0
  135. package/dist/esm/bcs/serializable/entryFunctionBytes.mjs +2 -0
  136. package/dist/esm/bcs/serializable/entryFunctionBytes.mjs.map +1 -0
  137. package/dist/esm/bcs/serializable/fixedBytes.d.mts +7 -0
  138. package/dist/esm/bcs/serializable/fixedBytes.mjs +2 -0
  139. package/dist/esm/bcs/serializable/fixedBytes.mjs.map +1 -0
  140. package/dist/esm/bcs/serializable/movePrimitives.d.mts +7 -0
  141. package/dist/esm/bcs/serializable/movePrimitives.mjs +2 -0
  142. package/dist/esm/bcs/serializable/movePrimitives.mjs.map +1 -0
  143. package/dist/esm/bcs/serializable/moveStructs.d.mts +7 -0
  144. package/dist/esm/bcs/serializable/moveStructs.mjs +2 -0
  145. package/dist/esm/bcs/serializable/moveStructs.mjs.map +1 -0
  146. package/dist/esm/bcs/serializer.d.mts +7 -0
  147. package/dist/esm/bcs/serializer.mjs +2 -0
  148. package/dist/esm/bcs/serializer.mjs.map +1 -0
  149. package/dist/esm/chunk-2KDUIZKB.mjs +2 -0
  150. package/dist/esm/chunk-2KDUIZKB.mjs.map +1 -0
  151. package/dist/esm/chunk-2QTV4AOE.mjs +2 -0
  152. package/dist/esm/chunk-2QTV4AOE.mjs.map +1 -0
  153. package/dist/esm/chunk-47V7UGV5.mjs +4 -0
  154. package/dist/esm/chunk-47V7UGV5.mjs.map +1 -0
  155. package/dist/esm/chunk-4QMXOWHP.mjs +1 -0
  156. package/dist/esm/chunk-4QMXOWHP.mjs.map +1 -0
  157. package/dist/esm/chunk-4WPQQPUF.mjs +1 -0
  158. package/dist/esm/chunk-4WPQQPUF.mjs.map +1 -0
  159. package/dist/esm/chunk-5HXLZHDW.mjs +1 -0
  160. package/dist/esm/chunk-5HXLZHDW.mjs.map +1 -0
  161. package/dist/esm/chunk-5IMQPJ6J.mjs +2 -0
  162. package/dist/esm/chunk-5IMQPJ6J.mjs.map +1 -0
  163. package/dist/esm/chunk-5ZKA765G.mjs +2 -0
  164. package/dist/esm/chunk-5ZKA765G.mjs.map +1 -0
  165. package/dist/esm/chunk-6NO4QKAO.mjs +2 -0
  166. package/dist/esm/chunk-6NO4QKAO.mjs.map +1 -0
  167. package/dist/esm/chunk-7ECCT6PK.mjs +1 -0
  168. package/dist/esm/chunk-7ECCT6PK.mjs.map +1 -0
  169. package/dist/esm/chunk-7TTTMBAK.mjs +2 -0
  170. package/dist/esm/chunk-7TTTMBAK.mjs.map +1 -0
  171. package/dist/esm/chunk-A5L76YP7.mjs +2 -0
  172. package/dist/esm/chunk-A5L76YP7.mjs.map +1 -0
  173. package/dist/esm/chunk-ANTEUWH6.mjs +2 -0
  174. package/dist/esm/chunk-ANTEUWH6.mjs.map +1 -0
  175. package/dist/esm/chunk-CHWDP6AR.mjs +2 -0
  176. package/dist/esm/chunk-CHWDP6AR.mjs.map +1 -0
  177. package/dist/esm/chunk-CRCE7R4D.mjs +2 -0
  178. package/dist/esm/chunk-CRCE7R4D.mjs.map +1 -0
  179. package/dist/esm/chunk-D6HPXGEP.mjs +2 -0
  180. package/dist/esm/chunk-D6HPXGEP.mjs.map +1 -0
  181. package/dist/esm/chunk-DS6QB6HG.mjs +4 -0
  182. package/dist/esm/chunk-DS6QB6HG.mjs.map +1 -0
  183. package/dist/esm/chunk-FD6FGKYY.mjs +1 -0
  184. package/dist/esm/chunk-FD6FGKYY.mjs.map +1 -0
  185. package/dist/esm/chunk-FJRPU2NH.mjs +2 -0
  186. package/dist/esm/chunk-FJRPU2NH.mjs.map +1 -0
  187. package/dist/esm/chunk-FS5ZJKO7.mjs +2 -0
  188. package/dist/esm/chunk-FS5ZJKO7.mjs.map +1 -0
  189. package/dist/esm/chunk-FZY4PMEE.mjs +1 -0
  190. package/dist/esm/chunk-FZY4PMEE.mjs.map +1 -0
  191. package/dist/esm/chunk-G3MHXDYA.mjs +1 -0
  192. package/dist/esm/chunk-G3MHXDYA.mjs.map +1 -0
  193. package/dist/esm/chunk-GOXRBEIJ.mjs +2 -0
  194. package/dist/esm/chunk-GOXRBEIJ.mjs.map +1 -0
  195. package/dist/esm/chunk-HGLO5LDS.mjs +1 -0
  196. package/dist/esm/chunk-HGLO5LDS.mjs.map +1 -0
  197. package/dist/esm/chunk-HL2JMZ7N.mjs +2 -0
  198. package/dist/esm/chunk-HL2JMZ7N.mjs.map +1 -0
  199. package/dist/esm/chunk-I6YGBK5S.mjs +2 -0
  200. package/dist/esm/chunk-I6YGBK5S.mjs.map +1 -0
  201. package/dist/esm/chunk-K4NT6TTN.mjs +2 -0
  202. package/dist/esm/chunk-K4NT6TTN.mjs.map +1 -0
  203. package/dist/esm/chunk-KDMSOCZY.mjs +2 -0
  204. package/dist/esm/chunk-KDMSOCZY.mjs.map +1 -0
  205. package/dist/esm/chunk-KPJGWDSQ.mjs +7 -0
  206. package/dist/esm/chunk-KPJGWDSQ.mjs.map +1 -0
  207. package/dist/esm/chunk-MEWW7VTQ.mjs +2 -0
  208. package/dist/esm/chunk-MEWW7VTQ.mjs.map +1 -0
  209. package/dist/esm/chunk-NECL5FCQ.mjs +1 -0
  210. package/dist/esm/chunk-NECL5FCQ.mjs.map +1 -0
  211. package/dist/esm/chunk-NMFJJOGW.mjs +2 -0
  212. package/dist/esm/chunk-NMFJJOGW.mjs.map +1 -0
  213. package/dist/esm/chunk-NQUZ4UHR.mjs +2 -0
  214. package/dist/esm/chunk-NQUZ4UHR.mjs.map +1 -0
  215. package/dist/esm/chunk-NUB6KE73.mjs +2 -0
  216. package/dist/esm/chunk-NUB6KE73.mjs.map +1 -0
  217. package/dist/esm/chunk-OOOAVIMQ.mjs +2 -0
  218. package/dist/esm/chunk-OOOAVIMQ.mjs.map +1 -0
  219. package/dist/esm/chunk-PCESRJYO.mjs +2 -0
  220. package/dist/esm/chunk-PCESRJYO.mjs.map +1 -0
  221. package/dist/esm/chunk-PHRRBT44.mjs +2 -0
  222. package/dist/esm/chunk-PHRRBT44.mjs.map +1 -0
  223. package/dist/esm/chunk-PZ233FIY.mjs +2 -0
  224. package/dist/esm/chunk-PZ233FIY.mjs.map +1 -0
  225. package/dist/esm/chunk-R2G23RIY.mjs +2 -0
  226. package/dist/esm/chunk-R2G23RIY.mjs.map +1 -0
  227. package/dist/esm/chunk-RL4YPMN4.mjs +2 -0
  228. package/dist/esm/chunk-RL4YPMN4.mjs.map +1 -0
  229. package/dist/esm/chunk-RUIFVDWM.mjs +2 -0
  230. package/dist/esm/chunk-RUIFVDWM.mjs.map +1 -0
  231. package/dist/esm/chunk-RXHPS4IU.mjs +2 -0
  232. package/dist/esm/chunk-RXHPS4IU.mjs.map +1 -0
  233. package/dist/esm/chunk-S4D2KBYN.mjs +2 -0
  234. package/dist/esm/chunk-S4D2KBYN.mjs.map +1 -0
  235. package/dist/esm/chunk-SRXFRTHK.mjs +2 -0
  236. package/dist/esm/chunk-SRXFRTHK.mjs.map +1 -0
  237. package/dist/esm/chunk-SYXDZA4K.mjs +2 -0
  238. package/dist/esm/chunk-SYXDZA4K.mjs.map +1 -0
  239. package/dist/esm/chunk-UI4OF6CP.mjs +2 -0
  240. package/dist/esm/chunk-UI4OF6CP.mjs.map +1 -0
  241. package/dist/esm/chunk-UL777LTI.mjs +494 -0
  242. package/dist/esm/chunk-UL777LTI.mjs.map +1 -0
  243. package/dist/esm/chunk-UVP74ONT.mjs +2 -0
  244. package/dist/esm/chunk-UVP74ONT.mjs.map +1 -0
  245. package/dist/esm/chunk-UYVPNUH3.mjs +1 -0
  246. package/dist/esm/chunk-UYVPNUH3.mjs.map +1 -0
  247. package/dist/esm/chunk-V3MBJJTL.mjs +1 -0
  248. package/dist/esm/chunk-V3MBJJTL.mjs.map +1 -0
  249. package/dist/esm/chunk-V3O2SBO4.mjs +2 -0
  250. package/dist/esm/chunk-V3O2SBO4.mjs.map +1 -0
  251. package/dist/esm/chunk-VEZCMPUG.mjs +2 -0
  252. package/dist/esm/chunk-VEZCMPUG.mjs.map +1 -0
  253. package/dist/esm/chunk-VW3WBAAD.mjs +2 -0
  254. package/dist/esm/chunk-VW3WBAAD.mjs.map +1 -0
  255. package/dist/esm/chunk-WFAH73WN.mjs +2 -0
  256. package/dist/esm/chunk-WFAH73WN.mjs.map +1 -0
  257. package/dist/esm/chunk-WVDICMU4.mjs +2 -0
  258. package/dist/esm/chunk-WVDICMU4.mjs.map +1 -0
  259. package/dist/esm/chunk-XCURF77K.mjs +2 -0
  260. package/dist/esm/chunk-XCURF77K.mjs.map +1 -0
  261. package/dist/esm/chunk-Y6YW4BAZ.mjs +2 -0
  262. package/dist/esm/chunk-Y6YW4BAZ.mjs.map +1 -0
  263. package/dist/esm/chunk-YFFYA5U3.mjs +2 -0
  264. package/dist/esm/chunk-YFFYA5U3.mjs.map +1 -0
  265. package/dist/esm/chunk-YOHEYPDP.mjs +2 -0
  266. package/dist/esm/chunk-YOHEYPDP.mjs.map +1 -0
  267. package/dist/esm/chunk-ZP4DWSQA.mjs +2 -0
  268. package/dist/esm/chunk-ZP4DWSQA.mjs.map +1 -0
  269. package/dist/esm/cli/index.d.mts +10 -0
  270. package/dist/esm/cli/index.mjs +2 -0
  271. package/dist/esm/cli/index.mjs.map +1 -0
  272. package/dist/esm/cli/localNode.d.mts +67 -0
  273. package/dist/esm/cli/localNode.mjs +2 -0
  274. package/dist/esm/cli/localNode.mjs.map +1 -0
  275. package/dist/esm/cli/move.d.mts +257 -0
  276. package/dist/esm/cli/move.mjs +2 -0
  277. package/dist/esm/cli/move.mjs.map +1 -0
  278. package/dist/esm/client/core.d.mts +42 -0
  279. package/dist/esm/client/core.mjs +2 -0
  280. package/dist/esm/client/core.mjs.map +1 -0
  281. package/dist/esm/client/get.d.mts +125 -0
  282. package/dist/esm/client/get.mjs +2 -0
  283. package/dist/esm/client/get.mjs.map +1 -0
  284. package/dist/esm/client/index.d.mts +10 -0
  285. package/dist/esm/client/index.mjs +2 -0
  286. package/dist/esm/client/index.mjs.map +1 -0
  287. package/dist/esm/client/post.d.mts +158 -0
  288. package/dist/esm/client/post.mjs +2 -0
  289. package/dist/esm/client/post.mjs.map +1 -0
  290. package/dist/esm/core/account/index.d.mts +8 -0
  291. package/dist/esm/core/account/index.mjs +2 -0
  292. package/dist/esm/core/account/index.mjs.map +1 -0
  293. package/dist/esm/core/account/utils/address.d.mts +55 -0
  294. package/dist/esm/core/account/utils/address.mjs +2 -0
  295. package/dist/esm/core/account/utils/address.mjs.map +1 -0
  296. package/dist/esm/core/account/utils/index.d.mts +8 -0
  297. package/dist/esm/core/account/utils/index.mjs +2 -0
  298. package/dist/esm/core/account/utils/index.mjs.map +1 -0
  299. package/dist/esm/core/accountAddress.d.mts +7 -0
  300. package/dist/esm/core/accountAddress.mjs +2 -0
  301. package/dist/esm/core/accountAddress.mjs.map +1 -0
  302. package/dist/esm/core/authenticationKey.d.mts +7 -0
  303. package/dist/esm/core/authenticationKey.mjs +2 -0
  304. package/dist/esm/core/authenticationKey.mjs.map +1 -0
  305. package/dist/esm/core/common.d.mts +52 -0
  306. package/dist/esm/core/common.mjs +2 -0
  307. package/dist/esm/core/common.mjs.map +1 -0
  308. package/dist/esm/core/crypto/abstraction.d.mts +24 -0
  309. package/dist/esm/core/crypto/abstraction.mjs +2 -0
  310. package/dist/esm/core/crypto/abstraction.mjs.map +1 -0
  311. package/dist/esm/core/crypto/deserializationUtils.d.mts +28 -0
  312. package/dist/esm/core/crypto/deserializationUtils.mjs +2 -0
  313. package/dist/esm/core/crypto/deserializationUtils.mjs.map +1 -0
  314. package/dist/esm/core/crypto/ed25519.d.mts +7 -0
  315. package/dist/esm/core/crypto/ed25519.mjs +2 -0
  316. package/dist/esm/core/crypto/ed25519.mjs.map +1 -0
  317. package/dist/esm/core/crypto/ephemeral.d.mts +116 -0
  318. package/dist/esm/core/crypto/ephemeral.mjs +2 -0
  319. package/dist/esm/core/crypto/ephemeral.mjs.map +1 -0
  320. package/dist/esm/core/crypto/federatedKeyless.d.mts +13 -0
  321. package/dist/esm/core/crypto/federatedKeyless.mjs +2 -0
  322. package/dist/esm/core/crypto/federatedKeyless.mjs.map +1 -0
  323. package/dist/esm/core/crypto/hdKey.d.mts +95 -0
  324. package/dist/esm/core/crypto/hdKey.mjs +2 -0
  325. package/dist/esm/core/crypto/hdKey.mjs.map +1 -0
  326. package/dist/esm/core/crypto/index.d.mts +19 -0
  327. package/dist/esm/core/crypto/index.mjs +2 -0
  328. package/dist/esm/core/crypto/index.mjs.map +1 -0
  329. package/dist/esm/core/crypto/keyless.d.mts +13 -0
  330. package/dist/esm/core/crypto/keyless.mjs +2 -0
  331. package/dist/esm/core/crypto/keyless.mjs.map +1 -0
  332. package/dist/esm/core/crypto/multiEd25519.d.mts +7 -0
  333. package/dist/esm/core/crypto/multiEd25519.mjs +2 -0
  334. package/dist/esm/core/crypto/multiEd25519.mjs.map +1 -0
  335. package/dist/esm/core/crypto/multiKey.d.mts +7 -0
  336. package/dist/esm/core/crypto/multiKey.mjs +2 -0
  337. package/dist/esm/core/crypto/multiKey.mjs.map +1 -0
  338. package/dist/esm/core/crypto/poseidon.d.mts +59 -0
  339. package/dist/esm/core/crypto/poseidon.mjs +2 -0
  340. package/dist/esm/core/crypto/poseidon.mjs.map +1 -0
  341. package/dist/esm/core/crypto/privateKey.d.mts +7 -0
  342. package/dist/esm/core/crypto/privateKey.mjs +2 -0
  343. package/dist/esm/core/crypto/privateKey.mjs.map +1 -0
  344. package/dist/esm/core/crypto/proof.d.mts +18 -0
  345. package/dist/esm/core/crypto/proof.mjs +2 -0
  346. package/dist/esm/core/crypto/proof.mjs.map +1 -0
  347. package/dist/esm/core/crypto/publicKey.d.mts +7 -0
  348. package/dist/esm/core/crypto/publicKey.mjs +2 -0
  349. package/dist/esm/core/crypto/publicKey.mjs.map +1 -0
  350. package/dist/esm/core/crypto/secp256k1.d.mts +7 -0
  351. package/dist/esm/core/crypto/secp256k1.mjs +2 -0
  352. package/dist/esm/core/crypto/secp256k1.mjs.map +1 -0
  353. package/dist/esm/core/crypto/secp256r1.d.mts +306 -0
  354. package/dist/esm/core/crypto/secp256r1.mjs +2 -0
  355. package/dist/esm/core/crypto/secp256r1.mjs.map +1 -0
  356. package/dist/esm/core/crypto/signature.d.mts +7 -0
  357. package/dist/esm/core/crypto/signature.mjs +2 -0
  358. package/dist/esm/core/crypto/signature.mjs.map +1 -0
  359. package/dist/esm/core/crypto/singleKey.d.mts +7 -0
  360. package/dist/esm/core/crypto/singleKey.mjs +2 -0
  361. package/dist/esm/core/crypto/singleKey.mjs.map +1 -0
  362. package/dist/esm/core/crypto/types.d.mts +11 -0
  363. package/dist/esm/core/crypto/types.mjs +2 -0
  364. package/dist/esm/core/crypto/types.mjs.map +1 -0
  365. package/dist/esm/core/crypto/utils.d.mts +23 -0
  366. package/dist/esm/core/crypto/utils.mjs +2 -0
  367. package/dist/esm/core/crypto/utils.mjs.map +1 -0
  368. package/dist/esm/core/hex.d.mts +7 -0
  369. package/dist/esm/core/hex.mjs +2 -0
  370. package/dist/esm/core/hex.mjs.map +1 -0
  371. package/dist/esm/core/index.d.mts +20 -0
  372. package/dist/esm/core/index.mjs +2 -0
  373. package/dist/esm/core/index.mjs.map +1 -0
  374. package/dist/esm/errors/index.d.mts +131 -0
  375. package/dist/esm/errors/index.mjs +2 -0
  376. package/dist/esm/errors/index.mjs.map +1 -0
  377. package/dist/esm/federatedKeyless-D-d9d5aC.d.mts +869 -0
  378. package/dist/esm/index.d.mts +71 -0
  379. package/dist/esm/index.mjs +2 -0
  380. package/dist/esm/index.mjs.map +1 -0
  381. package/dist/esm/internal/abstraction.d.mts +27 -0
  382. package/dist/esm/internal/abstraction.mjs +2 -0
  383. package/dist/esm/internal/abstraction.mjs.map +1 -0
  384. package/dist/esm/internal/account.d.mts +453 -0
  385. package/dist/esm/internal/account.mjs +2 -0
  386. package/dist/esm/internal/account.mjs.map +1 -0
  387. package/dist/esm/internal/ans.d.mts +365 -0
  388. package/dist/esm/internal/ans.mjs +2 -0
  389. package/dist/esm/internal/ans.mjs.map +1 -0
  390. package/dist/esm/internal/coin.d.mts +31 -0
  391. package/dist/esm/internal/coin.mjs +2 -0
  392. package/dist/esm/internal/coin.mjs.map +1 -0
  393. package/dist/esm/internal/digitalAsset.d.mts +580 -0
  394. package/dist/esm/internal/digitalAsset.mjs +2 -0
  395. package/dist/esm/internal/digitalAsset.mjs.map +1 -0
  396. package/dist/esm/internal/faucet.d.mts +39 -0
  397. package/dist/esm/internal/faucet.mjs +2 -0
  398. package/dist/esm/internal/faucet.mjs.map +1 -0
  399. package/dist/esm/internal/fungibleAsset.d.mts +112 -0
  400. package/dist/esm/internal/fungibleAsset.mjs +2 -0
  401. package/dist/esm/internal/fungibleAsset.mjs.map +1 -0
  402. package/dist/esm/internal/general.d.mts +92 -0
  403. package/dist/esm/internal/general.mjs +2 -0
  404. package/dist/esm/internal/general.mjs.map +1 -0
  405. package/dist/esm/internal/keyless.d.mts +111 -0
  406. package/dist/esm/internal/keyless.mjs +2 -0
  407. package/dist/esm/internal/keyless.mjs.map +1 -0
  408. package/dist/esm/internal/object.d.mts +42 -0
  409. package/dist/esm/internal/object.mjs +2 -0
  410. package/dist/esm/internal/object.mjs.map +1 -0
  411. package/dist/esm/internal/staking.d.mts +60 -0
  412. package/dist/esm/internal/staking.mjs +2 -0
  413. package/dist/esm/internal/staking.mjs.map +1 -0
  414. package/dist/esm/internal/table.d.mts +66 -0
  415. package/dist/esm/internal/table.mjs +2 -0
  416. package/dist/esm/internal/table.mjs.map +1 -0
  417. package/dist/esm/internal/transaction.d.mts +199 -0
  418. package/dist/esm/internal/transaction.mjs +2 -0
  419. package/dist/esm/internal/transaction.mjs.map +1 -0
  420. package/dist/esm/internal/transactionSubmission.d.mts +165 -0
  421. package/dist/esm/internal/transactionSubmission.mjs +2 -0
  422. package/dist/esm/internal/transactionSubmission.mjs.map +1 -0
  423. package/dist/esm/internal/utils/index.d.mts +8 -0
  424. package/dist/esm/internal/utils/index.mjs +2 -0
  425. package/dist/esm/internal/utils/index.mjs.map +1 -0
  426. package/dist/esm/internal/utils/utils.d.mts +41 -0
  427. package/dist/esm/internal/utils/utils.mjs +2 -0
  428. package/dist/esm/internal/utils/utils.mjs.map +1 -0
  429. package/dist/esm/internal/view.d.mts +20 -0
  430. package/dist/esm/internal/view.mjs +2 -0
  431. package/dist/esm/internal/view.mjs.map +1 -0
  432. package/dist/esm/transactions/authenticator/account.d.mts +7 -0
  433. package/dist/esm/transactions/authenticator/account.mjs +2 -0
  434. package/dist/esm/transactions/authenticator/account.mjs.map +1 -0
  435. package/dist/esm/transactions/authenticator/index.d.mts +8 -0
  436. package/dist/esm/transactions/authenticator/index.mjs +2 -0
  437. package/dist/esm/transactions/authenticator/index.mjs.map +1 -0
  438. package/dist/esm/transactions/authenticator/transaction.d.mts +152 -0
  439. package/dist/esm/transactions/authenticator/transaction.mjs +2 -0
  440. package/dist/esm/transactions/authenticator/transaction.mjs.map +1 -0
  441. package/dist/esm/transactions/index.d.mts +15 -0
  442. package/dist/esm/transactions/index.mjs +2 -0
  443. package/dist/esm/transactions/index.mjs.map +1 -0
  444. package/dist/esm/transactions/instances/chainId.d.mts +7 -0
  445. package/dist/esm/transactions/instances/chainId.mjs +2 -0
  446. package/dist/esm/transactions/instances/chainId.mjs.map +1 -0
  447. package/dist/esm/transactions/instances/identifier.d.mts +7 -0
  448. package/dist/esm/transactions/instances/identifier.mjs +2 -0
  449. package/dist/esm/transactions/instances/identifier.mjs.map +1 -0
  450. package/dist/esm/transactions/instances/index.d.mts +10 -0
  451. package/dist/esm/transactions/instances/index.mjs +2 -0
  452. package/dist/esm/transactions/instances/index.mjs.map +1 -0
  453. package/dist/esm/transactions/instances/moduleId.d.mts +7 -0
  454. package/dist/esm/transactions/instances/moduleId.mjs +2 -0
  455. package/dist/esm/transactions/instances/moduleId.mjs.map +1 -0
  456. package/dist/esm/transactions/instances/multiAgentTransaction.d.mts +7 -0
  457. package/dist/esm/transactions/instances/multiAgentTransaction.mjs +2 -0
  458. package/dist/esm/transactions/instances/multiAgentTransaction.mjs.map +1 -0
  459. package/dist/esm/transactions/instances/rawTransaction.d.mts +7 -0
  460. package/dist/esm/transactions/instances/rawTransaction.mjs +2 -0
  461. package/dist/esm/transactions/instances/rawTransaction.mjs.map +1 -0
  462. package/dist/esm/transactions/instances/rotationProofChallenge.d.mts +58 -0
  463. package/dist/esm/transactions/instances/rotationProofChallenge.mjs +2 -0
  464. package/dist/esm/transactions/instances/rotationProofChallenge.mjs.map +1 -0
  465. package/dist/esm/transactions/instances/signedTransaction.d.mts +59 -0
  466. package/dist/esm/transactions/instances/signedTransaction.mjs +2 -0
  467. package/dist/esm/transactions/instances/signedTransaction.mjs.map +1 -0
  468. package/dist/esm/transactions/instances/simpleTransaction.d.mts +7 -0
  469. package/dist/esm/transactions/instances/simpleTransaction.mjs +2 -0
  470. package/dist/esm/transactions/instances/simpleTransaction.mjs.map +1 -0
  471. package/dist/esm/transactions/instances/transactionArgument.d.mts +7 -0
  472. package/dist/esm/transactions/instances/transactionArgument.mjs +2 -0
  473. package/dist/esm/transactions/instances/transactionArgument.mjs.map +1 -0
  474. package/dist/esm/transactions/instances/transactionPayload.d.mts +7 -0
  475. package/dist/esm/transactions/instances/transactionPayload.mjs +2 -0
  476. package/dist/esm/transactions/instances/transactionPayload.mjs.map +1 -0
  477. package/dist/esm/transactions/management/accountSequenceNumber.d.mts +123 -0
  478. package/dist/esm/transactions/management/accountSequenceNumber.mjs +2 -0
  479. package/dist/esm/transactions/management/accountSequenceNumber.mjs.map +1 -0
  480. package/dist/esm/transactions/management/asyncQueue.d.mts +77 -0
  481. package/dist/esm/transactions/management/asyncQueue.mjs +2 -0
  482. package/dist/esm/transactions/management/asyncQueue.mjs.map +1 -0
  483. package/dist/esm/transactions/management/index.d.mts +12 -0
  484. package/dist/esm/transactions/management/index.mjs +2 -0
  485. package/dist/esm/transactions/management/index.mjs.map +1 -0
  486. package/dist/esm/transactions/management/transactionWorker.d.mts +210 -0
  487. package/dist/esm/transactions/management/transactionWorker.mjs +2 -0
  488. package/dist/esm/transactions/management/transactionWorker.mjs.map +1 -0
  489. package/dist/esm/transactions/transactionBuilder/helpers.d.mts +159 -0
  490. package/dist/esm/transactions/transactionBuilder/helpers.mjs +2 -0
  491. package/dist/esm/transactions/transactionBuilder/helpers.mjs.map +1 -0
  492. package/dist/esm/transactions/transactionBuilder/index.d.mts +11 -0
  493. package/dist/esm/transactions/transactionBuilder/index.mjs +2 -0
  494. package/dist/esm/transactions/transactionBuilder/index.mjs.map +1 -0
  495. package/dist/esm/transactions/transactionBuilder/remoteAbi.d.mts +104 -0
  496. package/dist/esm/transactions/transactionBuilder/remoteAbi.mjs +2 -0
  497. package/dist/esm/transactions/transactionBuilder/remoteAbi.mjs.map +1 -0
  498. package/dist/esm/transactions/transactionBuilder/signingMessage.d.mts +62 -0
  499. package/dist/esm/transactions/transactionBuilder/signingMessage.mjs +2 -0
  500. package/dist/esm/transactions/transactionBuilder/signingMessage.mjs.map +1 -0
  501. package/dist/esm/transactions/transactionBuilder/transactionBuilder.d.mts +192 -0
  502. package/dist/esm/transactions/transactionBuilder/transactionBuilder.mjs +2 -0
  503. package/dist/esm/transactions/transactionBuilder/transactionBuilder.mjs.map +1 -0
  504. package/dist/esm/transactions/typeTag/index.d.mts +7 -0
  505. package/dist/esm/transactions/typeTag/index.mjs +2 -0
  506. package/dist/esm/transactions/typeTag/index.mjs.map +1 -0
  507. package/dist/esm/transactions/typeTag/parser.d.mts +81 -0
  508. package/dist/esm/transactions/typeTag/parser.mjs +2 -0
  509. package/dist/esm/transactions/typeTag/parser.mjs.map +1 -0
  510. package/dist/esm/transactions/types.d.mts +7 -0
  511. package/dist/esm/transactions/types.mjs +2 -0
  512. package/dist/esm/transactions/types.mjs.map +1 -0
  513. package/dist/esm/types/abstraction.d.mts +15 -0
  514. package/dist/esm/types/abstraction.mjs +2 -0
  515. package/dist/esm/types/abstraction.mjs.map +1 -0
  516. package/dist/esm/types/generated/operations.d.mts +709 -0
  517. package/dist/esm/types/generated/operations.mjs +1 -0
  518. package/dist/esm/types/generated/operations.mjs.map +1 -0
  519. package/dist/esm/types/generated/queries.d.mts +66 -0
  520. package/dist/esm/types/generated/queries.mjs +2 -0
  521. package/dist/esm/types/generated/queries.mjs.map +1 -0
  522. package/dist/esm/types/generated/types.d.mts +9495 -0
  523. package/dist/esm/types/generated/types.mjs +2 -0
  524. package/dist/esm/types/generated/types.mjs.map +1 -0
  525. package/dist/esm/types/index.d.mts +7 -0
  526. package/dist/esm/types/index.mjs +2 -0
  527. package/dist/esm/types/index.mjs.map +1 -0
  528. package/dist/esm/types/indexer.d.mts +186 -0
  529. package/dist/esm/types/indexer.mjs +2 -0
  530. package/dist/esm/types/indexer.mjs.map +1 -0
  531. package/dist/esm/types/keyless.d.mts +102 -0
  532. package/dist/esm/types/keyless.mjs +1 -0
  533. package/dist/esm/types/keyless.mjs.map +1 -0
  534. package/dist/esm/types/types.d.mts +7 -0
  535. package/dist/esm/types/types.mjs +2 -0
  536. package/dist/esm/types/types.mjs.map +1 -0
  537. package/dist/esm/utils/apiEndpoints.d.mts +51 -0
  538. package/dist/esm/utils/apiEndpoints.mjs +2 -0
  539. package/dist/esm/utils/apiEndpoints.mjs.map +1 -0
  540. package/dist/esm/utils/const.d.mts +90 -0
  541. package/dist/esm/utils/const.mjs +2 -0
  542. package/dist/esm/utils/const.mjs.map +1 -0
  543. package/dist/esm/utils/helpers.d.mts +174 -0
  544. package/dist/esm/utils/helpers.mjs +2 -0
  545. package/dist/esm/utils/helpers.mjs.map +1 -0
  546. package/dist/esm/utils/index.d.mts +9 -0
  547. package/dist/esm/utils/index.mjs +2 -0
  548. package/dist/esm/utils/index.mjs.map +1 -0
  549. package/dist/esm/utils/memoize.d.mts +26 -0
  550. package/dist/esm/utils/memoize.mjs +2 -0
  551. package/dist/esm/utils/memoize.mjs.map +1 -0
  552. package/dist/esm/utils/normalizeBundle.d.mts +35 -0
  553. package/dist/esm/utils/normalizeBundle.mjs +2 -0
  554. package/dist/esm/utils/normalizeBundle.mjs.map +1 -0
  555. package/dist/esm/version.d.mts +8 -0
  556. package/dist/esm/version.mjs +2 -0
  557. package/dist/esm/version.mjs.map +1 -0
  558. package/package.json +98 -0
  559. package/src/account/AbstractKeylessAccount.ts +579 -0
  560. package/src/account/AbstractedAccount.ts +124 -0
  561. package/src/account/Account.ts +354 -0
  562. package/src/account/AccountUtils.ts +216 -0
  563. package/src/account/DerivableAbstractedAccount.ts +103 -0
  564. package/src/account/Ed25519Account.ts +210 -0
  565. package/src/account/EphemeralKeyPair.ts +222 -0
  566. package/src/account/FederatedKeylessAccount.ts +178 -0
  567. package/src/account/KeylessAccount.ts +179 -0
  568. package/src/account/MultiEd25519Account.ts +181 -0
  569. package/src/account/MultiKeyAccount.ts +296 -0
  570. package/src/account/SingleKeyAccount.ts +277 -0
  571. package/src/account/index.ts +12 -0
  572. package/src/account/utils.ts +16 -0
  573. package/src/api/account/abstraction.ts +239 -0
  574. package/src/api/account.ts +1128 -0
  575. package/src/api/ans.ts +550 -0
  576. package/src/api/coin.ts +83 -0
  577. package/src/api/digitalAsset.ts +1203 -0
  578. package/src/api/faucet.ts +94 -0
  579. package/src/api/fungibleAsset.ts +371 -0
  580. package/src/api/general.ts +351 -0
  581. package/src/api/index.ts +6 -0
  582. package/src/api/keyless.ts +227 -0
  583. package/src/api/movement.ts +171 -0
  584. package/src/api/movementConfig.ts +334 -0
  585. package/src/api/object.ts +90 -0
  586. package/src/api/staking.ts +161 -0
  587. package/src/api/table.ts +193 -0
  588. package/src/api/transaction.ts +784 -0
  589. package/src/api/transactionSubmission/build.ts +153 -0
  590. package/src/api/transactionSubmission/helpers.ts +112 -0
  591. package/src/api/transactionSubmission/management.ts +211 -0
  592. package/src/api/transactionSubmission/sign.ts +142 -0
  593. package/src/api/transactionSubmission/simulate.ts +192 -0
  594. package/src/api/transactionSubmission/submit.ts +156 -0
  595. package/src/api/utils.ts +48 -0
  596. package/src/bcs/consts.ts +28 -0
  597. package/src/bcs/deserializer.ts +550 -0
  598. package/src/bcs/index.ts +10 -0
  599. package/src/bcs/serializable/entryFunctionBytes.ts +92 -0
  600. package/src/bcs/serializable/fixedBytes.ts +107 -0
  601. package/src/bcs/serializable/movePrimitives.ts +564 -0
  602. package/src/bcs/serializable/moveStructs.ts +619 -0
  603. package/src/bcs/serializer.ts +641 -0
  604. package/src/cli/index.ts +2 -0
  605. package/src/cli/localNode.ts +169 -0
  606. package/src/cli/move.ts +474 -0
  607. package/src/client/core.ts +120 -0
  608. package/src/client/get.ts +262 -0
  609. package/src/client/index.ts +7 -0
  610. package/src/client/post.ts +245 -0
  611. package/src/core/account/index.ts +1 -0
  612. package/src/core/account/utils/address.ts +85 -0
  613. package/src/core/account/utils/index.ts +1 -0
  614. package/src/core/accountAddress.ts +524 -0
  615. package/src/core/authenticationKey.ts +157 -0
  616. package/src/core/common.ts +60 -0
  617. package/src/core/crypto/abstraction.ts +52 -0
  618. package/src/core/crypto/deserializationUtils.ts +106 -0
  619. package/src/core/crypto/ed25519.ts +493 -0
  620. package/src/core/crypto/ephemeral.ts +185 -0
  621. package/src/core/crypto/federatedKeyless.ts +169 -0
  622. package/src/core/crypto/hdKey.ts +136 -0
  623. package/src/core/crypto/index.ts +21 -0
  624. package/src/core/crypto/keyless.ts +1700 -0
  625. package/src/core/crypto/multiEd25519.ts +434 -0
  626. package/src/core/crypto/multiKey.ts +498 -0
  627. package/src/core/crypto/poseidon.ts +231 -0
  628. package/src/core/crypto/privateKey.ts +115 -0
  629. package/src/core/crypto/proof.ts +9 -0
  630. package/src/core/crypto/publicKey.ts +106 -0
  631. package/src/core/crypto/secp256k1.ts +451 -0
  632. package/src/core/crypto/secp256r1.ts +495 -0
  633. package/src/core/crypto/signature.ts +57 -0
  634. package/src/core/crypto/singleKey.ts +351 -0
  635. package/src/core/crypto/types.ts +9 -0
  636. package/src/core/crypto/utils.ts +63 -0
  637. package/src/core/hex.ts +241 -0
  638. package/src/core/index.ts +10 -0
  639. package/src/errors/index.ts +457 -0
  640. package/src/index.ts +14 -0
  641. package/src/internal/abstraction.ts +79 -0
  642. package/src/internal/account.ts +1484 -0
  643. package/src/internal/ans.ts +853 -0
  644. package/src/internal/coin.ts +49 -0
  645. package/src/internal/digitalAsset.ts +1291 -0
  646. package/src/internal/faucet.ts +71 -0
  647. package/src/internal/fungibleAsset.ts +233 -0
  648. package/src/internal/general.ts +161 -0
  649. package/src/internal/keyless.ts +297 -0
  650. package/src/internal/object.ts +68 -0
  651. package/src/internal/queries/TokenActivitiesFieldsFragment.graphql +17 -0
  652. package/src/internal/queries/ansTokenFragment.graphql +11 -0
  653. package/src/internal/queries/currentTokenOwnershipFieldsFragment.graphql +46 -0
  654. package/src/internal/queries/getAccountAddressesForAuthKey.graphql +8 -0
  655. package/src/internal/queries/getAccountCoinCount.graphql +7 -0
  656. package/src/internal/queries/getAccountCoinsData.graphql +32 -0
  657. package/src/internal/queries/getAccountCollectionsWithOwnedTokens.graphql +33 -0
  658. package/src/internal/queries/getAccountOwnedTokens.graphql +11 -0
  659. package/src/internal/queries/getAccountOwnedTokensByTokenData.graphql +11 -0
  660. package/src/internal/queries/getAccountOwnedTokensFromCollectionAddress.graphql +11 -0
  661. package/src/internal/queries/getAccountTokensCount.graphql +7 -0
  662. package/src/internal/queries/getAccountTransactionsCount.graphql +7 -0
  663. package/src/internal/queries/getAuthKeysForPublicKey.graphql +11 -0
  664. package/src/internal/queries/getChainTopUserTransactions.graphql +5 -0
  665. package/src/internal/queries/getCollectionData.graphql +29 -0
  666. package/src/internal/queries/getCurrentFungibleAssetBalances.graphql +17 -0
  667. package/src/internal/queries/getDelegatedStakingActivities.graphql +12 -0
  668. package/src/internal/queries/getEvents.graphql +13 -0
  669. package/src/internal/queries/getFungibleAssetActivities.graphql +20 -0
  670. package/src/internal/queries/getFungibleAssetMetadata.graphql +18 -0
  671. package/src/internal/queries/getNames.graphql +11 -0
  672. package/src/internal/queries/getNumberOfDelegatorsQuery.graphql +9 -0
  673. package/src/internal/queries/getObjectData.graphql +16 -0
  674. package/src/internal/queries/getProcessorStatus.graphql +7 -0
  675. package/src/internal/queries/getTableItemsData.graphql +15 -0
  676. package/src/internal/queries/getTableItemsMetadata.graphql +12 -0
  677. package/src/internal/queries/getTokenActivity.graphql +11 -0
  678. package/src/internal/queries/getTokenCurrentOwner.graphql +11 -0
  679. package/src/internal/queries/getTokenData.graphql +39 -0
  680. package/src/internal/staking.ts +96 -0
  681. package/src/internal/table.ts +117 -0
  682. package/src/internal/transaction.ts +503 -0
  683. package/src/internal/transactionSubmission.ts +454 -0
  684. package/src/internal/utils/index.ts +4 -0
  685. package/src/internal/utils/utils.ts +86 -0
  686. package/src/internal/view.ts +61 -0
  687. package/src/transactions/authenticator/account.ts +405 -0
  688. package/src/transactions/authenticator/index.ts +6 -0
  689. package/src/transactions/authenticator/transaction.ts +288 -0
  690. package/src/transactions/index.ts +10 -0
  691. package/src/transactions/instances/chainId.ts +53 -0
  692. package/src/transactions/instances/identifier.ts +54 -0
  693. package/src/transactions/instances/index.ts +14 -0
  694. package/src/transactions/instances/moduleId.ts +77 -0
  695. package/src/transactions/instances/multiAgentTransaction.ts +92 -0
  696. package/src/transactions/instances/rawTransaction.ts +256 -0
  697. package/src/transactions/instances/rotationProofChallenge.ts +86 -0
  698. package/src/transactions/instances/signedTransaction.ts +73 -0
  699. package/src/transactions/instances/simpleTransaction.ts +83 -0
  700. package/src/transactions/instances/transactionArgument.ts +79 -0
  701. package/src/transactions/instances/transactionPayload.ts +676 -0
  702. package/src/transactions/management/accountSequenceNumber.ts +226 -0
  703. package/src/transactions/management/asyncQueue.ts +126 -0
  704. package/src/transactions/management/index.ts +2 -0
  705. package/src/transactions/management/transactionWorker.ts +396 -0
  706. package/src/transactions/transactionBuilder/helpers.ts +319 -0
  707. package/src/transactions/transactionBuilder/index.ts +8 -0
  708. package/src/transactions/transactionBuilder/remoteAbi.ts +655 -0
  709. package/src/transactions/transactionBuilder/signingMessage.ts +111 -0
  710. package/src/transactions/transactionBuilder/transactionBuilder.ts +863 -0
  711. package/src/transactions/typeTag/index.ts +926 -0
  712. package/src/transactions/typeTag/parser.ts +434 -0
  713. package/src/transactions/types.ts +518 -0
  714. package/src/types/abstraction.ts +14 -0
  715. package/src/types/codegen.yaml +33 -0
  716. package/src/types/generated/operations.ts +738 -0
  717. package/src/types/generated/queries.ts +926 -0
  718. package/src/types/generated/types.ts +10421 -0
  719. package/src/types/index.ts +2 -0
  720. package/src/types/indexer.ts +240 -0
  721. package/src/types/keyless.ts +94 -0
  722. package/src/types/types.ts +1713 -0
  723. package/src/utils/apiEndpoints.ts +107 -0
  724. package/src/utils/const.ts +100 -0
  725. package/src/utils/helpers.ts +287 -0
  726. package/src/utils/index.ts +4 -0
  727. package/src/utils/memoize.ts +76 -0
  728. package/src/utils/normalizeBundle.ts +34 -0
  729. package/src/version.ts +9 -0
@@ -0,0 +1,2 @@
1
+ import{$b as F,Ab as h,Bb as i,Cb as j,Db as k,Eb as l,Fb as m,Gb as n,Hb as o,Ib as p,Jb as q,Kb as r,Lb as s,Mb as t,Nb as u,Ob as v,Pb as w,Qb as x,Ub as y,Vb as z,Wb as A,Xb as B,Yb as C,Zb as D,_b as E,ac as G,bc as H,cc as I,db as a,dc as J,eb as b,ec as K,fb as c,fc as L,gb as d,gc as M,hc as N,ic as O,jc as P,kc as Q,lc as R,xb as e,yb as f,zb as g}from"../../chunk-47V7UGV5.mjs";import"../../chunk-A5L76YP7.mjs";import"../../chunk-YFFYA5U3.mjs";import"../../chunk-UYVPNUH3.mjs";import"../../chunk-G3MHXDYA.mjs";import"../../chunk-RUIFVDWM.mjs";import"../../chunk-WVDICMU4.mjs";import"../../chunk-2KDUIZKB.mjs";import"../../chunk-OOOAVIMQ.mjs";import"../../chunk-V3O2SBO4.mjs";import"../../chunk-D6HPXGEP.mjs";import"../../chunk-5HXLZHDW.mjs";import"../../chunk-7TTTMBAK.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-2QTV4AOE.mjs";import"../../chunk-PHRRBT44.mjs";import"../../chunk-VEZCMPUG.mjs";import"../../chunk-CHWDP6AR.mjs";import"../../chunk-V3MBJJTL.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-ZP4DWSQA.mjs";import"../../chunk-NUB6KE73.mjs";import"../../chunk-I6YGBK5S.mjs";import"../../chunk-S4D2KBYN.mjs";import"../../chunk-CRCE7R4D.mjs";import"../../chunk-NQUZ4UHR.mjs";import"../../chunk-NMFJJOGW.mjs";import"../../chunk-5ZKA765G.mjs";import"../../chunk-FJRPU2NH.mjs";import"../../chunk-UL777LTI.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SYXDZA4K.mjs";import"../../chunk-R2G23RIY.mjs";import"../../chunk-MEWW7VTQ.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-ANTEUWH6.mjs";import"../../chunk-KPJGWDSQ.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-6NO4QKAO.mjs";import"../../chunk-FS5ZJKO7.mjs";import"../../chunk-UVP74ONT.mjs";import"../../chunk-XCURF77K.mjs";import"../../chunk-RXHPS4IU.mjs";import"../../chunk-WFAH73WN.mjs";import"../../chunk-Y6YW4BAZ.mjs";import"../../chunk-DS6QB6HG.mjs";import"../../chunk-FD6FGKYY.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-YOHEYPDP.mjs";import"../../chunk-SRXFRTHK.mjs";import"../../chunk-5IMQPJ6J.mjs";import"../../chunk-RL4YPMN4.mjs";import"../../chunk-UI4OF6CP.mjs";import"../../chunk-PZ233FIY.mjs";import"../../chunk-VW3WBAAD.mjs";import"../../chunk-PCESRJYO.mjs";import"../../chunk-KDMSOCZY.mjs";export{M as buildTransaction,F as checkOrConvertArgument,E as convertArgument,h as convertNumber,L as convertPayloadToInnerPayload,a as deriveTransactionType,C as fetchEntryFunctionAbi,A as fetchFunctionAbi,z as fetchModuleAbi,B as fetchMoveFunctionAbi,D as fetchViewFunctionAbi,x as findFirstNonSignerArg,K as generateRawTransaction,P as generateSignedTransaction,N as generateSignedTransactionForSimulation,b as generateSigningMessage,c as generateSigningMessageForSerializable,d as generateSigningMessageForTransaction,G as generateTransactionPayload,H as generateTransactionPayloadWithABI,R as generateUserTransactionHash,I as generateViewFunctionPayload,J as generateViewFunctionPayloadWithABI,O as getAuthenticatorForSimulation,Q as hashValues,m as isBcsAddress,l as isBcsBool,o as isBcsFixedBytes,n as isBcsString,t as isBcsU128,q as isBcsU16,u as isBcsU256,r as isBcsU32,s as isBcsU64,p as isBcsU8,e as isBool,j as isEmptyOption,k as isEncodedEntryFunctionArgument,i as isLargeNumber,g as isNumber,v as isScriptDataInput,f as isString,y as standardizeTypeTags,w as throwTypeMismatch};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,104 @@
1
+ import { aE as TypeArgument, bb as TypeTag, M as MovementConfig, dB as MoveModule, dD as MoveFunction, aZ as FunctionABI, a_ as EntryFunctionABI, a$ as ViewFunctionABI, aC as EntryFunctionArgumentTypes, aB as SimpleEntryFunctionArgumentTypes } from '../../accountAddress-CNXtapt1.mjs';
2
+ import '../../types/indexer.mjs';
3
+ import '../../types/generated/operations.mjs';
4
+ import '../../types/generated/types.mjs';
5
+ import '../../utils/apiEndpoints.mjs';
6
+ import '../../utils/const.mjs';
7
+ import '../../core/common.mjs';
8
+
9
+ /**
10
+ * Convert type arguments to only type tags, allowing for string representations of type tags.
11
+ *
12
+ * @param typeArguments - An optional array of type arguments that may include string representations.
13
+ * @returns An array of TypeTag objects derived from the provided type arguments.
14
+ * @group Implementation
15
+ * @category Transactions
16
+ */
17
+ declare function standardizeTypeTags(typeArguments?: Array<TypeArgument>): Array<TypeTag>;
18
+ /**
19
+ * Fetches the ABI of a specified module from the on-chain module ABI.
20
+ *
21
+ * @param moduleAddress - The address of the module from which to fetch the ABI.
22
+ * @param moduleName - The name of the module containing the ABI.
23
+ * @param movementConfig - The configuration settings for Movement.
24
+ * @group Implementation
25
+ * @category Transactions
26
+ */
27
+ declare function fetchModuleAbi(moduleAddress: string, moduleName: string, movementConfig: MovementConfig): Promise<MoveModule | undefined>;
28
+ /**
29
+ * Fetches the ABI of a specified function from the on-chain module ABI. This function allows you to access the details of a
30
+ * specific function within a module.
31
+ *
32
+ * @param moduleAddress - The address of the module from which to fetch the function ABI.
33
+ * @param moduleName - The name of the module containing the function.
34
+ * @param functionName - The name of the function whose ABI is to be fetched.
35
+ * @param movementConfig - The configuration settings for Movement.
36
+ * @group Implementation
37
+ * @category Transactions
38
+ */
39
+ declare function fetchFunctionAbi(moduleAddress: string, moduleName: string, functionName: string, movementConfig: MovementConfig): Promise<MoveFunction | undefined>;
40
+ /**
41
+ * @deprecated Use `fetchFunctionAbi` instead and manually parse the type tags.
42
+ */
43
+ declare function fetchMoveFunctionAbi(moduleAddress: string, moduleName: string, functionName: string, movementConfig: MovementConfig): Promise<FunctionABI>;
44
+ /**
45
+ * Fetches the ABI for an entry function from the specified module address.
46
+ * This function validates if the ABI corresponds to an entry function and retrieves its parameters.
47
+ *
48
+ * @param moduleAddress - The address of the module containing the entry function.
49
+ * @param moduleName - The name of the module containing the entry function.
50
+ * @param functionName - The name of the entry function to fetch the ABI for.
51
+ * @param movementConfig - The configuration settings for Movement.
52
+ * @returns An object containing the number of signers, type parameters, and function parameters.
53
+ * @throws Error if the ABI cannot be found or if the function is not an entry function.
54
+ * @group Implementation
55
+ * @category Transactions
56
+ */
57
+ declare function fetchEntryFunctionAbi(moduleAddress: string, moduleName: string, functionName: string, movementConfig: MovementConfig): Promise<EntryFunctionABI>;
58
+ /**
59
+ * Fetches the ABI for a view function from the specified module address.
60
+ * This function ensures that the ABI is valid and retrieves the type parameters, parameters, and return types for the view function.
61
+ *
62
+ * @param moduleAddress - The address of the module containing the view function.
63
+ * @param moduleName - The name of the module containing the view function.
64
+ * @param functionName - The name of the view function for which to fetch the ABI.
65
+ * @param movementConfig - The configuration settings for Movement.
66
+ * @returns An object containing the type parameters, parameters, and return types of the view function.
67
+ * @throws Error if the ABI cannot be found or if the function is not a view function.
68
+ * @group Implementation
69
+ * @category Transactions
70
+ */
71
+ declare function fetchViewFunctionAbi(moduleAddress: string, moduleName: string, functionName: string, movementConfig: MovementConfig): Promise<ViewFunctionABI>;
72
+ /**
73
+ * Converts a non-BCS encoded argument into BCS encoded, if necessary.
74
+ * This function checks the provided argument against the expected parameter type and converts it accordingly.
75
+ *
76
+ * @param functionName - The name of the function for which the argument is being converted.
77
+ * @param functionAbiOrModuleAbi - The ABI (Application Binary Interface) of the function, which defines its parameters.
78
+ * @param arg - The argument to be converted, which can be of various types.
79
+ * @param position - The index of the argument in the function's parameter list.
80
+ * @param genericTypeParams - An array of type tags for any generic type parameters.
81
+ * @param options - Options for the conversion process.
82
+ * @param options.allowUnknownStructs - If true, unknown structs will be allowed and converted to a `FixedBytes`.
83
+ * @group Implementation
84
+ * @category Transactions
85
+ */
86
+ declare function convertArgument(functionName: string, functionAbiOrModuleAbi: MoveModule | FunctionABI, arg: EntryFunctionArgumentTypes | SimpleEntryFunctionArgumentTypes, position: number, genericTypeParams: Array<TypeTag>, options?: {
87
+ allowUnknownStructs?: boolean;
88
+ }): EntryFunctionArgumentTypes;
89
+ /**
90
+ * Checks if the provided argument is BCS encoded and converts it if necessary, ensuring type compatibility with the ABI.
91
+ * This function helps in validating and converting arguments for entry functions based on their expected types.
92
+ *
93
+ * @param arg - The argument to check or convert, which can be either a simple or entry function argument type.
94
+ * @param param - The expected type tag for the argument.
95
+ * @param position - The position of the argument in the function call.
96
+ * @param genericTypeParams - An array of generic type parameters that may be used for conversion.
97
+ * @group Implementation
98
+ * @category Transactions
99
+ */
100
+ declare function checkOrConvertArgument(arg: SimpleEntryFunctionArgumentTypes | EntryFunctionArgumentTypes, param: TypeTag, position: number, genericTypeParams: Array<TypeTag>, moduleAbi?: MoveModule, options?: {
101
+ allowUnknownStructs?: boolean;
102
+ }): EntryFunctionArgumentTypes;
103
+
104
+ export { checkOrConvertArgument, convertArgument, fetchEntryFunctionAbi, fetchFunctionAbi, fetchModuleAbi, fetchMoveFunctionAbi, fetchViewFunctionAbi, standardizeTypeTags };
@@ -0,0 +1,2 @@
1
+ import{$b as h,Ub as a,Vb as b,Wb as c,Xb as d,Yb as e,Zb as f,_b as g}from"../../chunk-47V7UGV5.mjs";import"../../chunk-A5L76YP7.mjs";import"../../chunk-YFFYA5U3.mjs";import"../../chunk-UYVPNUH3.mjs";import"../../chunk-G3MHXDYA.mjs";import"../../chunk-RUIFVDWM.mjs";import"../../chunk-WVDICMU4.mjs";import"../../chunk-2KDUIZKB.mjs";import"../../chunk-OOOAVIMQ.mjs";import"../../chunk-V3O2SBO4.mjs";import"../../chunk-D6HPXGEP.mjs";import"../../chunk-5HXLZHDW.mjs";import"../../chunk-7TTTMBAK.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-2QTV4AOE.mjs";import"../../chunk-PHRRBT44.mjs";import"../../chunk-VEZCMPUG.mjs";import"../../chunk-CHWDP6AR.mjs";import"../../chunk-V3MBJJTL.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-ZP4DWSQA.mjs";import"../../chunk-NUB6KE73.mjs";import"../../chunk-I6YGBK5S.mjs";import"../../chunk-S4D2KBYN.mjs";import"../../chunk-CRCE7R4D.mjs";import"../../chunk-NQUZ4UHR.mjs";import"../../chunk-NMFJJOGW.mjs";import"../../chunk-5ZKA765G.mjs";import"../../chunk-FJRPU2NH.mjs";import"../../chunk-UL777LTI.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SYXDZA4K.mjs";import"../../chunk-R2G23RIY.mjs";import"../../chunk-MEWW7VTQ.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-ANTEUWH6.mjs";import"../../chunk-KPJGWDSQ.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-6NO4QKAO.mjs";import"../../chunk-FS5ZJKO7.mjs";import"../../chunk-UVP74ONT.mjs";import"../../chunk-XCURF77K.mjs";import"../../chunk-RXHPS4IU.mjs";import"../../chunk-WFAH73WN.mjs";import"../../chunk-Y6YW4BAZ.mjs";import"../../chunk-DS6QB6HG.mjs";import"../../chunk-FD6FGKYY.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-YOHEYPDP.mjs";import"../../chunk-SRXFRTHK.mjs";import"../../chunk-5IMQPJ6J.mjs";import"../../chunk-RL4YPMN4.mjs";import"../../chunk-UI4OF6CP.mjs";import"../../chunk-PZ233FIY.mjs";import"../../chunk-VW3WBAAD.mjs";import"../../chunk-PCESRJYO.mjs";import"../../chunk-KDMSOCZY.mjs";export{h as checkOrConvertArgument,g as convertArgument,e as fetchEntryFunctionAbi,c as fetchFunctionAbi,b as fetchModuleAbi,d as fetchMoveFunctionAbi,f as fetchViewFunctionAbi,a as standardizeTypeTags};
2
+ //# sourceMappingURL=remoteAbi.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,62 @@
1
+ import { b3 as AnyRawTransaction, aF as AnyRawTransactionInstance, o as Serializable } from '../../accountAddress-CNXtapt1.mjs';
2
+ import '../../types/indexer.mjs';
3
+ import '../../types/generated/operations.mjs';
4
+ import '../../types/generated/types.mjs';
5
+ import '../../utils/apiEndpoints.mjs';
6
+ import '../../utils/const.mjs';
7
+ import '../../core/common.mjs';
8
+
9
+ /**
10
+ * Derives the appropriate raw transaction type based on the provided transaction details.
11
+ * This function helps in identifying whether the transaction is a FeePayerRawTransaction,
12
+ * MultiAgentRawTransaction, or a standard RawTransaction.
13
+ *
14
+ * @param transaction - An object representing an Movement transaction, which may include:
15
+ * - feePayerAddress - The address of the fee payer (optional).
16
+ * - secondarySignerAddresses - An array of secondary signer addresses (optional).
17
+ * - rawTransaction - The raw transaction data.
18
+ *
19
+ * @returns FeePayerRawTransaction | MultiAgentRawTransaction | RawTransaction
20
+ * @group Implementation
21
+ * @category Transactions
22
+ */
23
+ declare function deriveTransactionType(transaction: AnyRawTransaction): AnyRawTransactionInstance;
24
+ /**
25
+ * Generates the 'signing message' form of a message to be signed.
26
+ * This function combines a domain separator with the byte representation of the message to create a signing message.
27
+ *
28
+ * @param bytes - The byte representation of the message to be signed and sent to the chain.
29
+ * @param domainSeparator - A domain separator that starts with 'APTOS::'.
30
+ *
31
+ * @returns The Uint8Array of the signing message.
32
+ * @group Implementation
33
+ * @category Transactions
34
+ */
35
+ declare function generateSigningMessage(bytes: Uint8Array, domainSeparator: string): Uint8Array;
36
+ /**
37
+ * @deprecated
38
+ * Use CryptoHashable instead by having your class implement it and call hash() to get the signing message.
39
+ *
40
+ * Generates the 'signing message' form of a serializable value by serializing it and using the constructor name as the domain
41
+ * separator.
42
+ *
43
+ * @param serializable - An object that has a BCS serialized form.
44
+ *
45
+ * @returns The Uint8Array of the signing message.
46
+ * @group Implementation
47
+ * @category Transactions
48
+ */
49
+ declare function generateSigningMessageForSerializable(serializable: Serializable): Uint8Array;
50
+ /**
51
+ * Generates the 'signing message' form of a transaction by deriving the type of transaction and applying the appropriate domain
52
+ * separator based on the presence of a fee payer or secondary signers.
53
+ *
54
+ * @param transaction - A transaction that is to be signed, which can include a fee payer address or secondary signer addresses.
55
+ *
56
+ * @returns The Uint8Array of the signing message.
57
+ * @group Implementation
58
+ * @category Transactions
59
+ */
60
+ declare function generateSigningMessageForTransaction(transaction: AnyRawTransaction): Uint8Array;
61
+
62
+ export { deriveTransactionType, generateSigningMessage, generateSigningMessageForSerializable, generateSigningMessageForTransaction };
@@ -0,0 +1,2 @@
1
+ import{db as a,eb as b,fb as c,gb as d}from"../../chunk-47V7UGV5.mjs";import"../../chunk-A5L76YP7.mjs";import"../../chunk-YFFYA5U3.mjs";import"../../chunk-UYVPNUH3.mjs";import"../../chunk-G3MHXDYA.mjs";import"../../chunk-RUIFVDWM.mjs";import"../../chunk-WVDICMU4.mjs";import"../../chunk-2KDUIZKB.mjs";import"../../chunk-OOOAVIMQ.mjs";import"../../chunk-V3O2SBO4.mjs";import"../../chunk-D6HPXGEP.mjs";import"../../chunk-5HXLZHDW.mjs";import"../../chunk-7TTTMBAK.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-2QTV4AOE.mjs";import"../../chunk-PHRRBT44.mjs";import"../../chunk-VEZCMPUG.mjs";import"../../chunk-CHWDP6AR.mjs";import"../../chunk-V3MBJJTL.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-ZP4DWSQA.mjs";import"../../chunk-NUB6KE73.mjs";import"../../chunk-I6YGBK5S.mjs";import"../../chunk-S4D2KBYN.mjs";import"../../chunk-CRCE7R4D.mjs";import"../../chunk-NQUZ4UHR.mjs";import"../../chunk-NMFJJOGW.mjs";import"../../chunk-5ZKA765G.mjs";import"../../chunk-FJRPU2NH.mjs";import"../../chunk-UL777LTI.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SYXDZA4K.mjs";import"../../chunk-R2G23RIY.mjs";import"../../chunk-MEWW7VTQ.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-ANTEUWH6.mjs";import"../../chunk-KPJGWDSQ.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-6NO4QKAO.mjs";import"../../chunk-FS5ZJKO7.mjs";import"../../chunk-UVP74ONT.mjs";import"../../chunk-XCURF77K.mjs";import"../../chunk-RXHPS4IU.mjs";import"../../chunk-WFAH73WN.mjs";import"../../chunk-Y6YW4BAZ.mjs";import"../../chunk-DS6QB6HG.mjs";import"../../chunk-FD6FGKYY.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-YOHEYPDP.mjs";import"../../chunk-SRXFRTHK.mjs";import"../../chunk-5IMQPJ6J.mjs";import"../../chunk-RL4YPMN4.mjs";import"../../chunk-UI4OF6CP.mjs";import"../../chunk-PZ233FIY.mjs";import"../../chunk-VW3WBAAD.mjs";import"../../chunk-PCESRJYO.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as deriveTransactionType,b as generateSigningMessage,c as generateSigningMessageForSerializable,d as generateSigningMessageForTransaction};
2
+ //# sourceMappingURL=signingMessage.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,192 @@
1
+ import { aT as InputScriptData, am as TransactionPayloadScript, aQ as InputEntryFunctionDataWithRemoteABI, an as TransactionPayloadEntryFunction, aS as InputMultiSigDataWithRemoteABI, ao as TransactionPayloadMultiSig, aO as InputEntryFunctionDataWithABI, aP as InputMultiSigDataWithABI, aX as InputViewFunctionDataWithRemoteABI, ap as EntryFunction, aY as InputViewFunctionDataWithABI, M as MovementConfig, s as AccountAddressInput, aJ as AnyTransactionPayloadInstance, aG as InputGenerateTransactionOptions, ac as RawTransaction, at as TransactionInnerPayload, b0 as InputGenerateSingleSignerRawTransactionArgs, ag as SimpleTransaction, b1 as InputGenerateMultiAgentRawTransactionArgs, ab as MultiAgentTransaction, b4 as InputSimulateTransactionData, L as PublicKey, a1 as AccountAuthenticatorEd25519, a3 as AccountAuthenticatorSingleKey, a4 as AccountAuthenticatorMultiKey, a5 as AccountAuthenticatorNoAccountAuthenticator, ba as InputSubmitTransactionData } from '../../accountAddress-CNXtapt1.mjs';
2
+ import '../../types/indexer.mjs';
3
+ import '../../types/generated/operations.mjs';
4
+ import '../../types/generated/types.mjs';
5
+ import '../../utils/apiEndpoints.mjs';
6
+ import '../../utils/const.mjs';
7
+ import '../../core/common.mjs';
8
+
9
+ /**
10
+ * Builds a transaction payload based on the provided arguments and returns a transaction payload.
11
+ * This function uses the RemoteABI by default, but can also utilize a specified ABI.
12
+ * When we call our `generateTransactionPayload` function with the relevant type properties,
13
+ * Typescript can infer the return type based on the appropriate function overload.
14
+ * @param args - The input data for generating the transaction payload.
15
+ * @param args.function - The function to be called, specified in the format "moduleAddress::moduleName::functionName".
16
+ * @param args.functionArguments - The arguments to pass to the function.
17
+ * @param args.typeArguments - The type arguments for the function.
18
+ * @param args.movementConfig - The configuration settings for Movement.
19
+ * @param args.abi - The ABI to use for the transaction, if not using the RemoteABI.
20
+ *
21
+ * @returns TransactionPayload - The generated transaction payload, which can be of type TransactionPayloadScript,
22
+ * TransactionPayloadMultiSig, or TransactionPayloadEntryFunction.
23
+ * @group Implementation
24
+ * @category Transactions
25
+ */
26
+ declare function generateTransactionPayload(args: InputScriptData): Promise<TransactionPayloadScript>;
27
+ /**
28
+ * @group Implementation
29
+ * @category Transactions
30
+ */
31
+ declare function generateTransactionPayload(args: InputEntryFunctionDataWithRemoteABI): Promise<TransactionPayloadEntryFunction>;
32
+ /**
33
+ * @group Implementation
34
+ * @category Transactions
35
+ */
36
+ declare function generateTransactionPayload(args: InputMultiSigDataWithRemoteABI): Promise<TransactionPayloadMultiSig>;
37
+ /**
38
+ * Generates a transaction payload using the provided ABI and function details.
39
+ * This function helps create a properly structured transaction payload for executing a specific function on a module.
40
+ *
41
+ * @param args - The input data required to generate the transaction payload.
42
+ * @param args.abi - The ABI of the function to be executed.
43
+ * @param args.function - The fully qualified name of the function in the format `moduleAddress::moduleName::functionName`.
44
+ * @param args.typeArguments - An array of type arguments that correspond to the function's type parameters.
45
+ * @param args.functionArguments - An array of arguments to be passed to the function.
46
+ * @param args.multisigAddress - (Optional) The address for a multisig transaction if applicable.
47
+ *
48
+ * @throws Error if the type argument count does not match the ABI or if the number of function arguments is incorrect.
49
+ * @group Implementation
50
+ * @category Transactions
51
+ */
52
+ declare function generateTransactionPayloadWithABI(args: InputEntryFunctionDataWithABI): TransactionPayloadEntryFunction;
53
+ /**
54
+ * @group Implementation
55
+ * @category Transactions
56
+ */
57
+ declare function generateTransactionPayloadWithABI(args: InputMultiSigDataWithABI): TransactionPayloadMultiSig;
58
+ /**
59
+ * Generates the payload for a view function call using the provided arguments.
60
+ * This function helps in preparing the necessary data to interact with a specific view function on the blockchain.
61
+ *
62
+ * @param args - The input data required to generate the view function payload.
63
+ * @param args.function - The function identifier in the format "moduleAddress::moduleName::functionName".
64
+ * @param args.movementConfig - Configuration settings for the Movement client.
65
+ * @param args.abi - The ABI (Application Binary Interface) of the module.
66
+ *
67
+ * @returns The generated payload for the view function call.
68
+ * @group Implementation
69
+ * @category Transactions
70
+ */
71
+ declare function generateViewFunctionPayload(args: InputViewFunctionDataWithRemoteABI): Promise<EntryFunction>;
72
+ /**
73
+ * Generates a payload for a view function call using the provided ABI and arguments.
74
+ * This function ensures that the type arguments and function arguments are correctly formatted
75
+ * and match the expected counts as defined in the ABI.
76
+ *
77
+ * @param args - The input data for generating the view function payload.
78
+ * @param args.abi - The ABI of the function to be called.
79
+ * @param args.function - The full name of the function in the format "moduleAddress::moduleName::functionName".
80
+ * @param args.typeArguments - An array of type arguments to be used in the function call.
81
+ * @param args.functionArguments - An array of arguments to be passed to the function.
82
+ *
83
+ * @throws Error if the type argument count does not match the ABI or if the function arguments
84
+ * do not match the expected parameters defined in the ABI.
85
+ * @group Implementation
86
+ * @category Transactions
87
+ */
88
+ declare function generateViewFunctionPayloadWithABI(args: InputViewFunctionDataWithABI): EntryFunction;
89
+ /**
90
+ * Generates a raw transaction that can be sent to the Movement network.
91
+ *
92
+ * @param args - The arguments for generating the raw transaction.
93
+ * @param args.movementConfig - The configuration for the Movement network.
94
+ * @param args.sender - The transaction's sender account address as a hex input.
95
+ * @param args.payload - The transaction payload, which can be created using generateTransactionPayload().
96
+ * @param args.options - Optional parameters for transaction generation.
97
+ * @param args.feePayerAddress - The address of the fee payer for sponsored transactions.
98
+ *
99
+ * @returns RawTransaction - The generated raw transaction.
100
+ * @group Implementation
101
+ * @category Transactions
102
+ */
103
+ declare function generateRawTransaction(args: {
104
+ movementConfig: MovementConfig;
105
+ sender: AccountAddressInput;
106
+ payload: AnyTransactionPayloadInstance;
107
+ options?: InputGenerateTransactionOptions;
108
+ feePayerAddress?: AccountAddressInput;
109
+ }): Promise<RawTransaction>;
110
+ declare function convertPayloadToInnerPayload(payload: AnyTransactionPayloadInstance, replayProtectionNonce?: bigint): TransactionInnerPayload;
111
+ /**
112
+ * Generates a transaction based on the provided arguments.
113
+ * This function can create both simple and multi-agent transactions, allowing for flexible transaction handling.
114
+ *
115
+ * @param args - The input arguments for generating the transaction.
116
+ * @param args.movementConfig - The configuration settings for Movement.
117
+ * @param args.sender - The transaction's sender account address as a hex input.
118
+ * @param args.payload - The transaction payload, which can be created using `generateTransactionPayload()`.
119
+ * @param args.options - Optional. Transaction options object.
120
+ * @param args.secondarySignerAddresses - Optional. An array of addresses for additional signers in a multi-signature transaction.
121
+ * @param args.feePayerAddress - Optional. The address of the fee payer for sponsored transactions.
122
+ * @returns An instance of a transaction, which may include secondary signer addresses and a fee payer address.
123
+ * @group Implementation
124
+ * @category Transactions
125
+ */
126
+ declare function buildTransaction(args: InputGenerateSingleSignerRawTransactionArgs): Promise<SimpleTransaction>;
127
+ /**
128
+ * @group Implementation
129
+ * @category Transactions
130
+ */
131
+ declare function buildTransaction(args: InputGenerateMultiAgentRawTransactionArgs): Promise<MultiAgentTransaction>;
132
+ /**
133
+ * Generate a signed transaction for simulation before submitting it to the chain.
134
+ * This function helps in preparing a transaction that can be simulated, allowing users to verify its validity and expected behavior.
135
+ *
136
+ * @param args - The input data required to generate the signed transaction for simulation.
137
+ * @param args.transaction - An Movement transaction type to sign.
138
+ * @param args.signerPublicKey - The public key of the signer.
139
+ * @param args.secondarySignersPublicKeys - Optional. The public keys of secondary signers if it is a multi-signer transaction.
140
+ * @param args.feePayerPublicKey - Optional. The public key of the fee payer in a sponsored transaction.
141
+ * @param args.options - Optional. Additional options for simulating the transaction.
142
+ *
143
+ * @returns A signed serialized transaction that can be simulated.
144
+ * @group Implementation
145
+ * @category Transactions
146
+ */
147
+ declare function generateSignedTransactionForSimulation(args: InputSimulateTransactionData): Uint8Array;
148
+ /**
149
+ * @group Implementation
150
+ * @category Transactions
151
+ */
152
+ declare function getAuthenticatorForSimulation(publicKey?: PublicKey): AccountAuthenticatorEd25519 | AccountAuthenticatorSingleKey | AccountAuthenticatorMultiKey | AccountAuthenticatorNoAccountAuthenticator;
153
+ /**
154
+ * Generate a signed transaction ready for submission to the blockchain.
155
+ * This function prepares the transaction by authenticating the sender and any additional signers based on the provided arguments.
156
+ *
157
+ * @param args - The input data required to generate the signed transaction.
158
+ * @param args.transaction - An Movement transaction type containing the details of the transaction.
159
+ * @param args.senderAuthenticator - The account authenticator of the transaction sender.
160
+ * @param args.feePayerAuthenticator - The authenticator for the fee payer, required if the transaction has a fee payer address.
161
+ * @param args.additionalSignersAuthenticators - Optional authenticators for additional signers in a multi-signer transaction.
162
+ *
163
+ * @returns A Uint8Array representing the signed transaction in bytes.
164
+ *
165
+ * @throws Error if the feePayerAuthenticator is not provided for a fee payer transaction.
166
+ * @throws Error if additionalSignersAuthenticators are not provided for a multi-signer transaction.
167
+ * @group Implementation
168
+ * @category Transactions
169
+ */
170
+ declare function generateSignedTransaction(args: InputSubmitTransactionData): Uint8Array;
171
+ /**
172
+ * Hashes the set of values using a SHA-3 256 hash algorithm.
173
+ * @param input - An array of UTF-8 strings or Uint8Array byte arrays to be hashed.
174
+ * @group Implementation
175
+ * @category Transactions
176
+ */
177
+ declare function hashValues(input: (Uint8Array | string)[]): Uint8Array;
178
+ /**
179
+ * Generates a user transaction hash for the provided transaction payload, which must already have an authenticator.
180
+ * This function helps ensure the integrity and uniqueness of the transaction by producing a hash based on the signed transaction data.
181
+ *
182
+ * @param args - The input data required to submit the transaction.
183
+ * @param args.authenticator - The authenticator for the transaction.
184
+ * @param args.payload - The payload containing the transaction details.
185
+ * @param args.sender - The address of the sender initiating the transaction.
186
+ * @param args.sequenceNumber - The sequence number of the transaction for the sender.
187
+ * @group Implementation
188
+ * @category Transactions
189
+ */
190
+ declare function generateUserTransactionHash(args: InputSubmitTransactionData): string;
191
+
192
+ export { buildTransaction, convertPayloadToInnerPayload, generateRawTransaction, generateSignedTransaction, generateSignedTransactionForSimulation, generateTransactionPayload, generateTransactionPayloadWithABI, generateUserTransactionHash, generateViewFunctionPayload, generateViewFunctionPayloadWithABI, getAuthenticatorForSimulation, hashValues };
@@ -0,0 +1,2 @@
1
+ import{ac as a,bc as b,cc as c,dc as d,ec as e,fc as f,gc as g,hc as h,ic as i,jc as j,kc as k,lc as l}from"../../chunk-47V7UGV5.mjs";import"../../chunk-A5L76YP7.mjs";import"../../chunk-YFFYA5U3.mjs";import"../../chunk-UYVPNUH3.mjs";import"../../chunk-G3MHXDYA.mjs";import"../../chunk-RUIFVDWM.mjs";import"../../chunk-WVDICMU4.mjs";import"../../chunk-2KDUIZKB.mjs";import"../../chunk-OOOAVIMQ.mjs";import"../../chunk-V3O2SBO4.mjs";import"../../chunk-D6HPXGEP.mjs";import"../../chunk-5HXLZHDW.mjs";import"../../chunk-7TTTMBAK.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-2QTV4AOE.mjs";import"../../chunk-PHRRBT44.mjs";import"../../chunk-VEZCMPUG.mjs";import"../../chunk-CHWDP6AR.mjs";import"../../chunk-V3MBJJTL.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-ZP4DWSQA.mjs";import"../../chunk-NUB6KE73.mjs";import"../../chunk-I6YGBK5S.mjs";import"../../chunk-S4D2KBYN.mjs";import"../../chunk-CRCE7R4D.mjs";import"../../chunk-NQUZ4UHR.mjs";import"../../chunk-NMFJJOGW.mjs";import"../../chunk-5ZKA765G.mjs";import"../../chunk-FJRPU2NH.mjs";import"../../chunk-UL777LTI.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SYXDZA4K.mjs";import"../../chunk-R2G23RIY.mjs";import"../../chunk-MEWW7VTQ.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-ANTEUWH6.mjs";import"../../chunk-KPJGWDSQ.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-6NO4QKAO.mjs";import"../../chunk-FS5ZJKO7.mjs";import"../../chunk-UVP74ONT.mjs";import"../../chunk-XCURF77K.mjs";import"../../chunk-RXHPS4IU.mjs";import"../../chunk-WFAH73WN.mjs";import"../../chunk-Y6YW4BAZ.mjs";import"../../chunk-DS6QB6HG.mjs";import"../../chunk-FD6FGKYY.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-YOHEYPDP.mjs";import"../../chunk-SRXFRTHK.mjs";import"../../chunk-5IMQPJ6J.mjs";import"../../chunk-RL4YPMN4.mjs";import"../../chunk-UI4OF6CP.mjs";import"../../chunk-PZ233FIY.mjs";import"../../chunk-VW3WBAAD.mjs";import"../../chunk-PCESRJYO.mjs";import"../../chunk-KDMSOCZY.mjs";export{g as buildTransaction,f as convertPayloadToInnerPayload,e as generateRawTransaction,j as generateSignedTransaction,h as generateSignedTransactionForSimulation,a as generateTransactionPayload,b as generateTransactionPayloadWithABI,l as generateUserTransactionHash,c as generateViewFunctionPayload,d as generateViewFunctionPayloadWithABI,i as getAuthenticatorForSimulation,k as hashValues};
2
+ //# sourceMappingURL=transactionBuilder.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,7 @@
1
+ export { bv as StructTag, bb as TypeTag, bp as TypeTagAddress, bc as TypeTagBool, bs as TypeTagGeneric, bm as TypeTagI128, bg as TypeTagI16, bo as TypeTagI256, bi as TypeTagI32, bk as TypeTagI64, be as TypeTagI8, br as TypeTagReference, bq as TypeTagSigner, bu as TypeTagStruct, bl as TypeTagU128, bf as TypeTagU16, bn as TypeTagU256, bh as TypeTagU32, bj as TypeTagU64, bd as TypeTagU8, bt as TypeTagVector, bw as aptosCoinStructTag, bz as objectStructTag, by as optionStructTag, bx as stringStructTag } from '../../accountAddress-CNXtapt1.mjs';
2
+ import '../../types/indexer.mjs';
3
+ import '../../types/generated/operations.mjs';
4
+ import '../../types/generated/types.mjs';
5
+ import '../../utils/apiEndpoints.mjs';
6
+ import '../../utils/const.mjs';
7
+ import '../../core/common.mjs';
@@ -0,0 +1,2 @@
1
+ import{Aa as y,ca as a,da as b,ea as c,fa as d,ga as e,ha as f,ia as g,ja as h,ka as i,la as j,ma as k,na as l,oa as m,pa as n,qa as o,ra as p,sa as q,ta as r,ua as s,va as t,wa as u,xa as v,ya as w,za as x}from"../../chunk-47V7UGV5.mjs";import"../../chunk-A5L76YP7.mjs";import"../../chunk-YFFYA5U3.mjs";import"../../chunk-UYVPNUH3.mjs";import"../../chunk-G3MHXDYA.mjs";import"../../chunk-RUIFVDWM.mjs";import"../../chunk-WVDICMU4.mjs";import"../../chunk-2KDUIZKB.mjs";import"../../chunk-OOOAVIMQ.mjs";import"../../chunk-V3O2SBO4.mjs";import"../../chunk-D6HPXGEP.mjs";import"../../chunk-5HXLZHDW.mjs";import"../../chunk-7TTTMBAK.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-2QTV4AOE.mjs";import"../../chunk-PHRRBT44.mjs";import"../../chunk-VEZCMPUG.mjs";import"../../chunk-CHWDP6AR.mjs";import"../../chunk-V3MBJJTL.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-ZP4DWSQA.mjs";import"../../chunk-NUB6KE73.mjs";import"../../chunk-I6YGBK5S.mjs";import"../../chunk-S4D2KBYN.mjs";import"../../chunk-CRCE7R4D.mjs";import"../../chunk-NQUZ4UHR.mjs";import"../../chunk-NMFJJOGW.mjs";import"../../chunk-5ZKA765G.mjs";import"../../chunk-FJRPU2NH.mjs";import"../../chunk-UL777LTI.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SYXDZA4K.mjs";import"../../chunk-R2G23RIY.mjs";import"../../chunk-MEWW7VTQ.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-ANTEUWH6.mjs";import"../../chunk-KPJGWDSQ.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-6NO4QKAO.mjs";import"../../chunk-FS5ZJKO7.mjs";import"../../chunk-UVP74ONT.mjs";import"../../chunk-XCURF77K.mjs";import"../../chunk-RXHPS4IU.mjs";import"../../chunk-WFAH73WN.mjs";import"../../chunk-Y6YW4BAZ.mjs";import"../../chunk-DS6QB6HG.mjs";import"../../chunk-FD6FGKYY.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-YOHEYPDP.mjs";import"../../chunk-SRXFRTHK.mjs";import"../../chunk-5IMQPJ6J.mjs";import"../../chunk-RL4YPMN4.mjs";import"../../chunk-UI4OF6CP.mjs";import"../../chunk-PZ233FIY.mjs";import"../../chunk-VW3WBAAD.mjs";import"../../chunk-PCESRJYO.mjs";import"../../chunk-KDMSOCZY.mjs";export{u as StructTag,a as TypeTag,o as TypeTagAddress,b as TypeTagBool,r as TypeTagGeneric,l as TypeTagI128,f as TypeTagI16,n as TypeTagI256,h as TypeTagI32,j as TypeTagI64,d as TypeTagI8,q as TypeTagReference,p as TypeTagSigner,t as TypeTagStruct,k as TypeTagU128,e as TypeTagU16,m as TypeTagU256,g as TypeTagU32,i as TypeTagU64,c as TypeTagU8,s as TypeTagVector,v as aptosCoinStructTag,y as objectStructTag,x as optionStructTag,w as stringStructTag};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,81 @@
1
+ import { bb as TypeTag } from '../../accountAddress-CNXtapt1.mjs';
2
+ import '../../types/indexer.mjs';
3
+ import '../../types/generated/operations.mjs';
4
+ import '../../types/generated/types.mjs';
5
+ import '../../utils/apiEndpoints.mjs';
6
+ import '../../utils/const.mjs';
7
+ import '../../core/common.mjs';
8
+
9
+ /**
10
+ * Error types related to parsing type tags, indicating various issues encountered during the parsing process.
11
+ * @group Implementation
12
+ * @category Transactions
13
+ */
14
+ declare enum TypeTagParserErrorType {
15
+ InvalidTypeTag = "unknown type",
16
+ UnexpectedGenericType = "unexpected generic type",
17
+ UnexpectedTypeArgumentClose = "unexpected '>'",
18
+ UnexpectedWhitespaceCharacter = "unexpected whitespace character",
19
+ UnexpectedComma = "unexpected ','",
20
+ TypeArgumentCountMismatch = "type argument count doesn't match expected amount",
21
+ MissingTypeArgumentClose = "no matching '>' for '<'",
22
+ MissingTypeArgument = "no type argument before ','",
23
+ UnexpectedPrimitiveTypeArguments = "primitive types not expected to have type arguments",
24
+ UnexpectedVectorTypeArgumentCount = "vector type expected to have exactly one type argument",
25
+ UnexpectedStructFormat = "unexpected struct format, must be of the form 0xaddress::module_name::struct_name",
26
+ InvalidModuleNameCharacter = "module name must only contain alphanumeric or '_' characters",
27
+ InvalidStructNameCharacter = "struct name must only contain alphanumeric or '_' characters",
28
+ InvalidAddress = "struct address must be valid"
29
+ }
30
+ /**
31
+ * Represents an error that occurs during the parsing of a type tag.
32
+ * This error extends the built-in Error class and provides additional context
33
+ * regarding the specific type tag that failed to parse and the reason for the failure.
34
+ *
35
+ * @param typeTagStr - The type tag string that failed to be parsed.
36
+ * @param invalidReason - The reason why the type tag string is considered invalid.
37
+ * @group Implementation
38
+ * @category Transactions
39
+ */
40
+ declare class TypeTagParserError extends Error {
41
+ /**
42
+ * Constructs an error indicating a failure to parse a type tag.
43
+ * This error provides details about the specific type tag that could not be parsed and the reason for the failure.
44
+ *
45
+ * @param typeTagStr - The string representation of the type tag that failed to parse.
46
+ * @param invalidReason - The reason why the type tag is considered invalid.
47
+ * @group Implementation
48
+ * @category Transactions
49
+ */
50
+ constructor(typeTagStr: string, invalidReason: TypeTagParserErrorType);
51
+ }
52
+ /**
53
+ * Parses a type string into a structured representation of type tags, accommodating various formats including generics and
54
+ * nested types.
55
+ *
56
+ * This function can help you accurately interpret type strings, which can include simple types, standalone structs, and complex
57
+ * nested generics.
58
+ * It supports multiple generics, spacing within generics, and nested generics of varying depths.
59
+ * All types are made of a few parts they're either:
60
+ * 1. A simple type e.g. u8
61
+ * 2. A standalone struct e.g. 0x1::account::Account
62
+ * 3. A nested struct e.g. 0x1::coin::Coin<0x1234::coin::MyCoin>
63
+ *
64
+ * There are a few more special cases that need to be handled, however.
65
+ * 1. Multiple generics e.g. 0x1::pair::Pair<u8, u16>
66
+ * 2. Spacing in the generics e.g. 0x1::pair::Pair< u8 , u16>
67
+ * 3. Nested generics of different depths e.g. 0x1::pair::Pair<0x1::coin::Coin<0x1234::coin::MyCoin>, u8>
68
+ * 4. Generics for types in ABIs are filled in with placeholders e.g. T1, T2, T3
69
+ * @param typeStr - The string representation of the type to be parsed.
70
+ * @param options - Optional settings for parsing behavior.
71
+ * @param options.allowGenerics - A flag indicating whether to allow generics in the parsing process.
72
+ * @returns The parsed type tag representation.
73
+ * @throws TypeTagParserError if the type string is malformed or does not conform to expected formats.
74
+ * @group Implementation
75
+ * @category Transactions
76
+ */
77
+ declare function parseTypeTag(typeStr: string, options?: {
78
+ allowGenerics?: boolean;
79
+ }): TypeTag;
80
+
81
+ export { TypeTagParserError, TypeTagParserErrorType, parseTypeTag };
@@ -0,0 +1,2 @@
1
+ import{Rb as a,Sb as b,Tb as c}from"../../chunk-47V7UGV5.mjs";import"../../chunk-A5L76YP7.mjs";import"../../chunk-YFFYA5U3.mjs";import"../../chunk-UYVPNUH3.mjs";import"../../chunk-G3MHXDYA.mjs";import"../../chunk-RUIFVDWM.mjs";import"../../chunk-WVDICMU4.mjs";import"../../chunk-2KDUIZKB.mjs";import"../../chunk-OOOAVIMQ.mjs";import"../../chunk-V3O2SBO4.mjs";import"../../chunk-D6HPXGEP.mjs";import"../../chunk-5HXLZHDW.mjs";import"../../chunk-7TTTMBAK.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-2QTV4AOE.mjs";import"../../chunk-PHRRBT44.mjs";import"../../chunk-VEZCMPUG.mjs";import"../../chunk-CHWDP6AR.mjs";import"../../chunk-V3MBJJTL.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-ZP4DWSQA.mjs";import"../../chunk-NUB6KE73.mjs";import"../../chunk-I6YGBK5S.mjs";import"../../chunk-S4D2KBYN.mjs";import"../../chunk-CRCE7R4D.mjs";import"../../chunk-NQUZ4UHR.mjs";import"../../chunk-NMFJJOGW.mjs";import"../../chunk-5ZKA765G.mjs";import"../../chunk-FJRPU2NH.mjs";import"../../chunk-UL777LTI.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SYXDZA4K.mjs";import"../../chunk-R2G23RIY.mjs";import"../../chunk-MEWW7VTQ.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-ANTEUWH6.mjs";import"../../chunk-KPJGWDSQ.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-6NO4QKAO.mjs";import"../../chunk-FS5ZJKO7.mjs";import"../../chunk-UVP74ONT.mjs";import"../../chunk-XCURF77K.mjs";import"../../chunk-RXHPS4IU.mjs";import"../../chunk-WFAH73WN.mjs";import"../../chunk-Y6YW4BAZ.mjs";import"../../chunk-DS6QB6HG.mjs";import"../../chunk-FD6FGKYY.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-YOHEYPDP.mjs";import"../../chunk-SRXFRTHK.mjs";import"../../chunk-5IMQPJ6J.mjs";import"../../chunk-RL4YPMN4.mjs";import"../../chunk-UI4OF6CP.mjs";import"../../chunk-PZ233FIY.mjs";import"../../chunk-VW3WBAAD.mjs";import"../../chunk-PCESRJYO.mjs";import"../../chunk-KDMSOCZY.mjs";export{b as TypeTagParserError,a as TypeTagParserErrorType,c as parseTypeTag};
2
+ //# sourceMappingURL=parser.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,7 @@
1
+ export { b3 as AnyRawTransaction, aF as AnyRawTransactionInstance, aJ as AnyTransactionPayloadInstance, a_ as EntryFunctionABI, aC as EntryFunctionArgumentTypes, aZ as FunctionABI, aM as InputEntryFunctionData, aO as InputEntryFunctionDataWithABI, aQ as InputEntryFunctionDataWithRemoteABI, b1 as InputGenerateMultiAgentRawTransactionArgs, b7 as InputGenerateMultiAgentRawTransactionData, aI as InputGenerateOrderlessTransactionOptions, b2 as InputGenerateRawTransactionArgs, aH as InputGenerateSequenceNumberTransactionOptions, b0 as InputGenerateSingleSignerRawTransactionArgs, b6 as InputGenerateSingleSignerRawTransactionData, b8 as InputGenerateTransactionData, aG as InputGenerateTransactionOptions, aK as InputGenerateTransactionPayloadData, aN as InputGenerateTransactionPayloadDataWithABI, aL as InputGenerateTransactionPayloadDataWithRemoteABI, aR as InputMultiSigData, aP as InputMultiSigDataWithABI, aS as InputMultiSigDataWithRemoteABI, aT as InputScriptData, b4 as InputSimulateTransactionData, b5 as InputSimulateTransactionOptions, ba as InputSubmitTransactionData, b9 as InputTransactionPluginData, aU as InputViewFunctionData, aY as InputViewFunctionDataWithABI, aX as InputViewFunctionDataWithRemoteABI, aV as InputViewFunctionJsonData, aD as ScriptFunctionArgumentTypes, aB as SimpleEntryFunctionArgumentTypes, aE as TypeArgument, a$ as ViewFunctionABI, aW as ViewFunctionJsonPayload } from '../accountAddress-CNXtapt1.mjs';
2
+ import '../types/indexer.mjs';
3
+ import '../types/generated/operations.mjs';
4
+ import '../types/generated/types.mjs';
5
+ import '../utils/apiEndpoints.mjs';
6
+ import '../utils/const.mjs';
7
+ import '../core/common.mjs';
@@ -0,0 +1,2 @@
1
+ import"../chunk-V3MBJJTL.mjs";
2
+ //# sourceMappingURL=types.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,15 @@
1
+ /**
2
+ * The variant for the AbstractAuthenticationData enum.
3
+ */
4
+ declare enum AbstractAuthenticationDataVariant {
5
+ V1 = 0,
6
+ DerivableV1 = 1
7
+ }
8
+ /**
9
+ * The variant for the AASigningData enum.
10
+ */
11
+ declare enum AASigningDataVariant {
12
+ V1 = 0
13
+ }
14
+
15
+ export { AASigningDataVariant, AbstractAuthenticationDataVariant };
@@ -0,0 +1,2 @@
1
+ import{a,b}from"../chunk-ZP4DWSQA.mjs";import"../chunk-KDMSOCZY.mjs";export{b as AASigningDataVariant,a as AbstractAuthenticationDataVariant};
2
+ //# sourceMappingURL=abstraction.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}