@ledgerhq/coin-aptos 2.0.0-nightly.5 → 2.1.0-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (533) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/.unimportedrc.json +18 -6
  3. package/CHANGELOG.md +178 -34
  4. package/jest.config.js +2 -1
  5. package/jest.integ.config.js +8 -0
  6. package/lib/__tests__/api/craftTransaction.unit.test.d.ts +2 -0
  7. package/lib/__tests__/api/craftTransaction.unit.test.d.ts.map +1 -0
  8. package/lib/__tests__/api/craftTransaction.unit.test.js +187 -0
  9. package/lib/__tests__/api/craftTransaction.unit.test.js.map +1 -0
  10. package/lib/__tests__/api/getBalance.unit.test.d.ts +2 -0
  11. package/lib/__tests__/api/getBalance.unit.test.d.ts.map +1 -0
  12. package/lib/__tests__/api/getBalance.unit.test.js +41 -0
  13. package/lib/__tests__/api/getBalance.unit.test.js.map +1 -0
  14. package/lib/__tests__/api/index.integ.test.d.ts +2 -0
  15. package/lib/__tests__/api/index.integ.test.d.ts.map +1 -0
  16. package/lib/__tests__/api/index.integ.test.js +319 -0
  17. package/lib/__tests__/api/index.integ.test.js.map +1 -0
  18. package/lib/__tests__/api/index.test.js +48 -404
  19. package/lib/__tests__/api/index.test.js.map +1 -1
  20. package/lib/__tests__/bridge/broadcast.test.js +5 -5
  21. package/lib/__tests__/bridge/broadcast.test.js.map +1 -1
  22. package/lib/__tests__/bridge/getFeesForTransaction.test.js +115 -14
  23. package/lib/__tests__/bridge/getFeesForTransaction.test.js.map +1 -1
  24. package/lib/__tests__/bridge/getTransactionStatus.test.js +175 -37
  25. package/lib/__tests__/bridge/getTransactionStatus.test.js.map +1 -1
  26. package/lib/__tests__/bridge/logic.test.js +703 -479
  27. package/lib/__tests__/bridge/logic.test.js.map +1 -1
  28. package/lib/__tests__/bridge/prepareTransaction.test.js +3 -3
  29. package/lib/__tests__/bridge/prepareTransaction.test.js.map +1 -1
  30. package/lib/__tests__/bridge/signOperation.test.js +137 -14
  31. package/lib/__tests__/bridge/signOperation.test.js.map +1 -1
  32. package/lib/__tests__/bridge/synchronisation.test.js +1215 -68
  33. package/lib/__tests__/bridge/synchronisation.test.js.map +1 -1
  34. package/lib/__tests__/index.test.js +1 -1
  35. package/lib/__tests__/index.test.js.map +1 -1
  36. package/lib/__tests__/logic/buildTransaction.test.d.ts.map +1 -0
  37. package/lib/__tests__/logic/buildTransaction.test.js +114 -0
  38. package/lib/__tests__/logic/buildTransaction.test.js.map +1 -0
  39. package/lib/__tests__/logic/calculateAmount.unit.test.d.ts +2 -0
  40. package/lib/__tests__/logic/calculateAmount.unit.test.d.ts.map +1 -0
  41. package/lib/__tests__/logic/calculateAmount.unit.test.js +45 -0
  42. package/lib/__tests__/logic/calculateAmount.unit.test.js.map +1 -0
  43. package/lib/__tests__/logic/combine.unit.test.d.ts +2 -0
  44. package/lib/__tests__/logic/combine.unit.test.d.ts.map +1 -0
  45. package/lib/__tests__/logic/combine.unit.test.js +47 -0
  46. package/lib/__tests__/logic/combine.unit.test.js.map +1 -0
  47. package/lib/__tests__/logic/compareAddress.unit.test.d.ts +2 -0
  48. package/lib/__tests__/logic/compareAddress.unit.test.d.ts.map +1 -0
  49. package/lib/__tests__/logic/compareAddress.unit.test.js +26 -0
  50. package/lib/__tests__/logic/compareAddress.unit.test.js.map +1 -0
  51. package/lib/__tests__/logic/createTransaction.test.d.ts.map +1 -0
  52. package/lib/__tests__/{bridge → logic}/createTransaction.test.js +2 -2
  53. package/lib/__tests__/logic/createTransaction.test.js.map +1 -0
  54. package/lib/__tests__/logic/getCoinAndAmounts.unit.test.d.ts +2 -0
  55. package/lib/__tests__/logic/getCoinAndAmounts.unit.test.d.ts.map +1 -0
  56. package/lib/__tests__/logic/getCoinAndAmounts.unit.test.js +186 -0
  57. package/lib/__tests__/logic/getCoinAndAmounts.unit.test.js.map +1 -0
  58. package/lib/__tests__/logic/getFunctionAddress.unit.test.d.ts +2 -0
  59. package/lib/__tests__/logic/getFunctionAddress.unit.test.d.ts.map +1 -0
  60. package/lib/__tests__/logic/getFunctionAddress.unit.test.js +29 -0
  61. package/lib/__tests__/logic/getFunctionAddress.unit.test.js.map +1 -0
  62. package/lib/__tests__/logic/getResourceAddress.unit.test.d.ts +2 -0
  63. package/lib/__tests__/logic/getResourceAddress.unit.test.d.ts.map +1 -0
  64. package/lib/__tests__/logic/getResourceAddress.unit.test.js +218 -0
  65. package/lib/__tests__/logic/getResourceAddress.unit.test.js.map +1 -0
  66. package/lib/__tests__/logic/isTestnet.unit.test.d.ts +2 -0
  67. package/lib/__tests__/logic/isTestnet.unit.test.d.ts.map +1 -0
  68. package/lib/__tests__/logic/isTestnet.unit.test.js +12 -0
  69. package/lib/__tests__/logic/isTestnet.unit.test.js.map +1 -0
  70. package/lib/__tests__/logic/normalizeAddress.unit.test.d.ts +2 -0
  71. package/lib/__tests__/logic/normalizeAddress.unit.test.d.ts.map +1 -0
  72. package/lib/__tests__/logic/normalizeAddress.unit.test.js +12 -0
  73. package/lib/__tests__/logic/normalizeAddress.unit.test.js.map +1 -0
  74. package/lib/__tests__/logic/processRecipients.unit.test.d.ts +2 -0
  75. package/lib/__tests__/logic/processRecipients.unit.test.d.ts.map +1 -0
  76. package/lib/__tests__/logic/processRecipients.unit.test.js +79 -0
  77. package/lib/__tests__/logic/processRecipients.unit.test.js.map +1 -0
  78. package/lib/__tests__/network/client.test.d.ts +2 -0
  79. package/lib/__tests__/network/client.test.d.ts.map +1 -0
  80. package/lib/__tests__/network/client.test.js +1124 -0
  81. package/lib/__tests__/network/client.test.js.map +1 -0
  82. package/lib/api/index.d.ts +4 -30
  83. package/lib/api/index.d.ts.map +1 -1
  84. package/lib/api/index.js +19 -170
  85. package/lib/api/index.js.map +1 -1
  86. package/lib/bridge/bridge.fixture.d.ts +2 -0
  87. package/lib/bridge/bridge.fixture.d.ts.map +1 -1
  88. package/lib/bridge/bridge.fixture.js +85 -13
  89. package/lib/bridge/bridge.fixture.js.map +1 -1
  90. package/lib/bridge/broadcast.d.ts +3 -2
  91. package/lib/bridge/broadcast.d.ts.map +1 -1
  92. package/lib/bridge/broadcast.js +4 -3
  93. package/lib/bridge/broadcast.js.map +1 -1
  94. package/lib/bridge/estimateMaxSpendable.d.ts.map +1 -1
  95. package/lib/bridge/estimateMaxSpendable.js +6 -5
  96. package/lib/bridge/estimateMaxSpendable.js.map +1 -1
  97. package/lib/bridge/getFeesForTransaction.d.ts +1 -1
  98. package/lib/bridge/getFeesForTransaction.d.ts.map +1 -1
  99. package/lib/bridge/getFeesForTransaction.js +20 -14
  100. package/lib/bridge/getFeesForTransaction.js.map +1 -1
  101. package/lib/bridge/getTransactionStatus.d.ts.map +1 -1
  102. package/lib/bridge/getTransactionStatus.js +28 -14
  103. package/lib/bridge/getTransactionStatus.js.map +1 -1
  104. package/lib/bridge/index.d.ts +1 -1
  105. package/lib/bridge/index.d.ts.map +1 -1
  106. package/lib/bridge/index.js +1 -1
  107. package/lib/bridge/index.js.map +1 -1
  108. package/lib/bridge/logic.d.ts +5 -19
  109. package/lib/bridge/logic.d.ts.map +1 -1
  110. package/lib/bridge/logic.js +50 -147
  111. package/lib/bridge/logic.js.map +1 -1
  112. package/lib/bridge/prepareTransaction.d.ts.map +1 -1
  113. package/lib/bridge/prepareTransaction.js +5 -4
  114. package/lib/bridge/prepareTransaction.js.map +1 -1
  115. package/lib/bridge/signOperation.d.ts.map +1 -1
  116. package/lib/bridge/signOperation.js +21 -7
  117. package/lib/bridge/signOperation.js.map +1 -1
  118. package/lib/bridge/synchronisation.d.ts +15 -0
  119. package/lib/bridge/synchronisation.d.ts.map +1 -1
  120. package/lib/bridge/synchronisation.js +129 -6
  121. package/lib/bridge/synchronisation.js.map +1 -1
  122. package/lib/config.d.ts +13 -0
  123. package/lib/config.d.ts.map +1 -0
  124. package/lib/config.js +9 -0
  125. package/lib/config.js.map +1 -0
  126. package/lib/constants.d.ts +13 -2
  127. package/lib/constants.d.ts.map +1 -1
  128. package/lib/constants.js +17 -2
  129. package/lib/constants.js.map +1 -1
  130. package/lib/logic/buildTransaction.d.ts +9 -0
  131. package/lib/logic/buildTransaction.d.ts.map +1 -0
  132. package/lib/logic/buildTransaction.js +47 -0
  133. package/lib/logic/buildTransaction.js.map +1 -0
  134. package/lib/logic/calculateAmount.d.ts +3 -0
  135. package/lib/logic/calculateAmount.d.ts.map +1 -0
  136. package/lib/logic/calculateAmount.js +13 -0
  137. package/lib/logic/calculateAmount.js.map +1 -0
  138. package/lib/logic/combine.d.ts +4 -0
  139. package/lib/logic/combine.d.ts.map +1 -0
  140. package/lib/logic/combine.js +34 -0
  141. package/lib/logic/combine.js.map +1 -0
  142. package/lib/logic/craftTransaction.d.ts +5 -0
  143. package/lib/logic/craftTransaction.d.ts.map +1 -0
  144. package/lib/logic/craftTransaction.js +68 -0
  145. package/lib/logic/craftTransaction.js.map +1 -0
  146. package/lib/logic/createTransaction.d.ts.map +1 -0
  147. package/lib/{bridge → logic}/createTransaction.js +3 -3
  148. package/lib/logic/createTransaction.js.map +1 -0
  149. package/lib/logic/getBalance.d.ts +5 -0
  150. package/lib/logic/getBalance.d.ts.map +1 -0
  151. package/lib/logic/getBalance.js +12 -0
  152. package/lib/logic/getBalance.js.map +1 -0
  153. package/lib/logic/getCoinAndAmounts.d.ts +13 -0
  154. package/lib/logic/getCoinAndAmounts.d.ts.map +1 -0
  155. package/lib/logic/getCoinAndAmounts.js +112 -0
  156. package/lib/logic/getCoinAndAmounts.js.map +1 -0
  157. package/lib/logic/getFunctionAddress.d.ts +3 -0
  158. package/lib/logic/getFunctionAddress.d.ts.map +1 -0
  159. package/lib/logic/getFunctionAddress.js +12 -0
  160. package/lib/logic/getFunctionAddress.js.map +1 -0
  161. package/lib/logic/getResourceAddress.d.ts +4 -0
  162. package/lib/logic/getResourceAddress.d.ts.map +1 -0
  163. package/lib/logic/getResourceAddress.js +17 -0
  164. package/lib/logic/getResourceAddress.js.map +1 -0
  165. package/lib/logic/isTestnet.d.ts +2 -0
  166. package/lib/logic/isTestnet.d.ts.map +1 -0
  167. package/lib/logic/isTestnet.js +9 -0
  168. package/lib/logic/isTestnet.js.map +1 -0
  169. package/lib/logic/isWriteSetChangeWriteResource.d.ts +3 -0
  170. package/lib/logic/isWriteSetChangeWriteResource.d.ts.map +1 -0
  171. package/lib/logic/isWriteSetChangeWriteResource.js +8 -0
  172. package/lib/logic/isWriteSetChangeWriteResource.js.map +1 -0
  173. package/lib/logic/normalizeAddress.d.ts +2 -0
  174. package/lib/logic/normalizeAddress.d.ts.map +1 -0
  175. package/lib/logic/normalizeAddress.js +12 -0
  176. package/lib/logic/normalizeAddress.js.map +1 -0
  177. package/lib/logic/normalizeTransactionOptions.d.ts +3 -0
  178. package/lib/logic/normalizeTransactionOptions.d.ts.map +1 -0
  179. package/lib/logic/normalizeTransactionOptions.js +21 -0
  180. package/lib/logic/normalizeTransactionOptions.js.map +1 -0
  181. package/lib/logic/processRecipients.d.ts +6 -0
  182. package/lib/logic/processRecipients.d.ts.map +1 -0
  183. package/lib/logic/processRecipients.js +58 -0
  184. package/lib/logic/processRecipients.js.map +1 -0
  185. package/lib/logic/transactionsToOperations.d.ts +7 -0
  186. package/lib/logic/transactionsToOperations.d.ts.map +1 -0
  187. package/lib/logic/transactionsToOperations.js +89 -0
  188. package/lib/logic/transactionsToOperations.js.map +1 -0
  189. package/lib/network/client.d.ts +38 -0
  190. package/lib/network/client.d.ts.map +1 -0
  191. package/lib/network/client.js +283 -0
  192. package/lib/network/client.js.map +1 -0
  193. package/lib/network/graphql/queries.d.ts.map +1 -0
  194. package/lib/{api → network}/graphql/queries.js +6 -6
  195. package/lib/network/graphql/queries.js.map +1 -0
  196. package/lib/{api → network}/graphql/types.d.ts +9 -9
  197. package/lib/network/graphql/types.d.ts.map +1 -0
  198. package/lib/{api → network}/graphql/types.js.map +1 -1
  199. package/lib/network/index.d.ts +2 -1
  200. package/lib/network/index.d.ts.map +1 -1
  201. package/lib/network/index.js +19 -7
  202. package/lib/network/index.js.map +1 -1
  203. package/lib/test/bot-specs.d.ts.map +1 -1
  204. package/lib/test/bot-specs.js +40 -1
  205. package/lib/test/bot-specs.js.map +1 -1
  206. package/lib/test/bridgeDatasetTest.d.ts.map +1 -1
  207. package/lib/test/bridgeDatasetTest.js +44 -62
  208. package/lib/test/bridgeDatasetTest.js.map +1 -1
  209. package/lib/test/speculos-deviceActions.d.ts +1 -0
  210. package/lib/test/speculos-deviceActions.d.ts.map +1 -1
  211. package/lib/test/speculos-deviceActions.js +37 -5
  212. package/lib/test/speculos-deviceActions.js.map +1 -1
  213. package/lib/types/assets.d.ts +16 -0
  214. package/lib/types/assets.d.ts.map +1 -0
  215. package/lib/types/assets.js +3 -0
  216. package/lib/types/assets.js.map +1 -0
  217. package/lib/types/index.d.ts +22 -7
  218. package/lib/types/index.d.ts.map +1 -1
  219. package/lib-es/__tests__/api/craftTransaction.unit.test.d.ts +2 -0
  220. package/lib-es/__tests__/api/craftTransaction.unit.test.d.ts.map +1 -0
  221. package/lib-es/__tests__/api/craftTransaction.unit.test.js +185 -0
  222. package/lib-es/__tests__/api/craftTransaction.unit.test.js.map +1 -0
  223. package/lib-es/__tests__/api/getBalance.unit.test.d.ts +2 -0
  224. package/lib-es/__tests__/api/getBalance.unit.test.d.ts.map +1 -0
  225. package/lib-es/__tests__/api/getBalance.unit.test.js +36 -0
  226. package/lib-es/__tests__/api/getBalance.unit.test.js.map +1 -0
  227. package/lib-es/__tests__/api/index.integ.test.d.ts +2 -0
  228. package/lib-es/__tests__/api/index.integ.test.d.ts.map +1 -0
  229. package/lib-es/__tests__/api/index.integ.test.js +317 -0
  230. package/lib-es/__tests__/api/index.integ.test.js.map +1 -0
  231. package/lib-es/__tests__/api/index.test.js +52 -408
  232. package/lib-es/__tests__/api/index.test.js.map +1 -1
  233. package/lib-es/__tests__/bridge/broadcast.test.js +2 -2
  234. package/lib-es/__tests__/bridge/broadcast.test.js.map +1 -1
  235. package/lib-es/__tests__/bridge/getFeesForTransaction.test.js +112 -11
  236. package/lib-es/__tests__/bridge/getFeesForTransaction.test.js.map +1 -1
  237. package/lib-es/__tests__/bridge/getTransactionStatus.test.js +177 -39
  238. package/lib-es/__tests__/bridge/getTransactionStatus.test.js.map +1 -1
  239. package/lib-es/__tests__/bridge/logic.test.js +703 -479
  240. package/lib-es/__tests__/bridge/logic.test.js.map +1 -1
  241. package/lib-es/__tests__/bridge/prepareTransaction.test.js +2 -2
  242. package/lib-es/__tests__/bridge/prepareTransaction.test.js.map +1 -1
  243. package/lib-es/__tests__/bridge/signOperation.test.js +137 -14
  244. package/lib-es/__tests__/bridge/signOperation.test.js.map +1 -1
  245. package/lib-es/__tests__/bridge/synchronisation.test.js +1213 -69
  246. package/lib-es/__tests__/bridge/synchronisation.test.js.map +1 -1
  247. package/lib-es/__tests__/index.test.js +1 -1
  248. package/lib-es/__tests__/index.test.js.map +1 -1
  249. package/lib-es/__tests__/logic/buildTransaction.test.d.ts.map +1 -0
  250. package/lib-es/__tests__/logic/buildTransaction.test.js +109 -0
  251. package/lib-es/__tests__/logic/buildTransaction.test.js.map +1 -0
  252. package/lib-es/__tests__/logic/calculateAmount.unit.test.d.ts +2 -0
  253. package/lib-es/__tests__/logic/calculateAmount.unit.test.d.ts.map +1 -0
  254. package/lib-es/__tests__/logic/calculateAmount.unit.test.js +40 -0
  255. package/lib-es/__tests__/logic/calculateAmount.unit.test.js.map +1 -0
  256. package/lib-es/__tests__/logic/combine.unit.test.d.ts +2 -0
  257. package/lib-es/__tests__/logic/combine.unit.test.d.ts.map +1 -0
  258. package/lib-es/__tests__/logic/combine.unit.test.js +45 -0
  259. package/lib-es/__tests__/logic/combine.unit.test.js.map +1 -0
  260. package/lib-es/__tests__/logic/compareAddress.unit.test.d.ts +2 -0
  261. package/lib-es/__tests__/logic/compareAddress.unit.test.d.ts.map +1 -0
  262. package/lib-es/__tests__/logic/compareAddress.unit.test.js +24 -0
  263. package/lib-es/__tests__/logic/compareAddress.unit.test.js.map +1 -0
  264. package/lib-es/__tests__/logic/createTransaction.test.d.ts.map +1 -0
  265. package/lib-es/__tests__/{bridge → logic}/createTransaction.test.js +2 -2
  266. package/lib-es/__tests__/logic/createTransaction.test.js.map +1 -0
  267. package/lib-es/__tests__/logic/getCoinAndAmounts.unit.test.d.ts +2 -0
  268. package/lib-es/__tests__/logic/getCoinAndAmounts.unit.test.d.ts.map +1 -0
  269. package/lib-es/__tests__/logic/getCoinAndAmounts.unit.test.js +181 -0
  270. package/lib-es/__tests__/logic/getCoinAndAmounts.unit.test.js.map +1 -0
  271. package/lib-es/__tests__/logic/getFunctionAddress.unit.test.d.ts +2 -0
  272. package/lib-es/__tests__/logic/getFunctionAddress.unit.test.d.ts.map +1 -0
  273. package/lib-es/__tests__/logic/getFunctionAddress.unit.test.js +27 -0
  274. package/lib-es/__tests__/logic/getFunctionAddress.unit.test.js.map +1 -0
  275. package/lib-es/__tests__/logic/getResourceAddress.unit.test.d.ts +2 -0
  276. package/lib-es/__tests__/logic/getResourceAddress.unit.test.d.ts.map +1 -0
  277. package/lib-es/__tests__/logic/getResourceAddress.unit.test.js +216 -0
  278. package/lib-es/__tests__/logic/getResourceAddress.unit.test.js.map +1 -0
  279. package/lib-es/__tests__/logic/isTestnet.unit.test.d.ts +2 -0
  280. package/lib-es/__tests__/logic/isTestnet.unit.test.d.ts.map +1 -0
  281. package/lib-es/__tests__/logic/isTestnet.unit.test.js +10 -0
  282. package/lib-es/__tests__/logic/isTestnet.unit.test.js.map +1 -0
  283. package/lib-es/__tests__/logic/normalizeAddress.unit.test.d.ts +2 -0
  284. package/lib-es/__tests__/logic/normalizeAddress.unit.test.d.ts.map +1 -0
  285. package/lib-es/__tests__/logic/normalizeAddress.unit.test.js +10 -0
  286. package/lib-es/__tests__/logic/normalizeAddress.unit.test.js.map +1 -0
  287. package/lib-es/__tests__/logic/processRecipients.unit.test.d.ts +2 -0
  288. package/lib-es/__tests__/logic/processRecipients.unit.test.d.ts.map +1 -0
  289. package/lib-es/__tests__/logic/processRecipients.unit.test.js +74 -0
  290. package/lib-es/__tests__/logic/processRecipients.unit.test.js.map +1 -0
  291. package/lib-es/__tests__/network/client.test.d.ts +2 -0
  292. package/lib-es/__tests__/network/client.test.d.ts.map +1 -0
  293. package/lib-es/__tests__/network/client.test.js +1119 -0
  294. package/lib-es/__tests__/network/client.test.js.map +1 -0
  295. package/lib-es/api/index.d.ts +4 -30
  296. package/lib-es/api/index.d.ts.map +1 -1
  297. package/lib-es/api/index.js +17 -168
  298. package/lib-es/api/index.js.map +1 -1
  299. package/lib-es/bridge/bridge.fixture.d.ts +2 -0
  300. package/lib-es/bridge/bridge.fixture.d.ts.map +1 -1
  301. package/lib-es/bridge/bridge.fixture.js +82 -12
  302. package/lib-es/bridge/bridge.fixture.js.map +1 -1
  303. package/lib-es/bridge/broadcast.d.ts +3 -2
  304. package/lib-es/bridge/broadcast.d.ts.map +1 -1
  305. package/lib-es/bridge/broadcast.js +4 -3
  306. package/lib-es/bridge/broadcast.js.map +1 -1
  307. package/lib-es/bridge/estimateMaxSpendable.d.ts.map +1 -1
  308. package/lib-es/bridge/estimateMaxSpendable.js +4 -3
  309. package/lib-es/bridge/estimateMaxSpendable.js.map +1 -1
  310. package/lib-es/bridge/getFeesForTransaction.d.ts +1 -1
  311. package/lib-es/bridge/getFeesForTransaction.d.ts.map +1 -1
  312. package/lib-es/bridge/getFeesForTransaction.js +15 -9
  313. package/lib-es/bridge/getFeesForTransaction.js.map +1 -1
  314. package/lib-es/bridge/getTransactionStatus.d.ts.map +1 -1
  315. package/lib-es/bridge/getTransactionStatus.js +28 -14
  316. package/lib-es/bridge/getTransactionStatus.js.map +1 -1
  317. package/lib-es/bridge/index.d.ts +1 -1
  318. package/lib-es/bridge/index.d.ts.map +1 -1
  319. package/lib-es/bridge/index.js +1 -1
  320. package/lib-es/bridge/index.js.map +1 -1
  321. package/lib-es/bridge/logic.d.ts +5 -19
  322. package/lib-es/bridge/logic.d.ts.map +1 -1
  323. package/lib-es/bridge/logic.js +44 -134
  324. package/lib-es/bridge/logic.js.map +1 -1
  325. package/lib-es/bridge/prepareTransaction.d.ts.map +1 -1
  326. package/lib-es/bridge/prepareTransaction.js +5 -4
  327. package/lib-es/bridge/prepareTransaction.js.map +1 -1
  328. package/lib-es/bridge/signOperation.d.ts.map +1 -1
  329. package/lib-es/bridge/signOperation.js +19 -5
  330. package/lib-es/bridge/signOperation.js.map +1 -1
  331. package/lib-es/bridge/synchronisation.d.ts +15 -0
  332. package/lib-es/bridge/synchronisation.d.ts.map +1 -1
  333. package/lib-es/bridge/synchronisation.js +124 -4
  334. package/lib-es/bridge/synchronisation.js.map +1 -1
  335. package/lib-es/config.d.ts +13 -0
  336. package/lib-es/config.d.ts.map +1 -0
  337. package/lib-es/config.js +4 -0
  338. package/lib-es/config.js.map +1 -0
  339. package/lib-es/constants.d.ts +13 -2
  340. package/lib-es/constants.d.ts.map +1 -1
  341. package/lib-es/constants.js +13 -1
  342. package/lib-es/constants.js.map +1 -1
  343. package/lib-es/logic/buildTransaction.d.ts +9 -0
  344. package/lib-es/logic/buildTransaction.d.ts.map +1 -0
  345. package/lib-es/logic/buildTransaction.js +43 -0
  346. package/lib-es/logic/buildTransaction.js.map +1 -0
  347. package/lib-es/logic/calculateAmount.d.ts +3 -0
  348. package/lib-es/logic/calculateAmount.d.ts.map +1 -0
  349. package/lib-es/logic/calculateAmount.js +9 -0
  350. package/lib-es/logic/calculateAmount.js.map +1 -0
  351. package/lib-es/logic/combine.d.ts +4 -0
  352. package/lib-es/logic/combine.d.ts.map +1 -0
  353. package/lib-es/logic/combine.js +29 -0
  354. package/lib-es/logic/combine.js.map +1 -0
  355. package/lib-es/logic/craftTransaction.d.ts +5 -0
  356. package/lib-es/logic/craftTransaction.d.ts.map +1 -0
  357. package/lib-es/logic/craftTransaction.js +38 -0
  358. package/lib-es/logic/craftTransaction.js.map +1 -0
  359. package/lib-es/logic/createTransaction.d.ts.map +1 -0
  360. package/lib-es/{bridge → logic}/createTransaction.js +1 -1
  361. package/lib-es/logic/createTransaction.js.map +1 -0
  362. package/lib-es/logic/getBalance.d.ts +5 -0
  363. package/lib-es/logic/getBalance.d.ts.map +1 -0
  364. package/lib-es/logic/getBalance.js +8 -0
  365. package/lib-es/logic/getBalance.js.map +1 -0
  366. package/lib-es/logic/getCoinAndAmounts.d.ts +13 -0
  367. package/lib-es/logic/getCoinAndAmounts.d.ts.map +1 -0
  368. package/lib-es/logic/getCoinAndAmounts.js +101 -0
  369. package/lib-es/logic/getCoinAndAmounts.js.map +1 -0
  370. package/lib-es/logic/getFunctionAddress.d.ts +3 -0
  371. package/lib-es/logic/getFunctionAddress.d.ts.map +1 -0
  372. package/lib-es/logic/getFunctionAddress.js +8 -0
  373. package/lib-es/logic/getFunctionAddress.js.map +1 -0
  374. package/lib-es/logic/getResourceAddress.d.ts +4 -0
  375. package/lib-es/logic/getResourceAddress.d.ts.map +1 -0
  376. package/lib-es/logic/getResourceAddress.js +13 -0
  377. package/lib-es/logic/getResourceAddress.js.map +1 -0
  378. package/lib-es/logic/isTestnet.d.ts +2 -0
  379. package/lib-es/logic/isTestnet.d.ts.map +1 -0
  380. package/lib-es/logic/isTestnet.js +5 -0
  381. package/lib-es/logic/isTestnet.js.map +1 -0
  382. package/lib-es/logic/isWriteSetChangeWriteResource.d.ts +3 -0
  383. package/lib-es/logic/isWriteSetChangeWriteResource.d.ts.map +1 -0
  384. package/lib-es/logic/isWriteSetChangeWriteResource.js +4 -0
  385. package/lib-es/logic/isWriteSetChangeWriteResource.js.map +1 -0
  386. package/lib-es/logic/normalizeAddress.d.ts +2 -0
  387. package/lib-es/logic/normalizeAddress.d.ts.map +1 -0
  388. package/lib-es/logic/normalizeAddress.js +8 -0
  389. package/lib-es/logic/normalizeAddress.js.map +1 -0
  390. package/lib-es/logic/normalizeTransactionOptions.d.ts +3 -0
  391. package/lib-es/logic/normalizeTransactionOptions.d.ts.map +1 -0
  392. package/lib-es/logic/normalizeTransactionOptions.js +17 -0
  393. package/lib-es/logic/normalizeTransactionOptions.js.map +1 -0
  394. package/lib-es/logic/processRecipients.d.ts +6 -0
  395. package/lib-es/logic/processRecipients.d.ts.map +1 -0
  396. package/lib-es/logic/processRecipients.js +54 -0
  397. package/lib-es/logic/processRecipients.js.map +1 -0
  398. package/lib-es/logic/transactionsToOperations.d.ts +7 -0
  399. package/lib-es/logic/transactionsToOperations.d.ts.map +1 -0
  400. package/lib-es/logic/transactionsToOperations.js +81 -0
  401. package/lib-es/logic/transactionsToOperations.js.map +1 -0
  402. package/lib-es/network/client.d.ts +38 -0
  403. package/lib-es/network/client.d.ts.map +1 -0
  404. package/lib-es/network/client.js +276 -0
  405. package/lib-es/network/client.js.map +1 -0
  406. package/lib-es/network/graphql/queries.d.ts.map +1 -0
  407. package/lib-es/{api → network}/graphql/queries.js +6 -6
  408. package/lib-es/network/graphql/queries.js.map +1 -0
  409. package/lib-es/{api → network}/graphql/types.d.ts +9 -9
  410. package/lib-es/network/graphql/types.d.ts.map +1 -0
  411. package/lib-es/{api → network}/graphql/types.js.map +1 -1
  412. package/lib-es/network/index.d.ts +2 -1
  413. package/lib-es/network/index.d.ts.map +1 -1
  414. package/lib-es/network/index.js +6 -8
  415. package/lib-es/network/index.js.map +1 -1
  416. package/lib-es/test/bot-specs.d.ts.map +1 -1
  417. package/lib-es/test/bot-specs.js +41 -2
  418. package/lib-es/test/bot-specs.js.map +1 -1
  419. package/lib-es/test/bridgeDatasetTest.d.ts.map +1 -1
  420. package/lib-es/test/bridgeDatasetTest.js +44 -59
  421. package/lib-es/test/bridgeDatasetTest.js.map +1 -1
  422. package/lib-es/test/speculos-deviceActions.d.ts +1 -0
  423. package/lib-es/test/speculos-deviceActions.d.ts.map +1 -1
  424. package/lib-es/test/speculos-deviceActions.js +36 -4
  425. package/lib-es/test/speculos-deviceActions.js.map +1 -1
  426. package/lib-es/types/assets.d.ts +16 -0
  427. package/lib-es/types/assets.d.ts.map +1 -0
  428. package/lib-es/types/assets.js +2 -0
  429. package/lib-es/types/assets.js.map +1 -0
  430. package/lib-es/types/index.d.ts +22 -7
  431. package/lib-es/types/index.d.ts.map +1 -1
  432. package/package.json +16 -13
  433. package/src/__tests__/api/craftTransaction.unit.test.ts +243 -0
  434. package/src/__tests__/api/getBalance.unit.test.ts +44 -0
  435. package/src/__tests__/api/index.integ.test.ts +401 -0
  436. package/src/__tests__/api/index.test.ts +60 -477
  437. package/src/__tests__/bridge/broadcast.test.ts +2 -2
  438. package/src/__tests__/bridge/getFeesForTransaction.test.ts +146 -11
  439. package/src/__tests__/bridge/getTransactionStatus.test.ts +217 -38
  440. package/src/__tests__/bridge/logic.test.ts +728 -569
  441. package/src/__tests__/bridge/prepareTransaction.test.ts +2 -2
  442. package/src/__tests__/bridge/signOperation.test.ts +153 -15
  443. package/src/__tests__/bridge/synchronisation.test.ts +1265 -71
  444. package/src/__tests__/index.test.ts +1 -1
  445. package/src/__tests__/logic/buildTransaction.test.ts +150 -0
  446. package/src/__tests__/logic/calculateAmount.unit.test.ts +51 -0
  447. package/src/__tests__/logic/combine.unit.test.ts +65 -0
  448. package/src/__tests__/logic/compareAddress.unit.test.ts +27 -0
  449. package/src/__tests__/{bridge → logic}/createTransaction.test.ts +2 -2
  450. package/src/__tests__/logic/getCoinAndAmounts.unit.test.ts +195 -0
  451. package/src/__tests__/logic/getFunctionAddress.unit.test.ts +33 -0
  452. package/src/__tests__/logic/getResourceAddress.unit.test.ts +241 -0
  453. package/src/__tests__/logic/isTestnet.unit.test.ts +11 -0
  454. package/src/__tests__/logic/normalizeAddress.unit.test.ts +15 -0
  455. package/src/__tests__/logic/processRecipients.unit.test.ts +95 -0
  456. package/src/__tests__/network/client.test.ts +1257 -0
  457. package/src/api/index.ts +29 -224
  458. package/src/bridge/bridge.fixture.ts +91 -12
  459. package/src/bridge/broadcast.ts +7 -7
  460. package/src/bridge/estimateMaxSpendable.ts +4 -3
  461. package/src/bridge/getFeesForTransaction.ts +17 -11
  462. package/src/bridge/getTransactionStatus.ts +35 -13
  463. package/src/bridge/index.ts +2 -2
  464. package/src/bridge/logic.ts +58 -194
  465. package/src/bridge/prepareTransaction.ts +7 -4
  466. package/src/bridge/signOperation.ts +21 -5
  467. package/src/bridge/synchronisation.ts +171 -4
  468. package/src/config.ts +19 -0
  469. package/src/constants.ts +22 -2
  470. package/src/logic/buildTransaction.ts +70 -0
  471. package/src/logic/calculateAmount.ts +15 -0
  472. package/src/logic/combine.ts +51 -0
  473. package/src/logic/craftTransaction.ts +65 -0
  474. package/src/{bridge → logic}/createTransaction.ts +1 -1
  475. package/src/logic/getBalance.ts +15 -0
  476. package/src/logic/getCoinAndAmounts.ts +141 -0
  477. package/src/logic/getFunctionAddress.ts +9 -0
  478. package/src/logic/getResourceAddress.ts +24 -0
  479. package/src/logic/isTestnet.ts +5 -0
  480. package/src/logic/isWriteSetChangeWriteResource.ts +7 -0
  481. package/src/logic/normalizeAddress.ts +8 -0
  482. package/src/logic/normalizeTransactionOptions.ts +18 -0
  483. package/src/logic/processRecipients.ts +88 -0
  484. package/src/logic/transactionsToOperations.ts +106 -0
  485. package/src/network/client.ts +374 -0
  486. package/src/{api → network}/graphql/queries.ts +6 -6
  487. package/src/{api → network}/graphql/types.ts +9 -9
  488. package/src/network/index.ts +6 -14
  489. package/src/test/bot-specs.ts +63 -3
  490. package/src/test/bridgeDatasetTest.ts +46 -59
  491. package/src/test/speculos-deviceActions.ts +40 -4
  492. package/src/types/assets.ts +20 -0
  493. package/src/types/index.ts +20 -1
  494. package/lib/__tests__/bridge/buildTransaction.test.d.ts.map +0 -1
  495. package/lib/__tests__/bridge/buildTransaction.test.js +0 -53
  496. package/lib/__tests__/bridge/buildTransaction.test.js.map +0 -1
  497. package/lib/__tests__/bridge/createTransaction.test.d.ts.map +0 -1
  498. package/lib/__tests__/bridge/createTransaction.test.js.map +0 -1
  499. package/lib/api/graphql/queries.d.ts.map +0 -1
  500. package/lib/api/graphql/queries.js.map +0 -1
  501. package/lib/api/graphql/types.d.ts.map +0 -1
  502. package/lib/bridge/buildTransaction.d.ts +0 -7
  503. package/lib/bridge/buildTransaction.d.ts.map +0 -1
  504. package/lib/bridge/buildTransaction.js +0 -19
  505. package/lib/bridge/buildTransaction.js.map +0 -1
  506. package/lib/bridge/createTransaction.d.ts.map +0 -1
  507. package/lib/bridge/createTransaction.js.map +0 -1
  508. package/lib-es/__tests__/bridge/buildTransaction.test.d.ts.map +0 -1
  509. package/lib-es/__tests__/bridge/buildTransaction.test.js +0 -48
  510. package/lib-es/__tests__/bridge/buildTransaction.test.js.map +0 -1
  511. package/lib-es/__tests__/bridge/createTransaction.test.d.ts.map +0 -1
  512. package/lib-es/__tests__/bridge/createTransaction.test.js.map +0 -1
  513. package/lib-es/api/graphql/queries.d.ts.map +0 -1
  514. package/lib-es/api/graphql/queries.js.map +0 -1
  515. package/lib-es/api/graphql/types.d.ts.map +0 -1
  516. package/lib-es/bridge/buildTransaction.d.ts +0 -7
  517. package/lib-es/bridge/buildTransaction.d.ts.map +0 -1
  518. package/lib-es/bridge/buildTransaction.js +0 -17
  519. package/lib-es/bridge/buildTransaction.js.map +0 -1
  520. package/lib-es/bridge/createTransaction.d.ts.map +0 -1
  521. package/lib-es/bridge/createTransaction.js.map +0 -1
  522. package/src/__tests__/bridge/buildTransaction.test.ts +0 -61
  523. package/src/bridge/buildTransaction.ts +0 -29
  524. /package/lib/__tests__/{bridge → logic}/buildTransaction.test.d.ts +0 -0
  525. /package/lib/__tests__/{bridge → logic}/createTransaction.test.d.ts +0 -0
  526. /package/lib/{bridge → logic}/createTransaction.d.ts +0 -0
  527. /package/lib/{api → network}/graphql/queries.d.ts +0 -0
  528. /package/lib/{api → network}/graphql/types.js +0 -0
  529. /package/lib-es/__tests__/{bridge → logic}/buildTransaction.test.d.ts +0 -0
  530. /package/lib-es/__tests__/{bridge → logic}/createTransaction.test.d.ts +0 -0
  531. /package/lib-es/{bridge → logic}/createTransaction.d.ts +0 -0
  532. /package/lib-es/{api → network}/graphql/queries.d.ts +0 -0
  533. /package/lib-es/{api → network}/graphql/types.js +0 -0
@@ -1,499 +1,82 @@
1
- import { ApolloClient } from "@apollo/client";
2
- import {
3
- AccountAddress,
4
- Aptos,
5
- ChainId,
6
- Ed25519PublicKey,
7
- InputEntryFunctionData,
8
- RawTransaction,
9
- Serializable,
10
- post,
11
- } from "@aptos-labs/ts-sdk";
12
- import network from "@ledgerhq/live-network";
13
- import BigNumber from "bignumber.js";
14
- import { AptosAPI } from "../../api";
1
+ import { Aptos } from "@aptos-labs/ts-sdk";
2
+ import type { Api } from "@ledgerhq/coin-framework/api/types";
3
+ import type { AptosAsset, AptosExtra, AptosFeeParameters, AptosSender } from "../../types/assets";
4
+ import type { AptosConfig } from "../../config";
5
+ import { createApi } from "../../api";
6
+ import coinConfig from "../../config";
15
7
 
16
8
  jest.mock("@aptos-labs/ts-sdk");
17
- jest.mock("@apollo/client");
18
9
  let mockedAptos: jest.Mocked<any>;
19
- let mockedApolloClient: jest.Mocked<any>;
20
- let mockedPost = jest.fn();
21
10
 
22
- jest.mock("@ledgerhq/live-network/network");
23
- const mockedNetwork = jest.mocked(network);
11
+ jest.mock("../../config", () => ({
12
+ setCoinConfig: jest.fn(),
13
+ }));
24
14
 
25
- describe("Aptos API", () => {
26
- beforeEach(() => {
27
- mockedAptos = jest.mocked(Aptos);
28
- mockedApolloClient = jest.mocked(ApolloClient);
29
- mockedPost = jest.mocked(post);
30
- });
15
+ const mockAptosConfig: AptosConfig = {} as AptosConfig;
31
16
 
32
- afterEach(() => jest.clearAllMocks());
17
+ describe("createApi", () => {
18
+ it("should set the coin config value", () => {
19
+ const setCoinConfigSpy = jest.spyOn(coinConfig, "setCoinConfig");
33
20
 
34
- it("builds the client properly for mainnet", () => {
35
- const api = new AptosAPI("aptos");
21
+ createApi(mockAptosConfig);
36
22
 
37
- expect(api.broadcast).toBeDefined();
38
- expect(typeof api.broadcast).toBe("function");
39
- expect(api.estimateGasPrice).toBeDefined();
40
- expect(typeof api.estimateGasPrice).toBe("function");
41
- expect(api.generateTransaction).toBeDefined();
42
- expect(typeof api.generateTransaction).toBe("function");
43
- expect(api.getAccount).toBeDefined();
44
- expect(typeof api.getAccount).toBe("function");
45
- expect(api.getAccountInfo).toBeDefined();
46
- expect(typeof api.getAccountInfo).toBe("function");
47
- expect(api.simulateTransaction).toBeDefined();
48
- expect(typeof api.simulateTransaction).toBe("function");
49
- });
23
+ const config = setCoinConfigSpy.mock.calls[0][0]();
50
24
 
51
- it("builds the client properly for testnet", () => {
52
- const api = new AptosAPI("aptos_testnet");
25
+ expect(setCoinConfigSpy).toHaveBeenCalled();
53
26
 
54
- expect(api.broadcast).toBeDefined();
55
- expect(typeof api.broadcast).toBe("function");
56
- expect(api.estimateGasPrice).toBeDefined();
57
- expect(typeof api.estimateGasPrice).toBe("function");
58
- expect(api.generateTransaction).toBeDefined();
59
- expect(typeof api.generateTransaction).toBe("function");
60
- expect(api.getAccount).toBeDefined();
61
- expect(typeof api.getAccount).toBe("function");
62
- expect(api.getAccountInfo).toBeDefined();
63
- expect(typeof api.getAccountInfo).toBe("function");
64
- expect(api.simulateTransaction).toBeDefined();
65
- expect(typeof api.simulateTransaction).toBe("function");
27
+ expect(config).toEqual(
28
+ expect.objectContaining({
29
+ ...mockAptosConfig,
30
+ status: { type: "active" },
31
+ }),
32
+ );
66
33
  });
67
34
 
68
- describe("getAccount", () => {
69
- it("calls getAccountInfo", async () => {
70
- const mockGetAccountInfo = jest.fn();
71
- mockedAptos.mockImplementation(() => ({
72
- getAccountInfo: mockGetAccountInfo,
73
- }));
74
-
75
- const mockGetAccountSpy = jest.spyOn({ getAccount: mockGetAccountInfo }, "getAccount");
76
-
77
- const api = new AptosAPI("aptos");
78
- await api.getAccount("address");
79
-
80
- expect(mockGetAccountSpy).toHaveBeenCalledWith({
81
- accountAddress: "address",
82
- });
83
- });
84
- });
85
-
86
- describe("getAccountInfo", () => {
87
- it("calls getBalance, fetchTransactions and getHeight", async () => {
88
- mockedAptos.mockImplementation(() => ({
89
- view: jest.fn().mockReturnValue(["123"]),
90
- getTransactionByVersion: jest.fn().mockReturnValue({
91
- type: "user_transaction",
92
- version: "v1",
93
- }),
94
- getBlockByVersion: jest.fn().mockReturnValue({
95
- block_height: "1",
96
- block_hash: "83ca6d",
97
- }),
98
- }));
99
-
100
- mockedNetwork.mockResolvedValue(
101
- Promise.resolve({
102
- data: {
103
- account: {
104
- account_number: 1,
105
- sequence: 0,
106
- pub_key: { key: "k", "@type": "type" },
107
- base_account: {
108
- account_number: 2,
109
- sequence: 42,
110
- pub_key: { key: "k2", "@type": "type2" },
111
- },
112
- },
113
- block_height: "999",
114
- },
115
- status: 200,
116
- headers: {} as any,
117
- statusText: "",
118
- config: {
119
- headers: {} as any,
120
- },
121
- }),
122
- );
123
-
124
- mockedApolloClient.mockImplementation(() => ({
125
- query: async () => ({
126
- data: {
127
- address_version_from_move_resources: [{ transaction_version: "v1" }],
128
- },
129
- loading: false,
130
- networkStatus: 7,
131
- }),
132
- }));
133
-
134
- const api = new AptosAPI("aptos");
135
- const accountInfo = await api.getAccountInfo("APTOS_1_ADDRESS", "1");
136
-
137
- expect(accountInfo.balance).toEqual(new BigNumber(123));
138
- expect(accountInfo.transactions).toEqual([
139
- {
140
- type: "user_transaction",
141
- version: "v1",
142
- block: {
143
- height: 1,
144
- hash: "83ca6d",
145
- },
146
- },
147
- ]);
148
- expect(accountInfo.blockHeight).toEqual(999);
149
- });
150
-
151
- it("return balance = 0 if it fails to fetch balance", async () => {
152
- mockedAptos.mockImplementation(() => ({
153
- view: jest.fn().mockImplementation(() => {
154
- throw new Error("error");
155
- }),
156
- getTransactionByVersion: jest.fn().mockReturnValue({
157
- type: "user_transaction",
158
- version: "v1",
159
- }),
160
- getBlockByVersion: jest.fn().mockReturnValue({
161
- block_height: "1",
162
- block_hash: "83ca6d",
163
- }),
164
- }));
165
-
166
- mockedNetwork.mockResolvedValue(
167
- Promise.resolve({
168
- data: {
169
- account: {
170
- account_number: 1,
171
- sequence: 0,
172
- pub_key: { key: "k", "@type": "type" },
173
- base_account: {
174
- account_number: 2,
175
- sequence: 42,
176
- pub_key: { key: "k2", "@type": "type2" },
177
- },
178
- },
179
- block_height: "999",
180
- },
181
- status: 200,
182
- headers: {} as any,
183
- statusText: "",
184
- config: {
185
- headers: {} as any,
186
- },
187
- }),
188
- );
189
-
190
- mockedApolloClient.mockImplementation(() => ({
191
- query: async () => ({
192
- data: {
193
- address_version_from_move_resources: [{ transaction_version: "v1" }],
194
- },
195
- loading: false,
196
- networkStatus: 7,
197
- }),
198
- }));
199
-
200
- const api = new AptosAPI("aptos");
201
- const accountInfo = await api.getAccountInfo("APTOS_1_ADDRESS", "1");
202
-
203
- expect(accountInfo.balance).toEqual(new BigNumber(0));
204
- expect(accountInfo.transactions).toEqual([
205
- {
206
- type: "user_transaction",
207
- version: "v1",
208
- block: {
209
- height: 1,
210
- hash: "83ca6d",
211
- },
212
- },
213
- ]);
214
- expect(accountInfo.blockHeight).toEqual(999);
215
- });
216
-
217
- it("returns no transactions if it the address is empty", async () => {
218
- mockedAptos.mockImplementation(() => ({
219
- view: jest.fn().mockReturnValue(["123"]),
220
- getTransactionByVersion: jest.fn().mockReturnValue({
221
- type: "user_transaction",
222
- version: "v1",
223
- }),
224
- getBlockByVersion: jest.fn().mockReturnValue({
225
- block_height: "1",
226
- block_hash: "83ca6d",
227
- }),
228
- }));
229
-
230
- mockedNetwork.mockResolvedValue(
231
- Promise.resolve({
232
- data: {
233
- account: {
234
- account_number: 1,
235
- sequence: 0,
236
- pub_key: { key: "k", "@type": "type" },
237
- base_account: {
238
- account_number: 2,
239
- sequence: 42,
240
- pub_key: { key: "k2", "@type": "type2" },
241
- },
242
- },
243
- block_height: "999",
244
- },
245
- status: 200,
246
- headers: {} as any,
247
- statusText: "",
248
- config: {
249
- headers: {} as any,
250
- },
251
- }),
252
- );
253
-
254
- mockedApolloClient.mockImplementation(() => ({
255
- query: async () => ({
256
- data: {
257
- address_version_from_move_resources: [{ transaction_version: "v1" }],
258
- },
259
- loading: false,
260
- networkStatus: 7,
261
- }),
262
- }));
263
-
264
- const api = new AptosAPI("aptos");
265
- const accountInfo = await api.getAccountInfo("", "1");
266
-
267
- expect(accountInfo.balance).toEqual(new BigNumber(123));
268
- expect(accountInfo.transactions).toEqual([]);
269
- expect(accountInfo.blockHeight).toEqual(999);
270
- });
271
-
272
- it("returns a null transaction if it fails to getTransactionByVersion", async () => {
273
- mockedAptos.mockImplementation(() => ({
274
- view: jest.fn().mockReturnValue(["123"]),
275
- getTransactionByVersion: jest.fn().mockImplementation(() => {
276
- throw new Error("error");
277
- }),
278
- getBlockByVersion: jest.fn().mockReturnValue({
279
- block_height: "1",
280
- block_hash: "83ca6d",
281
- }),
282
- }));
283
-
284
- mockedNetwork.mockResolvedValue(
285
- Promise.resolve({
286
- data: {
287
- account: {
288
- account_number: 1,
289
- sequence: 0,
290
- pub_key: { key: "k", "@type": "type" },
291
- base_account: {
292
- account_number: 2,
293
- sequence: 42,
294
- pub_key: { key: "k2", "@type": "type2" },
295
- },
296
- },
297
- block_height: "999",
298
- },
299
- status: 200,
300
- headers: {} as any,
301
- statusText: "",
302
- config: {
303
- headers: {} as any,
304
- },
305
- }),
306
- );
307
-
308
- mockedApolloClient.mockImplementation(() => ({
309
- query: async () => ({
310
- data: {
311
- address_version_from_move_resources: [{ transaction_version: "v1" }],
312
- },
313
- loading: false,
314
- networkStatus: 7,
315
- }),
316
- }));
317
-
318
- const api = new AptosAPI("aptos");
319
- const accountInfo = await api.getAccountInfo("APTOS_1_ADDRESS", "1");
35
+ it("should return an API object with alpaca api methods", () => {
36
+ const api: Api<AptosAsset, AptosExtra, AptosSender, AptosFeeParameters> =
37
+ createApi(mockAptosConfig);
320
38
 
321
- expect(accountInfo.balance).toEqual(new BigNumber(123));
322
- expect(accountInfo.transactions).toEqual([null]);
323
- expect(accountInfo.blockHeight).toEqual(999);
324
- });
325
- });
326
-
327
- describe("estimateGasPrice", () => {
328
- it("estimates the gas price", async () => {
329
- const gasEstimation = { gas_estimate: 100 };
330
- mockedAptos.mockImplementation(() => ({
331
- getGasPriceEstimation: jest.fn().mockReturnValue(gasEstimation),
332
- }));
333
-
334
- const api = new AptosAPI("aptos");
335
- const gasPrice = await api.estimateGasPrice();
336
-
337
- expect(gasPrice.gas_estimate).toEqual(100);
338
- });
39
+ // Check that methods are set with what we expect
40
+ expect(api.broadcast).toBeDefined();
41
+ expect(api.combine).toBeDefined();
42
+ expect(api.craftTransaction).toBeDefined();
43
+ expect(api.estimateFees).toBeDefined();
44
+ expect(api.getBalance).toBeDefined();
45
+ expect(api.lastBlock).toBeDefined();
46
+ expect(api.listOperations).toBeDefined();
339
47
  });
48
+ });
340
49
 
341
- describe("generateTransaction", () => {
342
- const payload: InputEntryFunctionData = {
343
- function: "0x1::coin::transfer",
344
- functionArguments: ["0x13", 1],
345
- };
346
-
347
- it("generates a transaction without expireTimestamp", async () => {
348
- const options = {
349
- maxGasAmount: "100",
350
- gasUnitPrice: "50",
351
- };
352
-
353
- const mockSimple = jest.fn().mockImplementation(async () => ({
354
- rawTransaction: null,
355
- }));
356
- mockedAptos.mockImplementation(() => ({
357
- transaction: {
358
- build: {
359
- simple: mockSimple,
360
- },
361
- },
362
- }));
363
-
364
- const mockSimpleSpy = jest.spyOn({ simple: mockSimple }, "simple");
365
-
366
- const api = new AptosAPI("aptos");
367
- await api.generateTransaction("APTOS_1_ADDRESS", payload, options);
368
-
369
- expect(mockSimpleSpy).toHaveBeenCalledWith({
370
- data: payload,
371
- options: {
372
- maxGasAmount: Number(options.maxGasAmount),
373
- gasUnitPrice: Number(options.gasUnitPrice),
374
- },
375
- sender: "APTOS_1_ADDRESS",
376
- });
377
- });
378
-
379
- it("generates a transaction with default expireTimestamp", async () => {
380
- const options = {
381
- maxGasAmount: "100",
382
- gasUnitPrice: "50",
383
- };
384
-
385
- const mockSimple = jest.fn().mockImplementation(async () => ({
386
- rawTransaction: null,
387
- }));
388
- const mockGetLedgerInfo = jest.fn().mockImplementation(async () => ({
389
- ledger_timestamp: "0",
390
- }));
391
- mockedAptos.mockImplementation(() => ({
392
- transaction: {
393
- build: {
394
- simple: mockSimple,
395
- },
396
- },
397
- getLedgerInfo: mockGetLedgerInfo,
398
- }));
399
-
400
- const mockSimpleSpy = jest.spyOn({ simple: mockSimple }, "simple");
401
-
402
- const api = new AptosAPI("aptos");
403
- await api.generateTransaction("APTOS_1_ADDRESS", payload, options);
404
-
405
- expect(mockSimpleSpy).toHaveBeenCalledWith({
406
- data: payload,
407
- options: {
408
- maxGasAmount: Number(options.maxGasAmount),
409
- gasUnitPrice: Number(options.gasUnitPrice),
410
- expireTimestamp: 120,
411
- },
412
- sender: "APTOS_1_ADDRESS",
413
- });
414
- });
415
-
416
- it("throws an error when failing to build a transaction", async () => {
417
- const options = {
418
- maxGasAmount: "100",
419
- gasUnitPrice: "50",
420
- };
421
-
422
- const mockSimple = jest.fn().mockImplementation(async () => null);
423
- mockedAptos.mockImplementation(() => ({
424
- transaction: {
425
- build: {
426
- simple: mockSimple,
427
- },
428
- },
429
- }));
430
-
431
- const api = new AptosAPI("aptos");
432
- expect(
433
- async () => await api.generateTransaction("APTOS_1_ADDRESS", payload, options),
434
- ).rejects.toThrow();
435
- });
50
+ describe("lastBlock", () => {
51
+ beforeEach(() => {
52
+ mockedAptos = jest.mocked(Aptos);
436
53
  });
437
54
 
438
- describe("simulateTransaction", () => {
439
- it("simulates a transaction with the correct options", async () => {
440
- const mockSimple = jest.fn().mockImplementation(async () => ({
441
- rawTransaction: null,
442
- }));
443
- mockedAptos.mockImplementation(() => ({
444
- transaction: {
445
- simulate: {
446
- simple: mockSimple,
447
- },
448
- },
449
- }));
450
-
451
- const mockSimpleSpy = jest.spyOn({ simple: mockSimple }, "simple");
452
-
453
- const api = new AptosAPI("aptos");
454
- const address = new Ed25519PublicKey("APTOS_1_ADDRESS");
455
- const tx = new RawTransaction(
456
- new AccountAddress(Uint8Array.from(Buffer.from("APTOS_2_ADDRESS"))),
457
- BigInt(1),
458
- "" as unknown as Serializable,
459
- BigInt(100),
460
- BigInt(50),
461
- BigInt(1),
462
- { chainId: 1 } as ChainId,
463
- );
464
- await api.simulateTransaction(address, tx);
465
-
466
- expect(mockSimpleSpy).toHaveBeenCalledWith({
467
- signerPublicKey: address,
468
- transaction: { rawTransaction: tx },
469
- options: {
470
- estimateGasUnitPrice: true,
471
- estimateMaxGasAmount: true,
472
- estimatePrioritizedGasUnitPrice: false,
473
- },
474
- });
475
- });
55
+ afterEach(() => {
56
+ jest.resetAllMocks();
476
57
  });
477
- describe("broadcast", () => {
478
- it("broadcasts the transaction", async () => {
479
- mockedPost.mockImplementation(async () => ({ data: { hash: "ok" } }));
480
- const mockedPostSpy = jest.spyOn({ post: mockedPost }, "post");
481
-
482
- mockedAptos.mockImplementation(() => ({
483
- config: "config",
484
- }));
485
-
486
- const api = new AptosAPI("aptos");
487
- await api.broadcast("signature");
488
58
 
489
- expect(mockedPostSpy).toHaveBeenCalledWith({
490
- contentType: "application/x.aptos.signed_transaction+bcs",
491
- aptosConfig: "config",
492
- body: Uint8Array.from(Buffer.from("signature", "hex")),
493
- path: "transactions",
494
- type: "Fullnode",
495
- originMethod: "",
496
- });
59
+ it("returns the last block information", async () => {
60
+ mockedAptos.mockImplementation(() => ({
61
+ getLedgerInfo: jest.fn().mockReturnValue({
62
+ block_height: "123",
63
+ }),
64
+ getBlockByHeight: jest.fn().mockReturnValue({
65
+ block_height: "123",
66
+ block_hash: "123hash",
67
+ block_timestamp: "1746021098623892",
68
+ first_version: "1",
69
+ last_version: "1",
70
+ }),
71
+ }));
72
+
73
+ const api: Api<AptosAsset, AptosExtra, AptosSender, AptosFeeParameters> =
74
+ createApi(mockAptosConfig);
75
+
76
+ expect(await api.lastBlock()).toStrictEqual({
77
+ height: 123,
78
+ hash: "123hash",
79
+ time: new Date(1746021098623892 / 1_000),
497
80
  });
498
81
  });
499
82
  });
@@ -1,10 +1,10 @@
1
1
  import broadcast from "../../bridge/broadcast";
2
- import { AptosAPI } from "../../api";
2
+ import { AptosAPI } from "../../network";
3
3
  import { patchOperationWithHash } from "@ledgerhq/coin-framework/operation";
4
4
  import type { Account, Operation, SignedOperation } from "@ledgerhq/types-live";
5
5
  import BigNumber from "bignumber.js";
6
6
 
7
- jest.mock("../../api");
7
+ jest.mock("../../network");
8
8
  jest.mock("@ledgerhq/coin-framework/operation");
9
9
 
10
10
  describe("broadcast", () => {