@trezor/connect 9.6.5-beta.2 → 9.7.0-beta.2

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 (415) hide show
  1. package/CHANGELOG.md +43 -15
  2. package/README.md +1 -1
  3. package/lib/api/applyFlags.js +31 -26
  4. package/lib/api/applySettings.js +43 -40
  5. package/lib/api/authenticateDevice.js +82 -54
  6. package/lib/api/authorizeCoinjoin.js +35 -28
  7. package/lib/api/backupDevice.js +32 -27
  8. package/lib/api/bitcoin/TransactionComposer.js +131 -123
  9. package/lib/api/bitcoin/createPendingTx.js +55 -52
  10. package/lib/api/bitcoin/enhanceSignTx.js +57 -55
  11. package/lib/api/bitcoin/index.js +4 -1
  12. package/lib/api/bitcoin/inputs.js +71 -46
  13. package/lib/api/bitcoin/outputs.js +108 -85
  14. package/lib/api/bitcoin/refTx.d.ts +1 -1
  15. package/lib/api/bitcoin/refTx.js +233 -201
  16. package/lib/api/bitcoin/signtx.js +208 -152
  17. package/lib/api/bitcoin/signtxLegacy.js +169 -119
  18. package/lib/api/bitcoin/signtxVerify.js +80 -67
  19. package/lib/api/bitcoin/transactionBytes.js +61 -59
  20. package/lib/api/bleUnpair.js +28 -25
  21. package/lib/api/blockchainDisconnect.js +31 -24
  22. package/lib/api/blockchainEstimateFee.js +94 -61
  23. package/lib/api/blockchainEvmRpcCall.js +51 -34
  24. package/lib/api/blockchainGetAccountBalanceHistory.d.ts +1 -1
  25. package/lib/api/blockchainGetAccountBalanceHistory.js +50 -32
  26. package/lib/api/blockchainGetCurrentFiatRates.d.ts +1 -1
  27. package/lib/api/blockchainGetCurrentFiatRates.js +43 -29
  28. package/lib/api/blockchainGetFiatRatesForTimestamps.d.ts +1 -1
  29. package/lib/api/blockchainGetFiatRatesForTimestamps.js +49 -32
  30. package/lib/api/blockchainGetInfo.js +31 -22
  31. package/lib/api/blockchainGetTransactions.d.ts +1 -1
  32. package/lib/api/blockchainGetTransactions.js +36 -24
  33. package/lib/api/blockchainSetCustomBackend.js +34 -25
  34. package/lib/api/blockchainSubscribe.js +57 -36
  35. package/lib/api/blockchainSubscribeFiatRates.js +36 -24
  36. package/lib/api/blockchainUnsubscribe.js +57 -37
  37. package/lib/api/blockchainUnsubscribeFiatRates.js +31 -22
  38. package/lib/api/cancelCoinjoinAuthorization.js +26 -20
  39. package/lib/api/cardano/api/cardanoComposeTransaction.js +75 -50
  40. package/lib/api/cardano/api/cardanoGetAddress.js +105 -102
  41. package/lib/api/cardano/api/cardanoGetNativeScriptHash.js +59 -56
  42. package/lib/api/cardano/api/cardanoGetPublicKey.js +58 -58
  43. package/lib/api/cardano/api/cardanoSignMessage.js +81 -78
  44. package/lib/api/cardano/api/cardanoSignTransaction.js +269 -240
  45. package/lib/api/cardano/api/index.js +40 -7
  46. package/lib/api/cardano/cardanoAddressParameters.js +71 -65
  47. package/lib/api/cardano/cardanoAuxiliaryData.js +68 -63
  48. package/lib/api/cardano/cardanoCertificate.js +124 -119
  49. package/lib/api/cardano/cardanoInputs.js +33 -33
  50. package/lib/api/cardano/cardanoOutputs.d.ts +1 -1
  51. package/lib/api/cardano/cardanoOutputs.js +63 -61
  52. package/lib/api/cardano/cardanoTokenBundle.d.ts +2 -2
  53. package/lib/api/cardano/cardanoTokenBundle.js +18 -13
  54. package/lib/api/cardano/cardanoUtils.js +94 -89
  55. package/lib/api/cardano/cardanoWitnesses.js +46 -42
  56. package/lib/api/changeLanguage.js +40 -29
  57. package/lib/api/changePin.js +21 -16
  58. package/lib/api/changeWipeCode.js +24 -16
  59. package/lib/api/cipherKeyValue.js +42 -41
  60. package/lib/api/common/Discovery.js +114 -112
  61. package/lib/api/common/paramsValidator.js +110 -116
  62. package/lib/api/composeTransaction.d.ts +1 -1
  63. package/lib/api/composeTransaction.js +307 -256
  64. package/lib/api/discoverAccounts.js +291 -191
  65. package/lib/api/eos/api/eosGetPublicKey.js +56 -52
  66. package/lib/api/eos/api/eosSignTransaction.js +35 -26
  67. package/lib/api/eos/api/index.js +16 -3
  68. package/lib/api/eos/eosSignTx.js +308 -312
  69. package/lib/api/ethereum/api/ethereumGetAddress.js +106 -107
  70. package/lib/api/ethereum/api/ethereumGetPublicKey.js +72 -62
  71. package/lib/api/ethereum/api/ethereumSignMessage.js +55 -48
  72. package/lib/api/ethereum/api/ethereumSignTransaction.d.ts +33 -0
  73. package/lib/api/ethereum/api/ethereumSignTransaction.js +137 -132
  74. package/lib/api/ethereum/api/ethereumSignTypedData.d.ts +6 -4
  75. package/lib/api/ethereum/api/ethereumSignTypedData.js +183 -171
  76. package/lib/api/ethereum/api/ethereumVerifyMessage.js +27 -24
  77. package/lib/api/ethereum/api/index.js +40 -7
  78. package/lib/api/ethereum/ethereumDefinitions.js +94 -87
  79. package/lib/api/ethereum/ethereumSignTx.js +116 -111
  80. package/lib/api/ethereum/ethereumSignTypedData.js +98 -95
  81. package/lib/api/evoluGetDelegatedIdentityKey.d.ts +11 -0
  82. package/lib/api/evoluGetDelegatedIdentityKey.js +41 -0
  83. package/lib/api/evoluGetNode.js +24 -17
  84. package/lib/api/evoluSignRegistrationRequest.d.ts +12 -0
  85. package/lib/api/evoluSignRegistrationRequest.js +35 -0
  86. package/lib/api/firmware/calculateFirmwareHash.js +44 -32
  87. package/lib/api/firmware/getBinary.js +30 -22
  88. package/lib/api/firmware/index.js +46 -8
  89. package/lib/api/firmware/modifyFirmware.js +13 -12
  90. package/lib/api/firmware/parseFirmwareHeaders.js +29 -30
  91. package/lib/api/firmware/uploadFirmware.js +84 -67
  92. package/lib/api/firmware/verifyEntropy.js +88 -83
  93. package/lib/api/getAccountDescriptor.js +118 -120
  94. package/lib/api/getAccountInfo.d.ts +14 -14
  95. package/lib/api/getAccountInfo.js +316 -287
  96. package/lib/api/getAddress.js +128 -118
  97. package/lib/api/getCoinInfo.js +22 -17
  98. package/lib/api/getDeviceState.js +16 -10
  99. package/lib/api/getFeatures.d.ts +5 -1
  100. package/lib/api/getFeatures.js +15 -12
  101. package/lib/api/getFirmwareHash.js +23 -18
  102. package/lib/api/getNonce.js +12 -9
  103. package/lib/api/getOwnershipId.js +57 -51
  104. package/lib/api/getOwnershipProof.js +66 -60
  105. package/lib/api/getPublicKey.js +72 -66
  106. package/lib/api/getSettings.js +12 -9
  107. package/lib/api/index.d.ts +2 -0
  108. package/lib/api/index.js +350 -58
  109. package/lib/api/loadDevice.js +40 -35
  110. package/lib/api/monero/api/index.js +28 -5
  111. package/lib/api/monero/api/moneroGetAddress.js +108 -82
  112. package/lib/api/monero/api/moneroGetWatchKey.js +37 -32
  113. package/lib/api/monero/api/moneroKeyImageSync.js +111 -107
  114. package/lib/api/monero/api/moneroSignTransaction.js +173 -185
  115. package/lib/api/nem/api/index.js +16 -3
  116. package/lib/api/nem/api/nemGetAddress.js +107 -102
  117. package/lib/api/nem/api/nemSignTransaction.js +25 -20
  118. package/lib/api/nem/nemSignTx.js +128 -125
  119. package/lib/api/pushTransaction.js +31 -27
  120. package/lib/api/recoveryDevice.js +44 -39
  121. package/lib/api/requestLogin.d.ts +0 -1
  122. package/lib/api/requestLogin.js +47 -52
  123. package/lib/api/resetDevice.js +100 -90
  124. package/lib/api/ripple/api/index.js +16 -3
  125. package/lib/api/ripple/api/rippleGetAddress.js +92 -88
  126. package/lib/api/ripple/api/rippleSignTransaction.js +44 -34
  127. package/lib/api/setBrightness.js +21 -16
  128. package/lib/api/setBusy.js +27 -20
  129. package/lib/api/setProxy.js +22 -15
  130. package/lib/api/showDeviceTutorial.js +18 -15
  131. package/lib/api/signMessage.js +50 -46
  132. package/lib/api/signTransaction.js +325 -238
  133. package/lib/api/solana/additionalInfo.js +17 -14
  134. package/lib/api/solana/api/index.js +28 -5
  135. package/lib/api/solana/api/solanaComposeTransaction.js +46 -50
  136. package/lib/api/solana/api/solanaGetAddress.js +92 -90
  137. package/lib/api/solana/api/solanaGetPublicKey.js +56 -52
  138. package/lib/api/solana/api/solanaSignTransaction.js +175 -168
  139. package/lib/api/solana/solanaDefinitions.js +32 -25
  140. package/lib/api/solana/solanaUtils.d.ts +2 -2
  141. package/lib/api/solana/solanaUtils.js +231 -177
  142. package/lib/api/stellar/api/index.js +16 -3
  143. package/lib/api/stellar/api/stellarGetAddress.js +92 -88
  144. package/lib/api/stellar/api/stellarSignTransaction.js +51 -44
  145. package/lib/api/stellar/stellarSignTx.js +184 -179
  146. package/lib/api/tezos/api/index.js +22 -4
  147. package/lib/api/tezos/api/tezosGetAddress.js +92 -88
  148. package/lib/api/tezos/api/tezosGetPublicKey.js +55 -51
  149. package/lib/api/tezos/api/tezosSignTransaction.js +23 -18
  150. package/lib/api/tezos/tezosSignTx.js +183 -169
  151. package/lib/api/thpGetCredentials.js +23 -20
  152. package/lib/api/thpRemoveCredentials.js +28 -21
  153. package/lib/api/unlockPath.js +28 -21
  154. package/lib/api/verifyMessage.js +35 -33
  155. package/lib/api/wipeDevice.js +39 -34
  156. package/lib/backend/BackendManager.js +127 -107
  157. package/lib/backend/Blockchain.d.ts +1 -1
  158. package/lib/backend/Blockchain.js +220 -205
  159. package/lib/backend/BlockchainLink.js +17 -5
  160. package/lib/backend/fees/BitcoinFeeLevels.js +41 -34
  161. package/lib/backend/fees/EthereumFeeLevels.js +51 -51
  162. package/lib/backend/fees/MiscFeeLevels.js +25 -24
  163. package/lib/backend/fees/index.js +28 -21
  164. package/lib/constants/cardano.js +11 -8
  165. package/lib/constants/errors.js +72 -65
  166. package/lib/constants/firmware.js +5 -5
  167. package/lib/constants/index.js +16 -3
  168. package/lib/constants/nem.js +19 -16
  169. package/lib/constants/network.js +15 -22
  170. package/lib/constants/utxo.js +4 -1
  171. package/lib/core/AbstractMethod.d.ts +1 -1
  172. package/lib/core/AbstractMethod.js +248 -224
  173. package/lib/core/index.js +936 -775
  174. package/lib/core/method.js +19 -16
  175. package/lib/core/method.native.js +28 -23
  176. package/lib/core/onCallFirmwareUpdate.js +368 -299
  177. package/lib/data/DataManager.js +85 -77
  178. package/lib/data/analyticsInfo.js +35 -29
  179. package/lib/data/coinInfo.js +154 -156
  180. package/lib/data/config.d.ts +1 -1
  181. package/lib/data/config.js +362 -326
  182. package/lib/data/connectSettings.js +131 -144
  183. package/lib/data/defaultFeeLevels.js +154 -108
  184. package/lib/data/firmwareInfo.d.ts +1 -0
  185. package/lib/data/firmwareInfo.js +407 -377
  186. package/lib/data/thpSettings.js +36 -35
  187. package/lib/data/udevInfo.js +24 -24
  188. package/lib/data/version.d.ts +1 -1
  189. package/lib/data/version.js +6 -5
  190. package/lib/device/Device.d.ts +10 -7
  191. package/lib/device/Device.js +731 -749
  192. package/lib/device/DeviceCommands.js +226 -194
  193. package/lib/device/DeviceCurrentSession.d.ts +427 -337
  194. package/lib/device/DeviceCurrentSession.js +235 -236
  195. package/lib/device/DeviceList.d.ts +2 -0
  196. package/lib/device/DeviceList.js +219 -181
  197. package/lib/device/StateStorage.js +32 -29
  198. package/lib/device/TransportList.d.ts +1 -1
  199. package/lib/device/TransportList.js +37 -36
  200. package/lib/device/TransportManager.js +136 -140
  201. package/lib/device/calculateRevisionForDevice.js +20 -14
  202. package/lib/device/checkFirmwareRevision.js +66 -53
  203. package/lib/device/resolveDescriptorForTaproot.js +26 -16
  204. package/lib/device/thp/handshake.js +95 -82
  205. package/lib/device/thp/index.js +53 -38
  206. package/lib/device/thp/pairing.js +209 -199
  207. package/lib/device/thp/session.js +27 -19
  208. package/lib/device/thp/thpCall.js +53 -43
  209. package/lib/device/workflow/checkFirmwareHash.js +77 -67
  210. package/lib/device/workflow/checkFirmwareHashWithRetries.js +32 -29
  211. package/lib/device/workflow/handshake.js +50 -41
  212. package/lib/device/workflow/index.js +10 -2
  213. package/lib/device/workflow/trezorPushNotification.js +68 -63
  214. package/lib/device/workflow/validateState.js +156 -123
  215. package/lib/events/blockchain.js +13 -10
  216. package/lib/events/call.d.ts +6 -4
  217. package/lib/events/call.js +14 -13
  218. package/lib/events/core.js +24 -21
  219. package/lib/events/device.d.ts +2 -2
  220. package/lib/events/device.js +32 -19
  221. package/lib/events/iframe.js +13 -10
  222. package/lib/events/index.d.ts +0 -1
  223. package/lib/events/index.js +6 -3
  224. package/lib/events/popup.js +20 -17
  225. package/lib/events/transport.d.ts +2 -2
  226. package/lib/events/transport.js +16 -11
  227. package/lib/events/ui-promise.js +4 -1
  228. package/lib/events/ui-request.d.ts +0 -4
  229. package/lib/events/ui-request.js +48 -46
  230. package/lib/events/ui-response.d.ts +2 -2
  231. package/lib/events/ui-response.js +20 -17
  232. package/lib/events/webextension.js +9 -6
  233. package/lib/exports.js +10 -2
  234. package/lib/factory.d.ts +3 -2
  235. package/lib/factory.js +34 -141
  236. package/lib/impl/core-in-module.d.ts +1 -8
  237. package/lib/impl/core-in-module.js +186 -211
  238. package/lib/impl/dynamic.d.ts +0 -1
  239. package/lib/impl/dynamic.js +108 -97
  240. package/lib/index-browser.d.ts +1 -0
  241. package/lib/index-browser.js +18 -16
  242. package/lib/index.d.ts +2 -0
  243. package/lib/index.js +144 -148
  244. package/lib/tsconfig.lib.tsbuildinfo +1 -1
  245. package/lib/types/account.js +4 -1
  246. package/lib/types/api/applyFlags.js +4 -1
  247. package/lib/types/api/applySettings.d.ts +3 -3
  248. package/lib/types/api/applySettings.js +7 -7
  249. package/lib/types/api/authenticateDevice.js +7 -4
  250. package/lib/types/api/authorizeCoinjoin.js +13 -10
  251. package/lib/types/api/backupDevice.js +4 -1
  252. package/lib/types/api/bitcoin/index.d.ts +5 -2
  253. package/lib/types/api/bitcoin/index.js +14 -11
  254. package/lib/types/api/bleUnpair.js +4 -1
  255. package/lib/types/api/blockchainDisconnect.js +4 -1
  256. package/lib/types/api/blockchainEstimateFee.js +4 -1
  257. package/lib/types/api/blockchainEvmRpcCall.js +4 -1
  258. package/lib/types/api/blockchainGetAccountBalanceHistory.js +4 -1
  259. package/lib/types/api/blockchainGetCurrentFiatRates.js +4 -1
  260. package/lib/types/api/blockchainGetFiatRatesForTimestamps.js +4 -1
  261. package/lib/types/api/blockchainGetInfo.js +4 -1
  262. package/lib/types/api/blockchainGetTransactions.js +4 -1
  263. package/lib/types/api/blockchainSetCustomBackend.js +4 -1
  264. package/lib/types/api/blockchainSubscribe.js +4 -1
  265. package/lib/types/api/blockchainSubscribeFiatRates.js +4 -1
  266. package/lib/types/api/blockchainUnsubscribe.js +4 -1
  267. package/lib/types/api/blockchainUnsubscribeFiatRates.js +4 -1
  268. package/lib/types/api/cancel.js +4 -1
  269. package/lib/types/api/cancelCoinjoinAuthorization.js +5 -2
  270. package/lib/types/api/cardano/index.d.ts +4 -4
  271. package/lib/types/api/cardano/index.js +173 -180
  272. package/lib/types/api/cardanoComposeTransaction.js +76 -65
  273. package/lib/types/api/cardanoGetAddress.js +4 -1
  274. package/lib/types/api/cardanoGetNativeScriptHash.js +4 -1
  275. package/lib/types/api/cardanoGetPublicKey.js +4 -1
  276. package/lib/types/api/cardanoSignMessage.js +4 -1
  277. package/lib/types/api/cardanoSignTransaction.js +4 -1
  278. package/lib/types/api/changeLanguage.d.ts +1 -1
  279. package/lib/types/api/changeLanguage.js +13 -13
  280. package/lib/types/api/changePin.js +4 -1
  281. package/lib/types/api/changeWipeCode.js +4 -1
  282. package/lib/types/api/cipherKeyValue.d.ts +2 -2
  283. package/lib/types/api/cipherKeyValue.js +11 -8
  284. package/lib/types/api/composeTransaction.js +4 -1
  285. package/lib/types/api/device.js +1 -2
  286. package/lib/types/api/disableWebUSB.js +4 -1
  287. package/lib/types/api/discoverAccounts.js +204 -55
  288. package/lib/types/api/dispose.js +4 -1
  289. package/lib/types/api/eos/index.d.ts +3 -3
  290. package/lib/types/api/eos/index.js +106 -162
  291. package/lib/types/api/eosGetPublicKey.js +4 -1
  292. package/lib/types/api/eosSignTransaction.js +4 -1
  293. package/lib/types/api/ethereum/index.d.ts +11 -7
  294. package/lib/types/api/ethereum/index.js +70 -65
  295. package/lib/types/api/ethereumGetAddress.js +4 -1
  296. package/lib/types/api/ethereumGetPublicKey.js +4 -1
  297. package/lib/types/api/ethereumSignMessage.js +4 -1
  298. package/lib/types/api/ethereumSignTransaction.js +4 -1
  299. package/lib/types/api/ethereumSignTypedData.js +4 -1
  300. package/lib/types/api/ethereumVerifyMessage.js +4 -1
  301. package/lib/types/api/evoluGetDelegatedIdentityKey.d.ts +9 -0
  302. package/lib/types/api/evoluGetDelegatedIdentityKey.js +6 -0
  303. package/lib/types/api/evoluGetNode.js +4 -1
  304. package/lib/types/api/evoluSignRegistrationRequest.d.ts +4 -0
  305. package/lib/types/api/evoluSignRegistrationRequest.js +6 -0
  306. package/lib/types/api/firmwareUpdate.d.ts +1 -1
  307. package/lib/types/api/firmwareUpdate.js +12 -12
  308. package/lib/types/api/getAccountDescriptor.js +8 -5
  309. package/lib/types/api/getAccountInfo.js +4 -1
  310. package/lib/types/api/getAddress.js +11 -11
  311. package/lib/types/api/getCoinInfo.js +4 -1
  312. package/lib/types/api/getDeviceState.js +4 -1
  313. package/lib/types/api/getFeatures.js +4 -1
  314. package/lib/types/api/getFirmwareHash.js +4 -1
  315. package/lib/types/api/getNonce.d.ts +1 -1
  316. package/lib/types/api/getNonce.js +4 -1
  317. package/lib/types/api/getOwnershipId.js +8 -5
  318. package/lib/types/api/getOwnershipProof.js +14 -9
  319. package/lib/types/api/getPublicKey.js +25 -28
  320. package/lib/types/api/getSettings.js +4 -1
  321. package/lib/types/api/index.d.ts +4 -0
  322. package/lib/types/api/index.js +4 -1
  323. package/lib/types/api/init.js +4 -1
  324. package/lib/types/api/loadDevice.js +4 -1
  325. package/lib/types/api/manifest.js +4 -1
  326. package/lib/types/api/monero/index.js +117 -114
  327. package/lib/types/api/moneroGetAddress.js +4 -1
  328. package/lib/types/api/moneroGetWatchKey.js +4 -1
  329. package/lib/types/api/moneroKeyImageSync.js +4 -1
  330. package/lib/types/api/moneroSignTransaction.js +4 -1
  331. package/lib/types/api/nem/index.d.ts +7 -7
  332. package/lib/types/api/nem/index.js +78 -112
  333. package/lib/types/api/nemGetAddress.js +7 -7
  334. package/lib/types/api/nemSignTransaction.js +4 -1
  335. package/lib/types/api/off.js +4 -1
  336. package/lib/types/api/on.js +4 -1
  337. package/lib/types/api/pushTransaction.js +10 -10
  338. package/lib/types/api/recoveryDevice.d.ts +1 -1
  339. package/lib/types/api/recoveryDevice.js +7 -7
  340. package/lib/types/api/removeAllListeners.js +4 -1
  341. package/lib/types/api/renderWebUSBButton.js +4 -1
  342. package/lib/types/api/requestLogin.d.ts +4 -24
  343. package/lib/types/api/requestLogin.js +11 -13
  344. package/lib/types/api/requestWebUSBDevice.js +4 -1
  345. package/lib/types/api/resetDevice.js +4 -1
  346. package/lib/types/api/ripple/index.js +17 -14
  347. package/lib/types/api/rippleGetAddress.js +4 -1
  348. package/lib/types/api/rippleSignTransaction.js +4 -1
  349. package/lib/types/api/setBrightness.js +4 -1
  350. package/lib/types/api/setBusy.js +4 -1
  351. package/lib/types/api/setProxy.js +4 -1
  352. package/lib/types/api/setTransports.js +4 -1
  353. package/lib/types/api/showDeviceTutorial.js +4 -1
  354. package/lib/types/api/signMessage.js +4 -1
  355. package/lib/types/api/signTransaction.js +4 -1
  356. package/lib/types/api/solana/index.js +55 -56
  357. package/lib/types/api/solanaComposeTransaction.js +4 -1
  358. package/lib/types/api/solanaGetAddress.js +4 -1
  359. package/lib/types/api/solanaGetPublicKey.js +4 -1
  360. package/lib/types/api/solanaSignTransaction.js +4 -1
  361. package/lib/types/api/stellar/index.d.ts +146 -146
  362. package/lib/types/api/stellar/index.js +151 -221
  363. package/lib/types/api/stellarGetAddress.js +4 -1
  364. package/lib/types/api/stellarSignTransaction.js +4 -1
  365. package/lib/types/api/tezos/index.js +46 -43
  366. package/lib/types/api/tezosGetAddress.js +4 -1
  367. package/lib/types/api/tezosGetPublicKey.js +4 -1
  368. package/lib/types/api/tezosSignTransaction.js +4 -1
  369. package/lib/types/api/thpGetCredentials.js +4 -1
  370. package/lib/types/api/thpRemoveCredentials.js +4 -1
  371. package/lib/types/api/uiResponse.js +4 -1
  372. package/lib/types/api/unlockPath.js +6 -3
  373. package/lib/types/api/verifyMessage.js +4 -1
  374. package/lib/types/api/wipeDevice.js +4 -1
  375. package/lib/types/coinInfo.js +62 -77
  376. package/lib/types/device.d.ts +11 -2
  377. package/lib/types/device.js +9 -4
  378. package/lib/types/fees.js +31 -37
  379. package/lib/types/firmware.js +4 -1
  380. package/lib/types/index.d.ts +1 -0
  381. package/lib/types/index.js +18 -3
  382. package/lib/types/params.js +25 -16
  383. package/lib/types/settings.js +4 -1
  384. package/lib/types/utils.js +4 -1
  385. package/lib/types/workflow.js +4 -1
  386. package/lib/utils/accountUtils.js +76 -81
  387. package/lib/utils/addressUtils.js +21 -21
  388. package/lib/utils/assetUtils.js +29 -26
  389. package/lib/utils/assets-browser.js +19 -13
  390. package/lib/utils/assets.js +10 -9
  391. package/lib/utils/assets.native.js +24 -23
  392. package/lib/utils/assetsTypes.js +4 -1
  393. package/lib/utils/debug.js +18 -13
  394. package/lib/utils/deviceFeaturesUtils.js +105 -127
  395. package/lib/utils/ethereumUtils.js +9 -6
  396. package/lib/utils/firmwareReleaseConfigUtils.js +69 -57
  397. package/lib/utils/firmwareUtils.js +45 -57
  398. package/lib/utils/formatUtils.d.ts +0 -1
  399. package/lib/utils/formatUtils.js +63 -62
  400. package/lib/utils/hdnodeUtils.d.ts +0 -1
  401. package/lib/utils/hdnodeUtils.js +51 -57
  402. package/lib/utils/interactionTimeout.js +26 -23
  403. package/lib/utils/pathUtils.js +132 -148
  404. package/lib/utils/popupPromiseManager.js +23 -14
  405. package/lib/utils/proxy-event-emitter.js +63 -60
  406. package/lib/utils/uiPromiseManager.js +55 -43
  407. package/lib/utils/urlUtils.js +20 -26
  408. package/lib/utils/versionCheck.js +10 -10
  409. package/lib/workers/workers-browser.d.ts +5 -5
  410. package/lib/workers/workers-browser.js +5 -2
  411. package/lib/workers/workers.d.ts +1 -1
  412. package/lib/workers/workers.js +49 -38
  413. package/lib/workers/workers.native.d.ts +5 -5
  414. package/lib/workers/workers.native.js +4 -1
  415. package/package.json +26 -23
@@ -1,264 +1,194 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  exports.StellarOperationMessage = exports.StellarSignedTx = exports.StellarSignTransaction = exports.StellarTransaction = exports.StellarOperation = exports.StellarClaimClaimableBalanceOperation = exports.StellarInflationOperation = exports.StellarBumpSequenceOperation = exports.StellarManageDataOperation = exports.StellarAccountMergeOperation = exports.StellarAllowTrustOperation = exports.StellarChangeTrustOperation = exports.StellarSetOptionsOperation = exports.StellarManageBuyOfferOperation = exports.StellarManageSellOfferOperation = exports.StellarPassiveSellOfferOperation = exports.StellarPathPaymentStrictSendOperation = exports.StellarPathPaymentStrictReceiveOperation = exports.StellarPaymentOperation = exports.StellarCreateAccountOperation = exports.StellarAsset = void 0;
4
7
  const schema_utils_1 = require("@trezor/schema-utils");
5
8
  const constants_1 = require("../../../constants");
6
9
  const params_1 = require("../../params");
7
10
  exports.StellarAsset = schema_utils_1.Type.Object({
8
- type: schema_utils_1.Type.Union([constants_1.PROTO.EnumStellarAssetType, schema_utils_1.Type.KeyOfEnum(constants_1.PROTO.StellarAssetType)]),
9
- code: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
10
- issuer: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
11
+ type: schema_utils_1.Type.Union([constants_1.PROTO.EnumStellarAssetType, schema_utils_1.Type.KeyOfEnum(constants_1.PROTO.StellarAssetType)]),
12
+ code: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
13
+ issuer: schema_utils_1.Type.Optional(schema_utils_1.Type.String())
11
14
  });
12
15
  exports.StellarCreateAccountOperation = schema_utils_1.Type.Object({
13
- type: schema_utils_1.Type.Literal('createAccount'),
14
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
15
- destination: schema_utils_1.Type.String(),
16
- startingBalance: schema_utils_1.Type.String(),
16
+ type: schema_utils_1.Type.Literal('createAccount'),
17
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
18
+ destination: schema_utils_1.Type.String(),
19
+ startingBalance: schema_utils_1.Type.String()
17
20
  });
18
21
  exports.StellarPaymentOperation = schema_utils_1.Type.Object({
19
- type: schema_utils_1.Type.Literal('payment'),
20
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
21
- destination: schema_utils_1.Type.String(),
22
- asset: exports.StellarAsset,
23
- amount: schema_utils_1.Type.String(),
22
+ type: schema_utils_1.Type.Literal('payment'),
23
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
24
+ destination: schema_utils_1.Type.String(),
25
+ asset: exports.StellarAsset,
26
+ amount: schema_utils_1.Type.String()
24
27
  });
25
28
  exports.StellarPathPaymentStrictReceiveOperation = schema_utils_1.Type.Object({
26
- type: schema_utils_1.Type.Literal('pathPaymentStrictReceive'),
27
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
28
- sendAsset: exports.StellarAsset,
29
- sendMax: schema_utils_1.Type.Uint(),
30
- destination: schema_utils_1.Type.String(),
31
- destAsset: exports.StellarAsset,
32
- destAmount: schema_utils_1.Type.Uint(),
33
- path: schema_utils_1.Type.Optional(schema_utils_1.Type.Array(exports.StellarAsset)),
29
+ type: schema_utils_1.Type.Literal('pathPaymentStrictReceive'),
30
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
31
+ sendAsset: exports.StellarAsset,
32
+ sendMax: schema_utils_1.Type.Uint(),
33
+ destination: schema_utils_1.Type.String(),
34
+ destAsset: exports.StellarAsset,
35
+ destAmount: schema_utils_1.Type.Uint(),
36
+ path: schema_utils_1.Type.Optional(schema_utils_1.Type.Array(exports.StellarAsset))
34
37
  });
35
38
  exports.StellarPathPaymentStrictSendOperation = schema_utils_1.Type.Object({
36
- type: schema_utils_1.Type.Literal('pathPaymentStrictSend'),
37
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
38
- sendAsset: exports.StellarAsset,
39
- sendAmount: schema_utils_1.Type.Uint(),
40
- destination: schema_utils_1.Type.String(),
41
- destAsset: exports.StellarAsset,
42
- destMin: schema_utils_1.Type.Uint(),
43
- path: schema_utils_1.Type.Optional(schema_utils_1.Type.Array(exports.StellarAsset)),
39
+ type: schema_utils_1.Type.Literal('pathPaymentStrictSend'),
40
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
41
+ sendAsset: exports.StellarAsset,
42
+ sendAmount: schema_utils_1.Type.Uint(),
43
+ destination: schema_utils_1.Type.String(),
44
+ destAsset: exports.StellarAsset,
45
+ destMin: schema_utils_1.Type.Uint(),
46
+ path: schema_utils_1.Type.Optional(schema_utils_1.Type.Array(exports.StellarAsset))
44
47
  });
45
48
  exports.StellarPassiveSellOfferOperation = schema_utils_1.Type.Object({
46
- type: schema_utils_1.Type.Literal('createPassiveSellOffer'),
47
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
48
- buying: exports.StellarAsset,
49
- selling: exports.StellarAsset,
50
- amount: schema_utils_1.Type.Uint(),
51
- price: schema_utils_1.Type.Object({
52
- n: schema_utils_1.Type.Number(),
53
- d: schema_utils_1.Type.Number(),
54
- }),
49
+ type: schema_utils_1.Type.Literal('createPassiveSellOffer'),
50
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
51
+ buying: exports.StellarAsset,
52
+ selling: exports.StellarAsset,
53
+ amount: schema_utils_1.Type.Uint(),
54
+ price: schema_utils_1.Type.Object({
55
+ n: schema_utils_1.Type.Number(),
56
+ d: schema_utils_1.Type.Number()
57
+ })
55
58
  });
56
59
  exports.StellarManageSellOfferOperation = schema_utils_1.Type.Object({
57
- type: schema_utils_1.Type.Literal('manageSellOffer'),
58
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
59
- buying: exports.StellarAsset,
60
- selling: exports.StellarAsset,
61
- amount: schema_utils_1.Type.Uint(),
62
- offerId: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
63
- price: schema_utils_1.Type.Object({
64
- n: schema_utils_1.Type.Number(),
65
- d: schema_utils_1.Type.Number(),
66
- }),
60
+ type: schema_utils_1.Type.Literal('manageSellOffer'),
61
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
62
+ buying: exports.StellarAsset,
63
+ selling: exports.StellarAsset,
64
+ amount: schema_utils_1.Type.Uint(),
65
+ offerId: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
66
+ price: schema_utils_1.Type.Object({
67
+ n: schema_utils_1.Type.Number(),
68
+ d: schema_utils_1.Type.Number()
69
+ })
67
70
  });
68
71
  exports.StellarManageBuyOfferOperation = schema_utils_1.Type.Object({
69
- type: schema_utils_1.Type.Literal('manageBuyOffer'),
70
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
71
- buying: exports.StellarAsset,
72
- selling: exports.StellarAsset,
73
- amount: schema_utils_1.Type.Uint(),
74
- offerId: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
75
- price: schema_utils_1.Type.Object({
76
- n: schema_utils_1.Type.Number(),
77
- d: schema_utils_1.Type.Number(),
78
- }),
72
+ type: schema_utils_1.Type.Literal('manageBuyOffer'),
73
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
74
+ buying: exports.StellarAsset,
75
+ selling: exports.StellarAsset,
76
+ amount: schema_utils_1.Type.Uint(),
77
+ offerId: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
78
+ price: schema_utils_1.Type.Object({
79
+ n: schema_utils_1.Type.Number(),
80
+ d: schema_utils_1.Type.Number()
81
+ })
79
82
  });
80
83
  exports.StellarSetOptionsOperation = schema_utils_1.Type.Object({
81
- type: schema_utils_1.Type.Literal('setOptions'),
82
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
83
- signer: schema_utils_1.Type.Optional(schema_utils_1.Type.Object({
84
- type: constants_1.PROTO.EnumStellarSignerType,
85
- key: schema_utils_1.Type.Union([schema_utils_1.Type.String(), schema_utils_1.Type.Buffer()]),
86
- weight: schema_utils_1.Type.Optional(schema_utils_1.Type.Number()),
87
- })),
88
- inflationDest: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
89
- clearFlags: schema_utils_1.Type.Optional(schema_utils_1.Type.Number()),
90
- setFlags: schema_utils_1.Type.Optional(schema_utils_1.Type.Number()),
91
- masterWeight: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
92
- lowThreshold: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
93
- medThreshold: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
94
- highThreshold: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
95
- homeDomain: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
84
+ type: schema_utils_1.Type.Literal('setOptions'),
85
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
86
+ signer: schema_utils_1.Type.Optional(schema_utils_1.Type.Object({
87
+ type: constants_1.PROTO.EnumStellarSignerType,
88
+ key: schema_utils_1.Type.Union([schema_utils_1.Type.String(), schema_utils_1.Type.Buffer()]),
89
+ weight: schema_utils_1.Type.Optional(schema_utils_1.Type.Number())
90
+ })),
91
+ inflationDest: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
92
+ clearFlags: schema_utils_1.Type.Optional(schema_utils_1.Type.Number()),
93
+ setFlags: schema_utils_1.Type.Optional(schema_utils_1.Type.Number()),
94
+ masterWeight: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
95
+ lowThreshold: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
96
+ medThreshold: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
97
+ highThreshold: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
98
+ homeDomain: schema_utils_1.Type.Optional(schema_utils_1.Type.String())
96
99
  });
97
100
  exports.StellarChangeTrustOperation = schema_utils_1.Type.Object({
98
- type: schema_utils_1.Type.Literal('changeTrust'),
99
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
100
- line: exports.StellarAsset,
101
- limit: schema_utils_1.Type.String(),
101
+ type: schema_utils_1.Type.Literal('changeTrust'),
102
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
103
+ line: exports.StellarAsset,
104
+ limit: schema_utils_1.Type.String()
102
105
  });
103
106
  exports.StellarAllowTrustOperation = schema_utils_1.Type.Object({
104
- type: schema_utils_1.Type.Literal('allowTrust'),
105
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
106
- trustor: schema_utils_1.Type.String(),
107
- assetCode: schema_utils_1.Type.String(),
108
- assetType: constants_1.PROTO.EnumStellarAssetType,
109
- authorize: schema_utils_1.Type.Optional(schema_utils_1.Type.Union([schema_utils_1.Type.Boolean(), schema_utils_1.Type.Undefined()])),
107
+ type: schema_utils_1.Type.Literal('allowTrust'),
108
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
109
+ trustor: schema_utils_1.Type.String(),
110
+ assetCode: schema_utils_1.Type.String(),
111
+ assetType: constants_1.PROTO.EnumStellarAssetType,
112
+ authorize: schema_utils_1.Type.Optional(schema_utils_1.Type.Union([schema_utils_1.Type.Boolean(), schema_utils_1.Type.Undefined()]))
110
113
  });
111
114
  exports.StellarAccountMergeOperation = schema_utils_1.Type.Object({
112
- type: schema_utils_1.Type.Literal('accountMerge'),
113
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
114
- destination: schema_utils_1.Type.String(),
115
+ type: schema_utils_1.Type.Literal('accountMerge'),
116
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
117
+ destination: schema_utils_1.Type.String()
115
118
  });
116
119
  exports.StellarManageDataOperation = schema_utils_1.Type.Object({
117
- type: schema_utils_1.Type.Literal('manageData'),
118
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
119
- name: schema_utils_1.Type.String(),
120
- value: schema_utils_1.Type.Optional(schema_utils_1.Type.Union([schema_utils_1.Type.String(), schema_utils_1.Type.Buffer()])),
120
+ type: schema_utils_1.Type.Literal('manageData'),
121
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
122
+ name: schema_utils_1.Type.String(),
123
+ value: schema_utils_1.Type.Optional(schema_utils_1.Type.Union([schema_utils_1.Type.String(), schema_utils_1.Type.Buffer()]))
121
124
  });
122
125
  exports.StellarBumpSequenceOperation = schema_utils_1.Type.Object({
123
- type: schema_utils_1.Type.Literal('bumpSequence'),
124
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
125
- bumpTo: schema_utils_1.Type.Uint(),
126
+ type: schema_utils_1.Type.Literal('bumpSequence'),
127
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
128
+ bumpTo: schema_utils_1.Type.Uint()
126
129
  });
127
130
  exports.StellarInflationOperation = schema_utils_1.Type.Object({
128
- type: schema_utils_1.Type.Literal('inflation'),
129
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
131
+ type: schema_utils_1.Type.Literal('inflation'),
132
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String())
130
133
  });
131
134
  exports.StellarClaimClaimableBalanceOperation = schema_utils_1.Type.Object({
132
- type: schema_utils_1.Type.Literal('claimClaimableBalance'),
133
- source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
134
- balanceId: schema_utils_1.Type.String(),
135
+ type: schema_utils_1.Type.Literal('claimClaimableBalance'),
136
+ source: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
137
+ balanceId: schema_utils_1.Type.String()
135
138
  });
136
- exports.StellarOperation = schema_utils_1.Type.Union([
137
- exports.StellarCreateAccountOperation,
138
- exports.StellarPaymentOperation,
139
- exports.StellarPathPaymentStrictReceiveOperation,
140
- exports.StellarPathPaymentStrictSendOperation,
141
- exports.StellarPassiveSellOfferOperation,
142
- exports.StellarManageSellOfferOperation,
143
- exports.StellarManageBuyOfferOperation,
144
- exports.StellarSetOptionsOperation,
145
- exports.StellarChangeTrustOperation,
146
- exports.StellarAllowTrustOperation,
147
- exports.StellarAccountMergeOperation,
148
- exports.StellarInflationOperation,
149
- exports.StellarManageDataOperation,
150
- exports.StellarBumpSequenceOperation,
151
- exports.StellarClaimClaimableBalanceOperation,
152
- ]);
139
+ exports.StellarOperation = schema_utils_1.Type.Union([exports.StellarCreateAccountOperation, exports.StellarPaymentOperation, exports.StellarPathPaymentStrictReceiveOperation, exports.StellarPathPaymentStrictSendOperation, exports.StellarPassiveSellOfferOperation, exports.StellarManageSellOfferOperation, exports.StellarManageBuyOfferOperation, exports.StellarSetOptionsOperation, exports.StellarChangeTrustOperation, exports.StellarAllowTrustOperation, exports.StellarAccountMergeOperation, exports.StellarInflationOperation, exports.StellarManageDataOperation, exports.StellarBumpSequenceOperation, exports.StellarClaimClaimableBalanceOperation]);
153
140
  exports.StellarTransaction = schema_utils_1.Type.Object({
154
- source: schema_utils_1.Type.String(),
155
- fee: schema_utils_1.Type.Number(),
156
- sequence: schema_utils_1.Type.Uint(),
157
- timebounds: schema_utils_1.Type.Optional(schema_utils_1.Type.Object({
158
- minTime: schema_utils_1.Type.Number(),
159
- maxTime: schema_utils_1.Type.Number(),
160
- })),
161
- memo: schema_utils_1.Type.Optional(schema_utils_1.Type.Object({
162
- type: constants_1.PROTO.EnumStellarMemoType,
163
- id: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
164
- text: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
165
- hash: schema_utils_1.Type.Optional(schema_utils_1.Type.Union([schema_utils_1.Type.String(), schema_utils_1.Type.Buffer()])),
166
- })),
167
- operations: schema_utils_1.Type.Array(exports.StellarOperation),
141
+ source: schema_utils_1.Type.String(),
142
+ fee: schema_utils_1.Type.Number(),
143
+ sequence: schema_utils_1.Type.Uint(),
144
+ timebounds: schema_utils_1.Type.Optional(schema_utils_1.Type.Object({
145
+ minTime: schema_utils_1.Type.Number(),
146
+ maxTime: schema_utils_1.Type.Number()
147
+ })),
148
+ memo: schema_utils_1.Type.Optional(schema_utils_1.Type.Object({
149
+ type: constants_1.PROTO.EnumStellarMemoType,
150
+ id: schema_utils_1.Type.Optional(schema_utils_1.Type.Uint()),
151
+ text: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
152
+ hash: schema_utils_1.Type.Optional(schema_utils_1.Type.Union([schema_utils_1.Type.String(), schema_utils_1.Type.Buffer()]))
153
+ })),
154
+ operations: schema_utils_1.Type.Array(exports.StellarOperation)
168
155
  });
169
156
  exports.StellarSignTransaction = schema_utils_1.Type.Object({
170
- path: params_1.DerivationPath,
171
- networkPassphrase: schema_utils_1.Type.String(),
172
- transaction: exports.StellarTransaction,
157
+ path: params_1.DerivationPath,
158
+ networkPassphrase: schema_utils_1.Type.String(),
159
+ transaction: exports.StellarTransaction
173
160
  });
174
161
  exports.StellarSignedTx = schema_utils_1.Type.Object({
175
- publicKey: schema_utils_1.Type.String(),
176
- signature: schema_utils_1.Type.String(),
177
- });
178
- exports.StellarOperationMessage = schema_utils_1.Type.Union([
179
- schema_utils_1.Type.Intersect([
180
- schema_utils_1.Type.Object({
181
- type: schema_utils_1.Type.Literal('StellarCreateAccountOp'),
182
- }),
183
- constants_1.PROTO.StellarCreateAccountOp,
184
- ]),
185
- schema_utils_1.Type.Intersect([
186
- schema_utils_1.Type.Object({
187
- type: schema_utils_1.Type.Literal('StellarPaymentOp'),
188
- }),
189
- constants_1.PROTO.StellarPaymentOp,
190
- ]),
191
- schema_utils_1.Type.Intersect([
192
- schema_utils_1.Type.Object({
193
- type: schema_utils_1.Type.Literal('StellarPathPaymentStrictReceiveOp'),
194
- }),
195
- constants_1.PROTO.StellarPathPaymentStrictReceiveOp,
196
- ]),
197
- schema_utils_1.Type.Intersect([
198
- schema_utils_1.Type.Object({
199
- type: schema_utils_1.Type.Literal('StellarPathPaymentStrictSendOp'),
200
- }),
201
- constants_1.PROTO.StellarPathPaymentStrictSendOp,
202
- ]),
203
- schema_utils_1.Type.Intersect([
204
- schema_utils_1.Type.Object({
205
- type: schema_utils_1.Type.Literal('StellarManageSellOfferOp'),
206
- }),
207
- constants_1.PROTO.StellarManageSellOfferOp,
208
- ]),
209
- schema_utils_1.Type.Intersect([
210
- schema_utils_1.Type.Object({
211
- type: schema_utils_1.Type.Literal('StellarManageBuyOfferOp'),
212
- }),
213
- constants_1.PROTO.StellarManageBuyOfferOp,
214
- ]),
215
- schema_utils_1.Type.Intersect([
216
- schema_utils_1.Type.Object({
217
- type: schema_utils_1.Type.Literal('StellarCreatePassiveSellOfferOp'),
218
- }),
219
- constants_1.PROTO.StellarCreatePassiveSellOfferOp,
220
- ]),
221
- schema_utils_1.Type.Intersect([
222
- schema_utils_1.Type.Object({
223
- type: schema_utils_1.Type.Literal('StellarSetOptionsOp'),
224
- }),
225
- constants_1.PROTO.StellarSetOptionsOp,
226
- ]),
227
- schema_utils_1.Type.Intersect([
228
- schema_utils_1.Type.Object({
229
- type: schema_utils_1.Type.Literal('StellarChangeTrustOp'),
230
- }),
231
- constants_1.PROTO.StellarChangeTrustOp,
232
- ]),
233
- schema_utils_1.Type.Intersect([
234
- schema_utils_1.Type.Object({
235
- type: schema_utils_1.Type.Literal('StellarAllowTrustOp'),
236
- }),
237
- constants_1.PROTO.StellarAllowTrustOp,
238
- ]),
239
- schema_utils_1.Type.Intersect([
240
- schema_utils_1.Type.Object({
241
- type: schema_utils_1.Type.Literal('StellarAccountMergeOp'),
242
- }),
243
- constants_1.PROTO.StellarAccountMergeOp,
244
- ]),
245
- schema_utils_1.Type.Intersect([
246
- schema_utils_1.Type.Object({
247
- type: schema_utils_1.Type.Literal('StellarManageDataOp'),
248
- }),
249
- constants_1.PROTO.StellarManageDataOp,
250
- ]),
251
- schema_utils_1.Type.Intersect([
252
- schema_utils_1.Type.Object({
253
- type: schema_utils_1.Type.Literal('StellarBumpSequenceOp'),
254
- }),
255
- constants_1.PROTO.StellarBumpSequenceOp,
256
- ]),
257
- schema_utils_1.Type.Intersect([
258
- schema_utils_1.Type.Object({
259
- type: schema_utils_1.Type.Literal('StellarClaimClaimableBalanceOp'),
260
- }),
261
- constants_1.PROTO.StellarClaimClaimableBalanceOp,
262
- ]),
263
- ]);
162
+ publicKey: schema_utils_1.Type.String(),
163
+ signature: schema_utils_1.Type.String()
164
+ });
165
+ exports.StellarOperationMessage = schema_utils_1.Type.Union([schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
166
+ type: schema_utils_1.Type.Literal('StellarCreateAccountOp')
167
+ }), constants_1.PROTO.StellarCreateAccountOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
168
+ type: schema_utils_1.Type.Literal('StellarPaymentOp')
169
+ }), constants_1.PROTO.StellarPaymentOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
170
+ type: schema_utils_1.Type.Literal('StellarPathPaymentStrictReceiveOp')
171
+ }), constants_1.PROTO.StellarPathPaymentStrictReceiveOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
172
+ type: schema_utils_1.Type.Literal('StellarPathPaymentStrictSendOp')
173
+ }), constants_1.PROTO.StellarPathPaymentStrictSendOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
174
+ type: schema_utils_1.Type.Literal('StellarManageSellOfferOp')
175
+ }), constants_1.PROTO.StellarManageSellOfferOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
176
+ type: schema_utils_1.Type.Literal('StellarManageBuyOfferOp')
177
+ }), constants_1.PROTO.StellarManageBuyOfferOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
178
+ type: schema_utils_1.Type.Literal('StellarCreatePassiveSellOfferOp')
179
+ }), constants_1.PROTO.StellarCreatePassiveSellOfferOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
180
+ type: schema_utils_1.Type.Literal('StellarSetOptionsOp')
181
+ }), constants_1.PROTO.StellarSetOptionsOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
182
+ type: schema_utils_1.Type.Literal('StellarChangeTrustOp')
183
+ }), constants_1.PROTO.StellarChangeTrustOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
184
+ type: schema_utils_1.Type.Literal('StellarAllowTrustOp')
185
+ }), constants_1.PROTO.StellarAllowTrustOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
186
+ type: schema_utils_1.Type.Literal('StellarAccountMergeOp')
187
+ }), constants_1.PROTO.StellarAccountMergeOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
188
+ type: schema_utils_1.Type.Literal('StellarManageDataOp')
189
+ }), constants_1.PROTO.StellarManageDataOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
190
+ type: schema_utils_1.Type.Literal('StellarBumpSequenceOp')
191
+ }), constants_1.PROTO.StellarBumpSequenceOp]), schema_utils_1.Type.Intersect([schema_utils_1.Type.Object({
192
+ type: schema_utils_1.Type.Literal('StellarClaimClaimableBalanceOp')
193
+ }), constants_1.PROTO.StellarClaimClaimableBalanceOp])]);
264
194
  //# sourceMappingURL=index.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=stellarGetAddress.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=stellarSignTransaction.js.map
@@ -1,64 +1,67 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  exports.TezosSignTransaction = exports.TezosOperation = exports.TezosDelegationOperation = exports.TezosOriginationOperation = exports.TezosTransactionOperation = exports.TezosParametersManager = exports.TezosManagerTransfer = exports.TezosRevealOperation = void 0;
4
7
  const schema_utils_1 = require("@trezor/schema-utils");
5
8
  const params_1 = require("../../params");
6
9
  exports.TezosRevealOperation = schema_utils_1.Type.Object({
7
- source: schema_utils_1.Type.String(),
8
- fee: schema_utils_1.Type.Number(),
9
- counter: schema_utils_1.Type.Number(),
10
- gas_limit: schema_utils_1.Type.Number(),
11
- storage_limit: schema_utils_1.Type.Number(),
12
- public_key: schema_utils_1.Type.String(),
10
+ source: schema_utils_1.Type.String(),
11
+ fee: schema_utils_1.Type.Number(),
12
+ counter: schema_utils_1.Type.Number(),
13
+ gas_limit: schema_utils_1.Type.Number(),
14
+ storage_limit: schema_utils_1.Type.Number(),
15
+ public_key: schema_utils_1.Type.String()
13
16
  });
14
17
  exports.TezosManagerTransfer = schema_utils_1.Type.Object({
15
- destination: schema_utils_1.Type.String(),
16
- amount: schema_utils_1.Type.Number(),
18
+ destination: schema_utils_1.Type.String(),
19
+ amount: schema_utils_1.Type.Number()
17
20
  });
18
21
  exports.TezosParametersManager = schema_utils_1.Type.Object({
19
- set_delegate: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
20
- cancel_delegate: schema_utils_1.Type.Optional(schema_utils_1.Type.Boolean()),
21
- transfer: schema_utils_1.Type.Optional(exports.TezosManagerTransfer),
22
+ set_delegate: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
23
+ cancel_delegate: schema_utils_1.Type.Optional(schema_utils_1.Type.Boolean()),
24
+ transfer: schema_utils_1.Type.Optional(exports.TezosManagerTransfer)
22
25
  });
23
26
  exports.TezosTransactionOperation = schema_utils_1.Type.Object({
24
- source: schema_utils_1.Type.String(),
25
- destination: schema_utils_1.Type.String(),
26
- amount: schema_utils_1.Type.Number(),
27
- counter: schema_utils_1.Type.Number(),
28
- fee: schema_utils_1.Type.Number(),
29
- gas_limit: schema_utils_1.Type.Number(),
30
- storage_limit: schema_utils_1.Type.Number(),
31
- parameters: schema_utils_1.Type.Optional(schema_utils_1.Type.Array(schema_utils_1.Type.Number())),
32
- parameters_manager: schema_utils_1.Type.Optional(exports.TezosParametersManager),
27
+ source: schema_utils_1.Type.String(),
28
+ destination: schema_utils_1.Type.String(),
29
+ amount: schema_utils_1.Type.Number(),
30
+ counter: schema_utils_1.Type.Number(),
31
+ fee: schema_utils_1.Type.Number(),
32
+ gas_limit: schema_utils_1.Type.Number(),
33
+ storage_limit: schema_utils_1.Type.Number(),
34
+ parameters: schema_utils_1.Type.Optional(schema_utils_1.Type.Array(schema_utils_1.Type.Number())),
35
+ parameters_manager: schema_utils_1.Type.Optional(exports.TezosParametersManager)
33
36
  });
34
37
  exports.TezosOriginationOperation = schema_utils_1.Type.Object({
35
- source: schema_utils_1.Type.String(),
36
- balance: schema_utils_1.Type.Number(),
37
- delegate: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
38
- script: params_1.DerivationPath,
39
- fee: schema_utils_1.Type.Number(),
40
- counter: schema_utils_1.Type.Number(),
41
- gas_limit: schema_utils_1.Type.Number(),
42
- storage_limit: schema_utils_1.Type.Number(),
38
+ source: schema_utils_1.Type.String(),
39
+ balance: schema_utils_1.Type.Number(),
40
+ delegate: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
41
+ script: params_1.DerivationPath,
42
+ fee: schema_utils_1.Type.Number(),
43
+ counter: schema_utils_1.Type.Number(),
44
+ gas_limit: schema_utils_1.Type.Number(),
45
+ storage_limit: schema_utils_1.Type.Number()
43
46
  });
44
47
  exports.TezosDelegationOperation = schema_utils_1.Type.Object({
45
- source: schema_utils_1.Type.String(),
46
- delegate: schema_utils_1.Type.String(),
47
- fee: schema_utils_1.Type.Number(),
48
- counter: schema_utils_1.Type.Number(),
49
- gas_limit: schema_utils_1.Type.Number(),
50
- storage_limit: schema_utils_1.Type.Number(),
48
+ source: schema_utils_1.Type.String(),
49
+ delegate: schema_utils_1.Type.String(),
50
+ fee: schema_utils_1.Type.Number(),
51
+ counter: schema_utils_1.Type.Number(),
52
+ gas_limit: schema_utils_1.Type.Number(),
53
+ storage_limit: schema_utils_1.Type.Number()
51
54
  });
52
55
  exports.TezosOperation = schema_utils_1.Type.Object({
53
- reveal: schema_utils_1.Type.Optional(exports.TezosRevealOperation),
54
- transaction: schema_utils_1.Type.Optional(exports.TezosTransactionOperation),
55
- origination: schema_utils_1.Type.Optional(exports.TezosOriginationOperation),
56
- delegation: schema_utils_1.Type.Optional(exports.TezosDelegationOperation),
56
+ reveal: schema_utils_1.Type.Optional(exports.TezosRevealOperation),
57
+ transaction: schema_utils_1.Type.Optional(exports.TezosTransactionOperation),
58
+ origination: schema_utils_1.Type.Optional(exports.TezosOriginationOperation),
59
+ delegation: schema_utils_1.Type.Optional(exports.TezosDelegationOperation)
57
60
  });
58
61
  exports.TezosSignTransaction = schema_utils_1.Type.Object({
59
- path: params_1.DerivationPath,
60
- branch: schema_utils_1.Type.String(),
61
- operation: exports.TezosOperation,
62
- chunkify: schema_utils_1.Type.Optional(schema_utils_1.Type.Boolean()),
62
+ path: params_1.DerivationPath,
63
+ branch: schema_utils_1.Type.String(),
64
+ operation: exports.TezosOperation,
65
+ chunkify: schema_utils_1.Type.Optional(schema_utils_1.Type.Boolean())
63
66
  });
64
67
  //# sourceMappingURL=index.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=tezosGetAddress.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=tezosGetPublicKey.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=tezosSignTransaction.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=thpGetCredentials.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=thpRemoveCredentials.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=uiResponse.js.map
@@ -1,10 +1,13 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  exports.UnlockPathParams = void 0;
4
7
  const schema_utils_1 = require("@trezor/schema-utils");
5
8
  const params_1 = require("../params");
6
9
  exports.UnlockPathParams = schema_utils_1.Type.Object({
7
- path: params_1.DerivationPath,
8
- mac: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
10
+ path: params_1.DerivationPath,
11
+ mac: schema_utils_1.Type.Optional(schema_utils_1.Type.String())
9
12
  });
10
13
  //# sourceMappingURL=unlockPath.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=verifyMessage.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
3
6
  //# sourceMappingURL=wipeDevice.js.map