@onetokenfe/hd-core 1.1.23

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 (382) hide show
  1. package/.eslintrc +6 -0
  2. package/README.md +32 -0
  3. package/__tests__/benfen.test.ts +68 -0
  4. package/__tests__/checkBootloaderReleast.test.ts +115 -0
  5. package/__tests__/evmSignTransaction.test.ts +419 -0
  6. package/jest.config.js +6 -0
  7. package/package.json +48 -0
  8. package/src/api/BaseMethod.ts +275 -0
  9. package/src/api/CheckAllFirmwareRelease.ts +73 -0
  10. package/src/api/CheckBLEFirmwareRelease.ts +23 -0
  11. package/src/api/CheckBootloaderRelease.ts +32 -0
  12. package/src/api/CheckBridgeRelease.ts +28 -0
  13. package/src/api/CheckBridgeStatus.ts +32 -0
  14. package/src/api/CheckFirmwareRelease.ts +31 -0
  15. package/src/api/CheckFirmwareTypeAvailable.tsx +30 -0
  16. package/src/api/CipherKeyValue.ts +68 -0
  17. package/src/api/FirmwareUpdate.ts +219 -0
  18. package/src/api/FirmwareUpdateV2.ts +408 -0
  19. package/src/api/FirmwareUpdateV3.ts +560 -0
  20. package/src/api/GetFeatures.ts +23 -0
  21. package/src/api/GetLogs.ts +40 -0
  22. package/src/api/GetOnetokenFeatures.ts +25 -0
  23. package/src/api/GetPassphraseState.ts +28 -0
  24. package/src/api/PromptWebDeviceAccess.ts +77 -0
  25. package/src/api/SearchDevices.ts +50 -0
  26. package/src/api/alephium/AlephiumGetAddress.ts +84 -0
  27. package/src/api/alephium/AlephiumSignMessage.ts +51 -0
  28. package/src/api/alephium/AlephiumSignTransaction.ts +135 -0
  29. package/src/api/algo/AlgoGetAddress.ts +73 -0
  30. package/src/api/algo/AlgoSignTransaction.ts +52 -0
  31. package/src/api/allnetwork/AllNetworkGetAddress.ts +88 -0
  32. package/src/api/allnetwork/AllNetworkGetAddressBase.ts +529 -0
  33. package/src/api/allnetwork/AllNetworkGetAddressByLoop.ts +162 -0
  34. package/src/api/aptos/AptosGetAddress.ts +129 -0
  35. package/src/api/aptos/AptosGetPublicKey.ts +64 -0
  36. package/src/api/aptos/AptosSignInMessage.ts +55 -0
  37. package/src/api/aptos/AptosSignMessage.ts +79 -0
  38. package/src/api/aptos/AptosSignTransaction.ts +72 -0
  39. package/src/api/benfen/BenfenGetAddress.ts +122 -0
  40. package/src/api/benfen/BenfenGetPublicKey.ts +68 -0
  41. package/src/api/benfen/BenfenSignMessage.ts +50 -0
  42. package/src/api/benfen/BenfenSignTransaction.ts +105 -0
  43. package/src/api/benfen/normalize.ts +51 -0
  44. package/src/api/btc/BTCGetAddress.ts +91 -0
  45. package/src/api/btc/BTCGetPublicKey.ts +174 -0
  46. package/src/api/btc/BTCSignMessage.ts +73 -0
  47. package/src/api/btc/BTCSignPsbt.ts +65 -0
  48. package/src/api/btc/BTCSignTransaction.ts +148 -0
  49. package/src/api/btc/BTCVerifyMessage.ts +46 -0
  50. package/src/api/btc/helpers/btcParamsUtils.ts +64 -0
  51. package/src/api/btc/helpers/signtx.ts +251 -0
  52. package/src/api/btc/helpers/signtxLegacy.ts +227 -0
  53. package/src/api/btc/helpers/versionLimit.ts +25 -0
  54. package/src/api/btc/helpers/xpubUtils.ts +132 -0
  55. package/src/api/cardano/CardanoGetAddress.ts +139 -0
  56. package/src/api/cardano/CardanoGetPublicKey.ts +72 -0
  57. package/src/api/cardano/CardanoSignMessage.ts +73 -0
  58. package/src/api/cardano/CardanoSignTransaction.ts +404 -0
  59. package/src/api/cardano/helper/addressParameters.ts +120 -0
  60. package/src/api/cardano/helper/auxiliaryData.ts +133 -0
  61. package/src/api/cardano/helper/cardanoInputs.ts +55 -0
  62. package/src/api/cardano/helper/cardanoOutputs.ts +89 -0
  63. package/src/api/cardano/helper/certificate.ts +246 -0
  64. package/src/api/cardano/helper/token.ts +44 -0
  65. package/src/api/cardano/helper/utils.ts +17 -0
  66. package/src/api/cardano/helper/witnesses.ts +62 -0
  67. package/src/api/conflux/ConfluxGetAddress.ts +78 -0
  68. package/src/api/conflux/ConfluxSignMessage.ts +49 -0
  69. package/src/api/conflux/ConfluxSignMessageCIP23.ts +49 -0
  70. package/src/api/conflux/ConfluxSignTransaction.ts +135 -0
  71. package/src/api/cosmos/CosmosGetAddress.ts +80 -0
  72. package/src/api/cosmos/CosmosGetPublicKey.ts +77 -0
  73. package/src/api/cosmos/CosmosSignTransaction.ts +68 -0
  74. package/src/api/device/DeviceBackup.ts +15 -0
  75. package/src/api/device/DeviceCancel.ts +15 -0
  76. package/src/api/device/DeviceChangePin.ts +25 -0
  77. package/src/api/device/DeviceFlags.ts +26 -0
  78. package/src/api/device/DeviceFullyUploadResource.ts +80 -0
  79. package/src/api/device/DeviceLock.ts +15 -0
  80. package/src/api/device/DeviceRebootToBoardloader.ts +30 -0
  81. package/src/api/device/DeviceRebootToBootloader.ts +28 -0
  82. package/src/api/device/DeviceRecovery.ts +44 -0
  83. package/src/api/device/DeviceReset.ts +46 -0
  84. package/src/api/device/DeviceSettings.ts +96 -0
  85. package/src/api/device/DeviceSupportFeatures.ts +29 -0
  86. package/src/api/device/DeviceUnlock.ts +13 -0
  87. package/src/api/device/DeviceUpdateBootloader.ts +111 -0
  88. package/src/api/device/DeviceUpdateReboot.ts +17 -0
  89. package/src/api/device/DeviceUploadResource.ts +204 -0
  90. package/src/api/device/DeviceVerify.ts +65 -0
  91. package/src/api/device/DeviceWipe.ts +15 -0
  92. package/src/api/dynex/DnxGetAddress.ts +75 -0
  93. package/src/api/dynex/DnxSignTransaction.ts +126 -0
  94. package/src/api/evm/EVMGetAddress.ts +88 -0
  95. package/src/api/evm/EVMGetPublicKey.ts +116 -0
  96. package/src/api/evm/EVMSignMessage.ts +49 -0
  97. package/src/api/evm/EVMSignMessageEIP712.ts +56 -0
  98. package/src/api/evm/EVMSignTransaction.ts +141 -0
  99. package/src/api/evm/EVMSignTypedData.ts +477 -0
  100. package/src/api/evm/EVMVerifyMessage.ts +46 -0
  101. package/src/api/evm/latest/getAddress.ts +13 -0
  102. package/src/api/evm/latest/getPublicKey.ts +17 -0
  103. package/src/api/evm/latest/signMessage.ts +19 -0
  104. package/src/api/evm/latest/signTransaction.ts +303 -0
  105. package/src/api/evm/latest/signTypedData.ts +34 -0
  106. package/src/api/evm/latest/signTypedHash.ts +46 -0
  107. package/src/api/evm/latest/verifyMessage.ts +15 -0
  108. package/src/api/evm/legacyV1/getAddress.ts +16 -0
  109. package/src/api/evm/legacyV1/getPublicKey.ts +20 -0
  110. package/src/api/evm/legacyV1/signMessage.ts +22 -0
  111. package/src/api/evm/legacyV1/signTransaction.ts +37 -0
  112. package/src/api/evm/legacyV1/signTypedData.ts +37 -0
  113. package/src/api/evm/legacyV1/signTypedHash.ts +50 -0
  114. package/src/api/evm/legacyV1/verifyMessage.ts +19 -0
  115. package/src/api/filecoin/FilecoinGetAddress.ts +80 -0
  116. package/src/api/filecoin/FilecoinSignTransaction.ts +57 -0
  117. package/src/api/firmware/FirmwareUpdateBaseMethod.ts +476 -0
  118. package/src/api/firmware/bootloaderHelper.ts +46 -0
  119. package/src/api/firmware/getBinary.ts +99 -0
  120. package/src/api/firmware/releaseHelper.ts +78 -0
  121. package/src/api/firmware/updateBootloader.ts +82 -0
  122. package/src/api/firmware/uploadFirmware.ts +541 -0
  123. package/src/api/helpers/batchGetPublickeys.ts +84 -0
  124. package/src/api/helpers/bigNumberUtils.ts +58 -0
  125. package/src/api/helpers/hexUtils.ts +111 -0
  126. package/src/api/helpers/paramsValidator.ts +165 -0
  127. package/src/api/helpers/pathUtils.ts +145 -0
  128. package/src/api/helpers/stringUtils.ts +11 -0
  129. package/src/api/helpers/typeNameUtils.ts +137 -0
  130. package/src/api/index.ts +161 -0
  131. package/src/api/kaspa/KaspaGetAddress.ts +103 -0
  132. package/src/api/kaspa/KaspaSignTransaction.ts +182 -0
  133. package/src/api/kaspa/helpers/BufferWriter.ts +177 -0
  134. package/src/api/kaspa/helpers/HashWriter.ts +74 -0
  135. package/src/api/kaspa/helpers/SignatureType.ts +7 -0
  136. package/src/api/kaspa/helpers/TransferSerialize.ts +144 -0
  137. package/src/api/lightning/LnurlAuth.ts +52 -0
  138. package/src/api/near/NearGetAddress.ts +75 -0
  139. package/src/api/near/NearSignTransaction.ts +46 -0
  140. package/src/api/nem/NEMGetAddress.ts +72 -0
  141. package/src/api/nem/NEMSignTransaction.ts +251 -0
  142. package/src/api/neo/NeoGetAddress.ts +80 -0
  143. package/src/api/neo/NeoSignTransaction.ts +59 -0
  144. package/src/api/nervos/NervosGetAddress.ts +80 -0
  145. package/src/api/nervos/NervosSignTransaction.ts +116 -0
  146. package/src/api/nexa/NexaGetAddress.ts +88 -0
  147. package/src/api/nexa/NexaSignTransaction.ts +107 -0
  148. package/src/api/nostr/NostrDecryptMessage.ts +57 -0
  149. package/src/api/nostr/NostrEncryptMessage.ts +57 -0
  150. package/src/api/nostr/NostrGetPublicKey.ts +74 -0
  151. package/src/api/nostr/NostrSignEvent.ts +65 -0
  152. package/src/api/nostr/NostrSignSchnorr.ts +52 -0
  153. package/src/api/nostr/helper/index.ts +28 -0
  154. package/src/api/polkadot/PolkadotGetAddress.ts +83 -0
  155. package/src/api/polkadot/PolkadotSignTransaction.ts +53 -0
  156. package/src/api/polkadot/networks.ts +72 -0
  157. package/src/api/scdo/ScdoGetAddress.ts +76 -0
  158. package/src/api/scdo/ScdoSignMessage.ts +45 -0
  159. package/src/api/scdo/ScdoSignTransaction.ts +106 -0
  160. package/src/api/solana/SolGetAddress.ts +68 -0
  161. package/src/api/solana/SolSignMessage.ts +61 -0
  162. package/src/api/solana/SolSignOffchainMessage.ts +61 -0
  163. package/src/api/solana/SolSignTransaction.ts +108 -0
  164. package/src/api/starcoin/StarcoinGetAddress.ts +69 -0
  165. package/src/api/starcoin/StarcoinGetPublicKey.ts +70 -0
  166. package/src/api/starcoin/StarcoinSignMessage.ts +42 -0
  167. package/src/api/starcoin/StarcoinSignTransaction.ts +38 -0
  168. package/src/api/starcoin/StarcoinVerifyMessage.ts +35 -0
  169. package/src/api/stellar/StellarGetAddress.ts +68 -0
  170. package/src/api/stellar/StellarSignTransaction.ts +220 -0
  171. package/src/api/sui/SuiGetAddress.ts +117 -0
  172. package/src/api/sui/SuiGetPublicKey.ts +66 -0
  173. package/src/api/sui/SuiSignMessage.ts +48 -0
  174. package/src/api/sui/SuiSignTransaction.ts +126 -0
  175. package/src/api/sui/normalize.ts +28 -0
  176. package/src/api/test/TestInitializeDeviceDuration.ts +22 -0
  177. package/src/api/ton/TonGetAddress.ts +96 -0
  178. package/src/api/ton/TonSignMessage.ts +217 -0
  179. package/src/api/ton/TonSignProof.ts +62 -0
  180. package/src/api/tron/TronGetAddress.ts +75 -0
  181. package/src/api/tron/TronSignMessage.ts +89 -0
  182. package/src/api/tron/TronSignTransaction.ts +214 -0
  183. package/src/api/u2f/GetNextU2FCounter.ts +15 -0
  184. package/src/api/u2f/SetU2FCounter.ts +19 -0
  185. package/src/api/utils.ts +23 -0
  186. package/src/api/xrp/XrpGetAddress.ts +96 -0
  187. package/src/api/xrp/XrpSignTransaction.ts +71 -0
  188. package/src/constants/errors.ts +15 -0
  189. package/src/constants/index.ts +2 -0
  190. package/src/constants/ui-request.ts +3 -0
  191. package/src/core/RequestQueue.ts +134 -0
  192. package/src/core/index.ts +1320 -0
  193. package/src/data/coins/bitcoin.json +44 -0
  194. package/src/data/config.ts +25 -0
  195. package/src/data/messages/messages.json +13167 -0
  196. package/src/data/messages/messages_legacy_v1.json +10282 -0
  197. package/src/data-manager/CoinManager.ts +31 -0
  198. package/src/data-manager/DataManager.ts +499 -0
  199. package/src/data-manager/MessagesConfig.ts +28 -0
  200. package/src/data-manager/TransportManager.ts +140 -0
  201. package/src/data-manager/connectSettings.ts +121 -0
  202. package/src/data-manager/index.ts +3 -0
  203. package/src/device/Device.ts +884 -0
  204. package/src/device/DeviceCommands.ts +631 -0
  205. package/src/device/DeviceConnector.ts +124 -0
  206. package/src/device/DeviceList.ts +39 -0
  207. package/src/device/DevicePool.ts +266 -0
  208. package/src/events/call.ts +95 -0
  209. package/src/events/core.ts +65 -0
  210. package/src/events/device.ts +92 -0
  211. package/src/events/firmware.ts +43 -0
  212. package/src/events/iframe.ts +55 -0
  213. package/src/events/index.ts +10 -0
  214. package/src/events/log.ts +23 -0
  215. package/src/events/logBlockEvent.ts +6 -0
  216. package/src/events/ui-promise.ts +14 -0
  217. package/src/events/ui-request.ts +216 -0
  218. package/src/events/ui-response.ts +59 -0
  219. package/src/events/utils.ts +19 -0
  220. package/src/index.ts +70 -0
  221. package/src/inject.ts +408 -0
  222. package/src/lowLevelInject.ts +61 -0
  223. package/src/topLevelInject.ts +62 -0
  224. package/src/types/api/alephiumGetAddress.ts +31 -0
  225. package/src/types/api/alephiumSignMessage.ts +14 -0
  226. package/src/types/api/alephiumSignTransaction.ts +18 -0
  227. package/src/types/api/algoGetAddress.ts +23 -0
  228. package/src/types/api/algoSignTransaction.ts +17 -0
  229. package/src/types/api/allNetworkGetAddress.ts +130 -0
  230. package/src/types/api/aptosGetAddress.ts +28 -0
  231. package/src/types/api/aptosGetPublicKey.ts +27 -0
  232. package/src/types/api/aptosSignInMessage.ts +17 -0
  233. package/src/types/api/aptosSignMessage.ts +26 -0
  234. package/src/types/api/aptosSignTransaction.ts +18 -0
  235. package/src/types/api/benfenGetAddress.ts +24 -0
  236. package/src/types/api/benfenGetPublicKey.ts +23 -0
  237. package/src/types/api/benfenSignMessage.ts +13 -0
  238. package/src/types/api/benfenSignTransaction.ts +19 -0
  239. package/src/types/api/btcGetAddress.ts +26 -0
  240. package/src/types/api/btcGetPublicKey.ts +26 -0
  241. package/src/types/api/btcSignMessage.ts +16 -0
  242. package/src/types/api/btcSignPsbt.ts +13 -0
  243. package/src/types/api/btcSignTransaction.ts +98 -0
  244. package/src/types/api/btcVerifyMessage.ts +15 -0
  245. package/src/types/api/cardano.ts +212 -0
  246. package/src/types/api/cardanoGetAddress.ts +49 -0
  247. package/src/types/api/cardanoGetPublicKey.ts +33 -0
  248. package/src/types/api/cardanoSignMessage.ts +31 -0
  249. package/src/types/api/cardanoSignTransaction.ts +8 -0
  250. package/src/types/api/checkAllFirmwareRelease.ts +34 -0
  251. package/src/types/api/checkBLEFirmwareRelease.ts +15 -0
  252. package/src/types/api/checkBootloaderRelease.ts +19 -0
  253. package/src/types/api/checkBridgeRelease.ts +14 -0
  254. package/src/types/api/checkBridgeStatus.ts +3 -0
  255. package/src/types/api/checkFirmwareRelease.ts +23 -0
  256. package/src/types/api/checkFirmwareTypeAvailable.ts +12 -0
  257. package/src/types/api/cipherKeyValue.ts +28 -0
  258. package/src/types/api/confluxGetAddress.ts +24 -0
  259. package/src/types/api/confluxSignMessage.ts +13 -0
  260. package/src/types/api/confluxSignMessageCIP23.ts +14 -0
  261. package/src/types/api/confluxSignTransaction.ts +32 -0
  262. package/src/types/api/cosmosGetAddress.ts +24 -0
  263. package/src/types/api/cosmosGetPublicKey.ts +28 -0
  264. package/src/types/api/cosmosSignTransaction.ts +17 -0
  265. package/src/types/api/deviceBackup.ts +4 -0
  266. package/src/types/api/deviceCancel.ts +4 -0
  267. package/src/types/api/deviceChangePin.ts +11 -0
  268. package/src/types/api/deviceFlags.ts +11 -0
  269. package/src/types/api/deviceFullyUploadResource.ts +15 -0
  270. package/src/types/api/deviceLock.ts +4 -0
  271. package/src/types/api/deviceRebootToBoardloader.ts +6 -0
  272. package/src/types/api/deviceRebootToBootloader.ts +4 -0
  273. package/src/types/api/deviceRecovery.ts +19 -0
  274. package/src/types/api/deviceReset.ts +20 -0
  275. package/src/types/api/deviceSettings.ts +23 -0
  276. package/src/types/api/deviceSupportFeatures.ts +6 -0
  277. package/src/types/api/deviceUnlock.ts +4 -0
  278. package/src/types/api/deviceUpdateBootloader.ts +13 -0
  279. package/src/types/api/deviceUpdateReboot.ts +3 -0
  280. package/src/types/api/deviceUploadResource.ts +21 -0
  281. package/src/types/api/deviceVerify.ts +15 -0
  282. package/src/types/api/deviceWipe.ts +4 -0
  283. package/src/types/api/dnxGetAddress.ts +23 -0
  284. package/src/types/api/dnxSignTransaction.ts +36 -0
  285. package/src/types/api/event.ts +8 -0
  286. package/src/types/api/evmGetAddress.ts +24 -0
  287. package/src/types/api/evmGetPublicKey.ts +36 -0
  288. package/src/types/api/evmSignMessage.ts +14 -0
  289. package/src/types/api/evmSignMessageEIP712.ts +14 -0
  290. package/src/types/api/evmSignTransaction.ts +80 -0
  291. package/src/types/api/evmSignTypedData.ts +42 -0
  292. package/src/types/api/evmVerifyMessage.ts +15 -0
  293. package/src/types/api/export.ts +194 -0
  294. package/src/types/api/filecoinGetAddress.ts +24 -0
  295. package/src/types/api/filecoinSignTransaction.ts +24 -0
  296. package/src/types/api/firmwareUpdate.ts +66 -0
  297. package/src/types/api/getFeatures.ts +4 -0
  298. package/src/types/api/getLogs.ts +3 -0
  299. package/src/types/api/getNextU2FCounter.ts +7 -0
  300. package/src/types/api/getOnetokenFeatures.ts +7 -0
  301. package/src/types/api/getPassphraseState.ts +6 -0
  302. package/src/types/api/index.ts +404 -0
  303. package/src/types/api/init.ts +11 -0
  304. package/src/types/api/kaspaGetAddress.ts +26 -0
  305. package/src/types/api/kaspaSignTransaction.ts +44 -0
  306. package/src/types/api/lnurlAuth.ts +22 -0
  307. package/src/types/api/nearGetAddress.ts +23 -0
  308. package/src/types/api/nearSignTransaction.ts +13 -0
  309. package/src/types/api/nemGetAddress.ts +24 -0
  310. package/src/types/api/nemSignTransaction.ts +118 -0
  311. package/src/types/api/neoGetAddress.ts +24 -0
  312. package/src/types/api/neoSignTransaction.ts +18 -0
  313. package/src/types/api/nervosGetAddress.ts +24 -0
  314. package/src/types/api/nervosSignTransaction.ts +19 -0
  315. package/src/types/api/nexaGetAddress.ts +26 -0
  316. package/src/types/api/nexaSignTransaction.ts +28 -0
  317. package/src/types/api/nostrDecryptMessage.ts +25 -0
  318. package/src/types/api/nostrEncryptMessage.ts +25 -0
  319. package/src/types/api/nostrGetPublicKey.ts +28 -0
  320. package/src/types/api/nostrSignEvent.ts +52 -0
  321. package/src/types/api/nostrSignSchnorr.ts +22 -0
  322. package/src/types/api/polkadotGetAddress.ts +30 -0
  323. package/src/types/api/polkadotSignTransaction.ts +19 -0
  324. package/src/types/api/promptWebDeviceAccess.ts +6 -0
  325. package/src/types/api/scdoGetAddress.ts +23 -0
  326. package/src/types/api/scdoSignMessage.ts +13 -0
  327. package/src/types/api/scdoSignTransaction.ts +24 -0
  328. package/src/types/api/searchDevices.ts +4 -0
  329. package/src/types/api/setU2FCounter.ts +7 -0
  330. package/src/types/api/solGetAddress.ts +23 -0
  331. package/src/types/api/solSignMessage.ts +17 -0
  332. package/src/types/api/solSignOffchainMessage.ts +24 -0
  333. package/src/types/api/solSignTransaction.ts +27 -0
  334. package/src/types/api/starcoinGetAddress.ts +23 -0
  335. package/src/types/api/starcoinGetPublicKey.ts +23 -0
  336. package/src/types/api/starcoinSignMessage.ts +13 -0
  337. package/src/types/api/starcoinSignTransaction.ts +13 -0
  338. package/src/types/api/starcoinVerifyMessage.ts +14 -0
  339. package/src/types/api/stellarGetAddress.ts +23 -0
  340. package/src/types/api/stellarSignTransaction.ts +154 -0
  341. package/src/types/api/suiGetAddress.ts +28 -0
  342. package/src/types/api/suiGetPublicKey.ts +27 -0
  343. package/src/types/api/suiSignMessage.ts +13 -0
  344. package/src/types/api/suiSignTransaction.ts +17 -0
  345. package/src/types/api/testInitializeDeviceDuration.ts +6 -0
  346. package/src/types/api/tonGetAddress.ts +34 -0
  347. package/src/types/api/tonSignMessage.ts +42 -0
  348. package/src/types/api/tonSignProof.ts +25 -0
  349. package/src/types/api/tronGetAddress.ts +23 -0
  350. package/src/types/api/tronSignMessage.ts +14 -0
  351. package/src/types/api/tronSignTransaction.ts +89 -0
  352. package/src/types/api/uiResponse.ts +3 -0
  353. package/src/types/api/xrpGetAddress.ts +28 -0
  354. package/src/types/api/xrpSignTransaction.ts +29 -0
  355. package/src/types/device.ts +194 -0
  356. package/src/types/firmware.ts +41 -0
  357. package/src/types/global.d.ts +3 -0
  358. package/src/types/index.ts +5 -0
  359. package/src/types/params.ts +64 -0
  360. package/src/types/settings.ts +144 -0
  361. package/src/utils/arrayUtils.ts +7 -0
  362. package/src/utils/assets.ts +5 -0
  363. package/src/utils/bridgeUpdate.ts +80 -0
  364. package/src/utils/capabilitieUtils.ts +12 -0
  365. package/src/utils/deviceFeaturesUtils.ts +352 -0
  366. package/src/utils/deviceInfoUtils.ts +167 -0
  367. package/src/utils/deviceSettings.ts +109 -0
  368. package/src/utils/deviceVersionUtils.ts +79 -0
  369. package/src/utils/findDefectiveBatchDevice.ts +39 -0
  370. package/src/utils/getMutex.ts +41 -0
  371. package/src/utils/getSynchronize.ts +25 -0
  372. package/src/utils/homescreen.ts +345 -0
  373. package/src/utils/index.ts +44 -0
  374. package/src/utils/logger.ts +190 -0
  375. package/src/utils/networkUtils.ts +25 -0
  376. package/src/utils/patch.ts +14 -0
  377. package/src/utils/promiseUtils.ts +4 -0
  378. package/src/utils/release.ts +42 -0
  379. package/src/utils/semver.test.js +53 -0
  380. package/src/utils/tracing.ts +238 -0
  381. package/src/utils/versionUtils.ts +120 -0
  382. package/tsconfig.json +11 -0
@@ -0,0 +1,219 @@
1
+ import {
2
+ EFirmwareType,
3
+ ERRORS,
4
+ HardwareError,
5
+ HardwareErrorCode,
6
+ createDeferred,
7
+ } from '@onetokenfe/hd-shared';
8
+
9
+ import { UI_REQUEST } from '../constants/ui-request';
10
+ import { BaseMethod } from './BaseMethod';
11
+ import { validateParams } from './helpers/paramsValidator';
12
+ import { getBinary } from './firmware/getBinary';
13
+ import { uploadFirmware } from './firmware/uploadFirmware';
14
+ import { createUiMessage } from '../events';
15
+ import { DeviceModelToTypes, type KnownDevice } from '../types';
16
+ import { isEnteredManuallyBoot } from './firmware/bootloaderHelper';
17
+ import { LoggerNames, getDeviceType, getDeviceUUID, getLogger, wait } from '../utils';
18
+ import { DataManager } from '../data-manager';
19
+ import { DevicePool } from '../device/DevicePool';
20
+
21
+ import type { Deferred } from '@onetokenfe/hd-shared';
22
+
23
+ type Params = {
24
+ binary?: ArrayBuffer;
25
+ version?: number[];
26
+ updateType: 'firmware' | 'ble';
27
+ };
28
+
29
+ const Log = getLogger(LoggerNames.Method);
30
+
31
+ export default class FirmwareUpdate extends BaseMethod<Params> {
32
+ checkPromise: Deferred<any> | null = null;
33
+
34
+ init() {
35
+ this.allowDeviceMode = [UI_REQUEST.BOOTLOADER, UI_REQUEST.NOT_INITIALIZE];
36
+ this.requireDeviceMode = [];
37
+ this.useDevicePassphraseState = false;
38
+ this.skipForceUpdateCheck = true;
39
+
40
+ const { payload } = this;
41
+
42
+ validateParams(payload, [
43
+ { name: 'version', type: 'array' },
44
+ { name: 'binary', type: 'buffer' },
45
+ { name: 'updateType', type: 'string', required: true },
46
+ { name: 'rebootOnSuccess', type: 'boolean' },
47
+ ]);
48
+
49
+ this.params = { updateType: payload.updateType };
50
+
51
+ if ('version' in payload) {
52
+ this.params = {
53
+ ...this.params,
54
+ version: payload.version,
55
+ };
56
+ }
57
+
58
+ if ('binary' in payload) {
59
+ this.params = {
60
+ ...this.params,
61
+ binary: payload.binary,
62
+ };
63
+ }
64
+ }
65
+
66
+ postTipMessage = (message: string) => {
67
+ this.postMessage(
68
+ createUiMessage(UI_REQUEST.FIRMWARE_TIP, {
69
+ device: this.device.toMessageObject() as KnownDevice,
70
+ data: {
71
+ message,
72
+ },
73
+ })
74
+ );
75
+ };
76
+
77
+ checkDeviceToBootloader(connectId: string | undefined) {
78
+ this.checkPromise = createDeferred();
79
+ const env = DataManager.getSettings('env');
80
+ const isBleReconnect = connectId && DataManager.isBleConnect(env);
81
+
82
+ Log.log('FirmwareUpdate [checkDeviceToBootloader] isBleReconnect: ', isBleReconnect);
83
+
84
+ // check device goto bootloader mode
85
+ const intervalTimer: ReturnType<typeof setInterval> | undefined = setInterval(
86
+ async () => {
87
+ if (isBleReconnect) {
88
+ try {
89
+ await this.device.deviceConnector?.acquire(
90
+ this.device.originalDescriptor.id,
91
+ null,
92
+ true
93
+ );
94
+ await this.device.initialize();
95
+ if (this.device.features?.bootloader_mode) {
96
+ clearInterval(intervalTimer);
97
+ this.checkPromise?.resolve(true);
98
+ }
99
+ } catch (e) {
100
+ // ignore error because of device is not connected
101
+ Log.log('catch Bluetooth error when device is restarting: ', e);
102
+ }
103
+ } else {
104
+ const deviceDiff = await this.device.deviceConnector?.enumerate();
105
+ const devicesDescriptor = deviceDiff?.descriptors ?? [];
106
+ const { deviceList } = await DevicePool.getDevices(devicesDescriptor, connectId);
107
+
108
+ if (deviceList.length === 1 && deviceList[0]?.features?.bootloader_mode) {
109
+ // should update current device from cache
110
+ // because device was reboot and had some new requests
111
+ this.device.updateFromCache(deviceList[0]);
112
+ this.device.commands.disposed = false;
113
+
114
+ clearInterval(intervalTimer);
115
+ this.checkPromise?.resolve(true);
116
+ }
117
+ }
118
+ },
119
+ isBleReconnect ? 3000 : 2000
120
+ );
121
+
122
+ // check goto bootloader mode timeout and throw error
123
+ setTimeout(() => {
124
+ if (this.checkPromise) {
125
+ clearInterval(intervalTimer);
126
+ this.checkPromise.reject(new Error());
127
+ }
128
+ }, 30000);
129
+ }
130
+
131
+ async run() {
132
+ const { device, params } = this;
133
+ const { features, commands } = device;
134
+ const deviceType = getDeviceType(features);
135
+
136
+ if (!features?.bootloader_mode && features) {
137
+ const uuid = getDeviceUUID(features);
138
+ // should go to bootloader mode manually
139
+ if (isEnteredManuallyBoot(features, params.updateType)) {
140
+ return Promise.reject(ERRORS.TypedError(HardwareErrorCode.FirmwareUpdateManuallyEnterBoot));
141
+ }
142
+
143
+ // auto go to bootloader mode
144
+ try {
145
+ this.postTipMessage('AutoRebootToBootloader');
146
+ const bootRes = await commands.typedCall('DeviceBackToBoot', 'Success');
147
+ // @ts-expect-error
148
+ if (bootRes.type === 'CallMethodError') {
149
+ throw ERRORS.TypedError(HardwareErrorCode.FirmwareUpdateAutoEnterBootFailure);
150
+ }
151
+ this.postTipMessage('GoToBootloaderSuccess');
152
+ this.checkDeviceToBootloader(this.payload.connectId);
153
+
154
+ // force clean classic device cache so that the device can initialize again
155
+ if (DeviceModelToTypes.model_classic.includes(deviceType)) {
156
+ DevicePool.clearDeviceCache(uuid);
157
+ }
158
+ delete DevicePool.devicesCache[''];
159
+ await this.checkPromise?.promise;
160
+ this.checkPromise = null;
161
+ /**
162
+ * Touch 1 with bootloader v2.5.0 issue: BLE chip need more time for looking up name, here change the delay time to 3000ms after rebooting.
163
+ */
164
+ const isTouch = DeviceModelToTypes.model_touch.includes(deviceType);
165
+ await wait(isTouch ? 3000 : 1500);
166
+ } catch (e) {
167
+ if (e instanceof HardwareError) {
168
+ return Promise.reject(e);
169
+ }
170
+ Log.log('auto go to bootloader mode failed: ', e);
171
+ return Promise.reject(
172
+ ERRORS.TypedError(HardwareErrorCode.FirmwareUpdateAutoEnterBootFailure)
173
+ );
174
+ }
175
+ }
176
+
177
+ let binary;
178
+ try {
179
+ if (params.binary) {
180
+ binary = this.params.binary;
181
+ } else {
182
+ if (!device.features) {
183
+ throw ERRORS.TypedError(
184
+ HardwareErrorCode.RuntimeError,
185
+ 'no features found for this device'
186
+ );
187
+ }
188
+ this.postTipMessage('DownloadFirmware');
189
+ const firmware = await getBinary({
190
+ features: device.features,
191
+ version: params.version,
192
+ updateType: params.updateType,
193
+ firmwareType: EFirmwareType.Universal,
194
+ });
195
+ binary = firmware.binary;
196
+ this.postTipMessage('DownloadFirmwareSuccess');
197
+ }
198
+ } catch (err) {
199
+ throw ERRORS.TypedError(HardwareErrorCode.FirmwareUpdateDownloadFailed, err.message ?? err);
200
+ }
201
+
202
+ await this.device.acquire();
203
+
204
+ const response = await uploadFirmware(
205
+ params.updateType,
206
+ this.device.getCommands().typedCall.bind(this.device.getCommands()),
207
+ this.postMessage,
208
+ device,
209
+ { payload: binary, rebootOnSuccess: this.payload.rebootOnSuccess },
210
+ false
211
+ );
212
+
213
+ if (this.connectId) {
214
+ DevicePool.clearDeviceCache(this.connectId);
215
+ }
216
+
217
+ return response;
218
+ }
219
+ }
@@ -0,0 +1,408 @@
1
+ import {
2
+ type Deferred,
3
+ EDeviceType,
4
+ type EFirmwareType,
5
+ ERRORS,
6
+ HardwareError,
7
+ HardwareErrorCode,
8
+ createDeferred,
9
+ } from '@onetokenfe/hd-shared';
10
+ import semver from 'semver';
11
+
12
+ import { UI_REQUEST } from '../constants/ui-request';
13
+ import { BaseMethod } from './BaseMethod';
14
+ import { validateParams } from './helpers/paramsValidator';
15
+ import { DevicePool } from '../device/DevicePool';
16
+ import { getBinary, getInfo, getSysResourceBinary } from './firmware/getBinary';
17
+ import { updateResources, uploadFirmware } from './firmware/uploadFirmware';
18
+ import {
19
+ LoggerNames,
20
+ getDeviceFirmwareVersion,
21
+ getDeviceType,
22
+ getDeviceUUID,
23
+ getFirmwareType,
24
+ getLogger,
25
+ wait,
26
+ } from '../utils';
27
+ import { FirmwareUpdateTipMessage, createUiMessage } from '../events/ui-request';
28
+ import { DeviceModelToTypes } from '../types';
29
+ import { DataManager } from '../data-manager';
30
+ import { DEVICE } from '../events';
31
+
32
+ import type { Features, KnownDevice } from '../types';
33
+ import type { Device } from '../device/Device';
34
+
35
+ type Params = {
36
+ binary?: ArrayBuffer;
37
+ version?: number[];
38
+ updateType: 'firmware' | 'ble';
39
+ forcedUpdateRes?: boolean;
40
+ isUpdateBootloader?: boolean;
41
+ firmwareType?: EFirmwareType;
42
+ };
43
+
44
+ const Log = getLogger(LoggerNames.Method);
45
+
46
+ export default class FirmwareUpdateV2 extends BaseMethod<Params> {
47
+ checkPromise: Deferred<any> | null = null;
48
+
49
+ init() {
50
+ this.allowDeviceMode = [UI_REQUEST.BOOTLOADER, UI_REQUEST.NOT_INITIALIZE];
51
+ this.requireDeviceMode = [];
52
+ this.useDevicePassphraseState = false;
53
+ this.skipForceUpdateCheck = true;
54
+
55
+ const { payload } = this;
56
+
57
+ validateParams(payload, [
58
+ { name: 'version', type: 'array' },
59
+ { name: 'binary', type: 'buffer' },
60
+ { name: 'forcedUpdateRes', type: 'boolean' },
61
+ { name: 'platform', type: 'string', required: true },
62
+ { name: 'firmwareType', type: 'string' },
63
+ ]);
64
+
65
+ if (!payload.updateType) {
66
+ throw ERRORS.TypedError(
67
+ HardwareErrorCode.CallMethodInvalidParameter,
68
+ 'updateType is required'
69
+ );
70
+ }
71
+
72
+ this.params = {
73
+ updateType: payload.updateType,
74
+ forcedUpdateRes: payload.forcedUpdateRes,
75
+ isUpdateBootloader: payload.isUpdateBootloader,
76
+ };
77
+
78
+ if ('version' in payload) {
79
+ this.params = {
80
+ ...this.params,
81
+ version: payload.version,
82
+ firmwareType: payload.firmwareType,
83
+ };
84
+ }
85
+
86
+ if ('binary' in payload) {
87
+ this.params = {
88
+ ...this.params,
89
+ binary: payload.binary,
90
+ };
91
+ }
92
+ }
93
+
94
+ postTipMessage = (message: string) => {
95
+ this.postMessage(
96
+ createUiMessage(UI_REQUEST.FIRMWARE_TIP, {
97
+ device: this.device.toMessageObject() as KnownDevice,
98
+ data: {
99
+ message,
100
+ },
101
+ })
102
+ );
103
+ };
104
+
105
+ private async _promptDeviceInBootloaderForWebDevice({ device }: { device: Device }) {
106
+ return new Promise((resolve, reject) => {
107
+ if (this.device.listenerCount(DEVICE.SELECT_DEVICE_IN_BOOTLOADER_FOR_WEB_DEVICE) > 0) {
108
+ this.device.emit(
109
+ DEVICE.SELECT_DEVICE_IN_BOOTLOADER_FOR_WEB_DEVICE,
110
+ this.device,
111
+ (err, deviceId) => {
112
+ if (err) {
113
+ reject(err);
114
+ } else {
115
+ resolve(deviceId);
116
+ }
117
+ }
118
+ );
119
+ }
120
+ });
121
+ }
122
+
123
+ checkDeviceToBootloader(connectId: string | undefined) {
124
+ this.checkPromise = createDeferred();
125
+ const env = DataManager.getSettings('env');
126
+ const isBleReconnect = connectId && DataManager.isBleConnect(env);
127
+
128
+ Log.log('FirmwareUpdateV2 [checkDeviceToBootloader] isBleReconnect: ', isBleReconnect);
129
+
130
+ // check device goto bootloader mode
131
+ let isFirstCheck = true;
132
+ let checkCount = 0;
133
+ // eslint-disable-next-line prefer-const
134
+ let timeoutTimer: ReturnType<typeof setTimeout> | undefined;
135
+
136
+ const isTouchOrProDevice =
137
+ getDeviceType(this?.device?.features) === EDeviceType.Touch ||
138
+ getDeviceType(this?.device?.features) === EDeviceType.Pro;
139
+
140
+ const intervalTimer: ReturnType<typeof setInterval> | undefined = setInterval(
141
+ async () => {
142
+ checkCount += 1;
143
+ Log.log('FirmwareUpdateV2 [checkDeviceToBootloader] isFirstCheck: ', isFirstCheck);
144
+ if (isTouchOrProDevice && isFirstCheck) {
145
+ isFirstCheck = false;
146
+ Log.log('FirmwareUpdateV2 [checkDeviceToBootloader] wait 3000ms');
147
+ await wait(3000);
148
+ }
149
+
150
+ if (
151
+ checkCount > 4 &&
152
+ DataManager.isBrowserWebUsb(DataManager.getSettings('env')) &&
153
+ !this.payload.skipWebDevicePrompt
154
+ ) {
155
+ clearInterval(intervalTimer);
156
+ clearTimeout(timeoutTimer);
157
+
158
+ try {
159
+ this.postTipMessage(FirmwareUpdateTipMessage.SelectDeviceInBootloaderForWebDevice);
160
+ const confirmed = await this._promptDeviceInBootloaderForWebDevice({
161
+ device: this.device,
162
+ });
163
+ if (confirmed) {
164
+ await this._checkDeviceInBootloaderMode(connectId, intervalTimer, timeoutTimer);
165
+ }
166
+ } catch (e) {
167
+ Log.log(
168
+ 'FirmwareUpdateV2 [checkDeviceToBootloader] promptDeviceInBootloaderForWebDevice failed: ',
169
+ e
170
+ );
171
+ this.checkPromise?.reject(e);
172
+ }
173
+ return;
174
+ }
175
+
176
+ if (isBleReconnect) {
177
+ try {
178
+ await this.device.deviceConnector?.acquire(
179
+ this.device.originalDescriptor.id,
180
+ null,
181
+ true
182
+ );
183
+ await this.device.initialize();
184
+ if (this.device.features?.bootloader_mode) {
185
+ clearInterval(intervalTimer);
186
+ this.checkPromise?.resolve(true);
187
+ }
188
+ } catch (e) {
189
+ // ignore error because of device is not connected
190
+ Log.log('catch Bluetooth error when device is restarting: ', e);
191
+ }
192
+ } else {
193
+ await this._checkDeviceInBootloaderMode(connectId, intervalTimer, timeoutTimer);
194
+ }
195
+ },
196
+ isBleReconnect ? 3000 : 2000
197
+ );
198
+
199
+ // check goto bootloader mode timeout and throw error
200
+ timeoutTimer = setTimeout(() => {
201
+ if (this.checkPromise) {
202
+ clearInterval(intervalTimer);
203
+ this.checkPromise.reject(new Error());
204
+ }
205
+ }, 30000);
206
+ }
207
+
208
+ private async _checkDeviceInBootloaderMode(
209
+ connectId: string | undefined,
210
+ intervalTimer?: ReturnType<typeof setInterval>,
211
+ timeoutTimer?: ReturnType<typeof setTimeout>
212
+ ) {
213
+ const deviceDiff = await this.device.deviceConnector?.enumerate();
214
+ const devicesDescriptor = deviceDiff?.descriptors ?? [];
215
+ const { deviceList } = await DevicePool.getDevices(devicesDescriptor, connectId);
216
+
217
+ if (deviceList.length === 1 && deviceList[0]?.features?.bootloader_mode) {
218
+ // should update current device from cache
219
+ // because device was reboot and had some new requests
220
+ this.device.updateFromCache(deviceList[0]);
221
+ this.device.commands.disposed = false;
222
+
223
+ if (intervalTimer) clearInterval(intervalTimer);
224
+ if (timeoutTimer) clearTimeout(timeoutTimer);
225
+ this.checkPromise?.resolve(true);
226
+ return true;
227
+ }
228
+ return false;
229
+ }
230
+
231
+ isEnteredManuallyBoot(features: Features) {
232
+ const deviceType = getDeviceType(features);
233
+ const isMini = deviceType === EDeviceType.Mini;
234
+ const isBoot183ClassicUpBle =
235
+ this.params.updateType === 'firmware' &&
236
+ deviceType === EDeviceType.Classic &&
237
+ features.bootloader_version === '1.8.3';
238
+ return isMini || isBoot183ClassicUpBle;
239
+ }
240
+
241
+ isSupportResourceUpdate(features: Features, updateType: string) {
242
+ if (updateType !== 'firmware') return false;
243
+
244
+ const deviceType = getDeviceType(features);
245
+ const isTouchMode = deviceType === EDeviceType.Touch || deviceType === EDeviceType.Pro;
246
+ const currentVersion = getDeviceFirmwareVersion(features).join('.');
247
+
248
+ return isTouchMode && semver.gte(currentVersion, '3.2.0');
249
+ }
250
+
251
+ /**
252
+ * Check the version number of Touch to determine if it
253
+ * needs to be upgraded via the desktop
254
+ */
255
+ checkVersionForCopyTouchResource(features: Features | undefined, firmwareType: EFirmwareType) {
256
+ if (!features) return;
257
+ const deviceType = getDeviceType(features);
258
+ const currentVersion = getDeviceFirmwareVersion(features).join('.');
259
+ const targetVersion = this.params.version?.join('.');
260
+ const { updateType } = this.params;
261
+
262
+ const releaseInfo = getInfo({ features, updateType, firmwareType });
263
+ if (!releaseInfo) return;
264
+ const { fullResourceRange } = releaseInfo;
265
+ if (!fullResourceRange) return;
266
+
267
+ const [minVersion, limitVersion] = fullResourceRange;
268
+ if (deviceType === EDeviceType.Touch && updateType === 'firmware' && targetVersion) {
269
+ if (
270
+ semver.lt(currentVersion, minVersion) &&
271
+ semver.gte(targetVersion, limitVersion) &&
272
+ this.payload.platform !== 'desktop'
273
+ ) {
274
+ throw ERRORS.TypedError(HardwareErrorCode.UseDesktopToUpdateFirmware);
275
+ }
276
+ }
277
+ }
278
+
279
+ async run() {
280
+ const { device, params } = this;
281
+ const { features, commands } = device;
282
+ const deviceType = getDeviceType(features);
283
+
284
+ const deviceFirmwareType = getFirmwareType(device.features);
285
+ const firmwareType = params.firmwareType ?? deviceFirmwareType;
286
+
287
+ this.checkVersionForCopyTouchResource(features, firmwareType);
288
+
289
+ if (!features?.bootloader_mode && features) {
290
+ const uuid = getDeviceUUID(features);
291
+ // should go to bootloader mode manually
292
+ if (this.isEnteredManuallyBoot(features)) {
293
+ return Promise.reject(ERRORS.TypedError(HardwareErrorCode.FirmwareUpdateManuallyEnterBoot));
294
+ }
295
+
296
+ // check & upgrade firmware resource
297
+ if (features && this.isSupportResourceUpdate(features, params.updateType)) {
298
+ this.postTipMessage('CheckLatestUiResource');
299
+ const resourceUrl = DataManager.getSysResourcesLatestRelease({
300
+ features,
301
+ forcedUpdateRes: params.forcedUpdateRes,
302
+ firmwareType,
303
+ });
304
+ if (resourceUrl) {
305
+ this.postTipMessage('DownloadLatestUiResource');
306
+ const resource = await getSysResourceBinary(resourceUrl);
307
+ this.postTipMessage('DownloadLatestUiResourceSuccess');
308
+ if (resource) {
309
+ await updateResources(
310
+ this.device.getCommands().typedCall.bind(this.device.getCommands()),
311
+ this.postMessage,
312
+ device,
313
+ resource.binary
314
+ );
315
+ }
316
+ }
317
+ }
318
+
319
+ // check if the device commands has been disposed
320
+ this.device?.commands?.checkDisposed();
321
+
322
+ // auto go to bootloader mode
323
+ try {
324
+ this.postTipMessage('AutoRebootToBootloader');
325
+ const bootRes = await commands.typedCall('DeviceBackToBoot', 'Success');
326
+ // @ts-expect-error
327
+ if (bootRes.type === 'CallMethodError') {
328
+ throw ERRORS.TypedError(HardwareErrorCode.FirmwareUpdateAutoEnterBootFailure);
329
+ }
330
+ this.postTipMessage('GoToBootloaderSuccess');
331
+ this.checkDeviceToBootloader(this.payload.connectId);
332
+
333
+ // force clean classic device cache so that the device can initialize again
334
+ if (DeviceModelToTypes.model_classic.includes(deviceType)) {
335
+ DevicePool.clearDeviceCache(uuid);
336
+ }
337
+ delete DevicePool.devicesCache[''];
338
+ await this.checkPromise?.promise;
339
+ this.checkPromise = null;
340
+
341
+ // check if the device commands has been disposed
342
+ this.device?.commands?.checkDisposed();
343
+
344
+ /**
345
+ * Touch 1 with bootloader v2.5.0 issue: BLE chip need more time for looking up name, here change the delay time to 3000ms after rebooting.
346
+ */
347
+ const isTouch = DeviceModelToTypes.model_touch.includes(deviceType);
348
+ await wait(isTouch ? 3000 : 1500);
349
+ } catch (e) {
350
+ if (e instanceof HardwareError) {
351
+ return Promise.reject(e);
352
+ }
353
+ console.log('auto go to bootloader mode failed: ', e);
354
+ return Promise.reject(
355
+ ERRORS.TypedError(HardwareErrorCode.FirmwareUpdateAutoEnterBootFailure)
356
+ );
357
+ }
358
+ }
359
+
360
+ let binary;
361
+
362
+ try {
363
+ if (params.binary) {
364
+ binary = this.params.binary;
365
+ } else {
366
+ if (!device.features) {
367
+ throw ERRORS.TypedError(
368
+ HardwareErrorCode.RuntimeError,
369
+ 'no features found for this device'
370
+ );
371
+ }
372
+ this.postTipMessage('DownloadFirmware');
373
+
374
+ const firmware = await getBinary({
375
+ features: device.features,
376
+ version: params.version,
377
+ updateType: params.updateType,
378
+ isUpdateBootloader: params.isUpdateBootloader,
379
+ firmwareType,
380
+ });
381
+ binary = firmware.binary;
382
+ this.postTipMessage('DownloadFirmwareSuccess');
383
+ }
384
+ } catch (err) {
385
+ throw ERRORS.TypedError(HardwareErrorCode.FirmwareUpdateDownloadFailed, err.message ?? err);
386
+ }
387
+
388
+ // check if the device commands has been disposed
389
+ this.device?.commands?.checkDisposed();
390
+
391
+ await this.device.acquire();
392
+
393
+ const response = await uploadFirmware(
394
+ params.updateType,
395
+ this.device.getCommands().typedCall.bind(this.device.getCommands()),
396
+ this.postMessage,
397
+ device,
398
+ { payload: binary, rebootOnSuccess: true },
399
+ params.isUpdateBootloader
400
+ );
401
+
402
+ if (this.connectId) {
403
+ DevicePool.clearDeviceCache(this.connectId);
404
+ }
405
+
406
+ return response;
407
+ }
408
+ }