@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.
- package/.eslintrc +6 -0
- package/README.md +32 -0
- package/__tests__/benfen.test.ts +68 -0
- package/__tests__/checkBootloaderReleast.test.ts +115 -0
- package/__tests__/evmSignTransaction.test.ts +419 -0
- package/jest.config.js +6 -0
- package/package.json +48 -0
- package/src/api/BaseMethod.ts +275 -0
- package/src/api/CheckAllFirmwareRelease.ts +73 -0
- package/src/api/CheckBLEFirmwareRelease.ts +23 -0
- package/src/api/CheckBootloaderRelease.ts +32 -0
- package/src/api/CheckBridgeRelease.ts +28 -0
- package/src/api/CheckBridgeStatus.ts +32 -0
- package/src/api/CheckFirmwareRelease.ts +31 -0
- package/src/api/CheckFirmwareTypeAvailable.tsx +30 -0
- package/src/api/CipherKeyValue.ts +68 -0
- package/src/api/FirmwareUpdate.ts +219 -0
- package/src/api/FirmwareUpdateV2.ts +408 -0
- package/src/api/FirmwareUpdateV3.ts +560 -0
- package/src/api/GetFeatures.ts +23 -0
- package/src/api/GetLogs.ts +40 -0
- package/src/api/GetOnetokenFeatures.ts +25 -0
- package/src/api/GetPassphraseState.ts +28 -0
- package/src/api/PromptWebDeviceAccess.ts +77 -0
- package/src/api/SearchDevices.ts +50 -0
- package/src/api/alephium/AlephiumGetAddress.ts +84 -0
- package/src/api/alephium/AlephiumSignMessage.ts +51 -0
- package/src/api/alephium/AlephiumSignTransaction.ts +135 -0
- package/src/api/algo/AlgoGetAddress.ts +73 -0
- package/src/api/algo/AlgoSignTransaction.ts +52 -0
- package/src/api/allnetwork/AllNetworkGetAddress.ts +88 -0
- package/src/api/allnetwork/AllNetworkGetAddressBase.ts +529 -0
- package/src/api/allnetwork/AllNetworkGetAddressByLoop.ts +162 -0
- package/src/api/aptos/AptosGetAddress.ts +129 -0
- package/src/api/aptos/AptosGetPublicKey.ts +64 -0
- package/src/api/aptos/AptosSignInMessage.ts +55 -0
- package/src/api/aptos/AptosSignMessage.ts +79 -0
- package/src/api/aptos/AptosSignTransaction.ts +72 -0
- package/src/api/benfen/BenfenGetAddress.ts +122 -0
- package/src/api/benfen/BenfenGetPublicKey.ts +68 -0
- package/src/api/benfen/BenfenSignMessage.ts +50 -0
- package/src/api/benfen/BenfenSignTransaction.ts +105 -0
- package/src/api/benfen/normalize.ts +51 -0
- package/src/api/btc/BTCGetAddress.ts +91 -0
- package/src/api/btc/BTCGetPublicKey.ts +174 -0
- package/src/api/btc/BTCSignMessage.ts +73 -0
- package/src/api/btc/BTCSignPsbt.ts +65 -0
- package/src/api/btc/BTCSignTransaction.ts +148 -0
- package/src/api/btc/BTCVerifyMessage.ts +46 -0
- package/src/api/btc/helpers/btcParamsUtils.ts +64 -0
- package/src/api/btc/helpers/signtx.ts +251 -0
- package/src/api/btc/helpers/signtxLegacy.ts +227 -0
- package/src/api/btc/helpers/versionLimit.ts +25 -0
- package/src/api/btc/helpers/xpubUtils.ts +132 -0
- package/src/api/cardano/CardanoGetAddress.ts +139 -0
- package/src/api/cardano/CardanoGetPublicKey.ts +72 -0
- package/src/api/cardano/CardanoSignMessage.ts +73 -0
- package/src/api/cardano/CardanoSignTransaction.ts +404 -0
- package/src/api/cardano/helper/addressParameters.ts +120 -0
- package/src/api/cardano/helper/auxiliaryData.ts +133 -0
- package/src/api/cardano/helper/cardanoInputs.ts +55 -0
- package/src/api/cardano/helper/cardanoOutputs.ts +89 -0
- package/src/api/cardano/helper/certificate.ts +246 -0
- package/src/api/cardano/helper/token.ts +44 -0
- package/src/api/cardano/helper/utils.ts +17 -0
- package/src/api/cardano/helper/witnesses.ts +62 -0
- package/src/api/conflux/ConfluxGetAddress.ts +78 -0
- package/src/api/conflux/ConfluxSignMessage.ts +49 -0
- package/src/api/conflux/ConfluxSignMessageCIP23.ts +49 -0
- package/src/api/conflux/ConfluxSignTransaction.ts +135 -0
- package/src/api/cosmos/CosmosGetAddress.ts +80 -0
- package/src/api/cosmos/CosmosGetPublicKey.ts +77 -0
- package/src/api/cosmos/CosmosSignTransaction.ts +68 -0
- package/src/api/device/DeviceBackup.ts +15 -0
- package/src/api/device/DeviceCancel.ts +15 -0
- package/src/api/device/DeviceChangePin.ts +25 -0
- package/src/api/device/DeviceFlags.ts +26 -0
- package/src/api/device/DeviceFullyUploadResource.ts +80 -0
- package/src/api/device/DeviceLock.ts +15 -0
- package/src/api/device/DeviceRebootToBoardloader.ts +30 -0
- package/src/api/device/DeviceRebootToBootloader.ts +28 -0
- package/src/api/device/DeviceRecovery.ts +44 -0
- package/src/api/device/DeviceReset.ts +46 -0
- package/src/api/device/DeviceSettings.ts +96 -0
- package/src/api/device/DeviceSupportFeatures.ts +29 -0
- package/src/api/device/DeviceUnlock.ts +13 -0
- package/src/api/device/DeviceUpdateBootloader.ts +111 -0
- package/src/api/device/DeviceUpdateReboot.ts +17 -0
- package/src/api/device/DeviceUploadResource.ts +204 -0
- package/src/api/device/DeviceVerify.ts +65 -0
- package/src/api/device/DeviceWipe.ts +15 -0
- package/src/api/dynex/DnxGetAddress.ts +75 -0
- package/src/api/dynex/DnxSignTransaction.ts +126 -0
- package/src/api/evm/EVMGetAddress.ts +88 -0
- package/src/api/evm/EVMGetPublicKey.ts +116 -0
- package/src/api/evm/EVMSignMessage.ts +49 -0
- package/src/api/evm/EVMSignMessageEIP712.ts +56 -0
- package/src/api/evm/EVMSignTransaction.ts +141 -0
- package/src/api/evm/EVMSignTypedData.ts +477 -0
- package/src/api/evm/EVMVerifyMessage.ts +46 -0
- package/src/api/evm/latest/getAddress.ts +13 -0
- package/src/api/evm/latest/getPublicKey.ts +17 -0
- package/src/api/evm/latest/signMessage.ts +19 -0
- package/src/api/evm/latest/signTransaction.ts +303 -0
- package/src/api/evm/latest/signTypedData.ts +34 -0
- package/src/api/evm/latest/signTypedHash.ts +46 -0
- package/src/api/evm/latest/verifyMessage.ts +15 -0
- package/src/api/evm/legacyV1/getAddress.ts +16 -0
- package/src/api/evm/legacyV1/getPublicKey.ts +20 -0
- package/src/api/evm/legacyV1/signMessage.ts +22 -0
- package/src/api/evm/legacyV1/signTransaction.ts +37 -0
- package/src/api/evm/legacyV1/signTypedData.ts +37 -0
- package/src/api/evm/legacyV1/signTypedHash.ts +50 -0
- package/src/api/evm/legacyV1/verifyMessage.ts +19 -0
- package/src/api/filecoin/FilecoinGetAddress.ts +80 -0
- package/src/api/filecoin/FilecoinSignTransaction.ts +57 -0
- package/src/api/firmware/FirmwareUpdateBaseMethod.ts +476 -0
- package/src/api/firmware/bootloaderHelper.ts +46 -0
- package/src/api/firmware/getBinary.ts +99 -0
- package/src/api/firmware/releaseHelper.ts +78 -0
- package/src/api/firmware/updateBootloader.ts +82 -0
- package/src/api/firmware/uploadFirmware.ts +541 -0
- package/src/api/helpers/batchGetPublickeys.ts +84 -0
- package/src/api/helpers/bigNumberUtils.ts +58 -0
- package/src/api/helpers/hexUtils.ts +111 -0
- package/src/api/helpers/paramsValidator.ts +165 -0
- package/src/api/helpers/pathUtils.ts +145 -0
- package/src/api/helpers/stringUtils.ts +11 -0
- package/src/api/helpers/typeNameUtils.ts +137 -0
- package/src/api/index.ts +161 -0
- package/src/api/kaspa/KaspaGetAddress.ts +103 -0
- package/src/api/kaspa/KaspaSignTransaction.ts +182 -0
- package/src/api/kaspa/helpers/BufferWriter.ts +177 -0
- package/src/api/kaspa/helpers/HashWriter.ts +74 -0
- package/src/api/kaspa/helpers/SignatureType.ts +7 -0
- package/src/api/kaspa/helpers/TransferSerialize.ts +144 -0
- package/src/api/lightning/LnurlAuth.ts +52 -0
- package/src/api/near/NearGetAddress.ts +75 -0
- package/src/api/near/NearSignTransaction.ts +46 -0
- package/src/api/nem/NEMGetAddress.ts +72 -0
- package/src/api/nem/NEMSignTransaction.ts +251 -0
- package/src/api/neo/NeoGetAddress.ts +80 -0
- package/src/api/neo/NeoSignTransaction.ts +59 -0
- package/src/api/nervos/NervosGetAddress.ts +80 -0
- package/src/api/nervos/NervosSignTransaction.ts +116 -0
- package/src/api/nexa/NexaGetAddress.ts +88 -0
- package/src/api/nexa/NexaSignTransaction.ts +107 -0
- package/src/api/nostr/NostrDecryptMessage.ts +57 -0
- package/src/api/nostr/NostrEncryptMessage.ts +57 -0
- package/src/api/nostr/NostrGetPublicKey.ts +74 -0
- package/src/api/nostr/NostrSignEvent.ts +65 -0
- package/src/api/nostr/NostrSignSchnorr.ts +52 -0
- package/src/api/nostr/helper/index.ts +28 -0
- package/src/api/polkadot/PolkadotGetAddress.ts +83 -0
- package/src/api/polkadot/PolkadotSignTransaction.ts +53 -0
- package/src/api/polkadot/networks.ts +72 -0
- package/src/api/scdo/ScdoGetAddress.ts +76 -0
- package/src/api/scdo/ScdoSignMessage.ts +45 -0
- package/src/api/scdo/ScdoSignTransaction.ts +106 -0
- package/src/api/solana/SolGetAddress.ts +68 -0
- package/src/api/solana/SolSignMessage.ts +61 -0
- package/src/api/solana/SolSignOffchainMessage.ts +61 -0
- package/src/api/solana/SolSignTransaction.ts +108 -0
- package/src/api/starcoin/StarcoinGetAddress.ts +69 -0
- package/src/api/starcoin/StarcoinGetPublicKey.ts +70 -0
- package/src/api/starcoin/StarcoinSignMessage.ts +42 -0
- package/src/api/starcoin/StarcoinSignTransaction.ts +38 -0
- package/src/api/starcoin/StarcoinVerifyMessage.ts +35 -0
- package/src/api/stellar/StellarGetAddress.ts +68 -0
- package/src/api/stellar/StellarSignTransaction.ts +220 -0
- package/src/api/sui/SuiGetAddress.ts +117 -0
- package/src/api/sui/SuiGetPublicKey.ts +66 -0
- package/src/api/sui/SuiSignMessage.ts +48 -0
- package/src/api/sui/SuiSignTransaction.ts +126 -0
- package/src/api/sui/normalize.ts +28 -0
- package/src/api/test/TestInitializeDeviceDuration.ts +22 -0
- package/src/api/ton/TonGetAddress.ts +96 -0
- package/src/api/ton/TonSignMessage.ts +217 -0
- package/src/api/ton/TonSignProof.ts +62 -0
- package/src/api/tron/TronGetAddress.ts +75 -0
- package/src/api/tron/TronSignMessage.ts +89 -0
- package/src/api/tron/TronSignTransaction.ts +214 -0
- package/src/api/u2f/GetNextU2FCounter.ts +15 -0
- package/src/api/u2f/SetU2FCounter.ts +19 -0
- package/src/api/utils.ts +23 -0
- package/src/api/xrp/XrpGetAddress.ts +96 -0
- package/src/api/xrp/XrpSignTransaction.ts +71 -0
- package/src/constants/errors.ts +15 -0
- package/src/constants/index.ts +2 -0
- package/src/constants/ui-request.ts +3 -0
- package/src/core/RequestQueue.ts +134 -0
- package/src/core/index.ts +1320 -0
- package/src/data/coins/bitcoin.json +44 -0
- package/src/data/config.ts +25 -0
- package/src/data/messages/messages.json +13167 -0
- package/src/data/messages/messages_legacy_v1.json +10282 -0
- package/src/data-manager/CoinManager.ts +31 -0
- package/src/data-manager/DataManager.ts +499 -0
- package/src/data-manager/MessagesConfig.ts +28 -0
- package/src/data-manager/TransportManager.ts +140 -0
- package/src/data-manager/connectSettings.ts +121 -0
- package/src/data-manager/index.ts +3 -0
- package/src/device/Device.ts +884 -0
- package/src/device/DeviceCommands.ts +631 -0
- package/src/device/DeviceConnector.ts +124 -0
- package/src/device/DeviceList.ts +39 -0
- package/src/device/DevicePool.ts +266 -0
- package/src/events/call.ts +95 -0
- package/src/events/core.ts +65 -0
- package/src/events/device.ts +92 -0
- package/src/events/firmware.ts +43 -0
- package/src/events/iframe.ts +55 -0
- package/src/events/index.ts +10 -0
- package/src/events/log.ts +23 -0
- package/src/events/logBlockEvent.ts +6 -0
- package/src/events/ui-promise.ts +14 -0
- package/src/events/ui-request.ts +216 -0
- package/src/events/ui-response.ts +59 -0
- package/src/events/utils.ts +19 -0
- package/src/index.ts +70 -0
- package/src/inject.ts +408 -0
- package/src/lowLevelInject.ts +61 -0
- package/src/topLevelInject.ts +62 -0
- package/src/types/api/alephiumGetAddress.ts +31 -0
- package/src/types/api/alephiumSignMessage.ts +14 -0
- package/src/types/api/alephiumSignTransaction.ts +18 -0
- package/src/types/api/algoGetAddress.ts +23 -0
- package/src/types/api/algoSignTransaction.ts +17 -0
- package/src/types/api/allNetworkGetAddress.ts +130 -0
- package/src/types/api/aptosGetAddress.ts +28 -0
- package/src/types/api/aptosGetPublicKey.ts +27 -0
- package/src/types/api/aptosSignInMessage.ts +17 -0
- package/src/types/api/aptosSignMessage.ts +26 -0
- package/src/types/api/aptosSignTransaction.ts +18 -0
- package/src/types/api/benfenGetAddress.ts +24 -0
- package/src/types/api/benfenGetPublicKey.ts +23 -0
- package/src/types/api/benfenSignMessage.ts +13 -0
- package/src/types/api/benfenSignTransaction.ts +19 -0
- package/src/types/api/btcGetAddress.ts +26 -0
- package/src/types/api/btcGetPublicKey.ts +26 -0
- package/src/types/api/btcSignMessage.ts +16 -0
- package/src/types/api/btcSignPsbt.ts +13 -0
- package/src/types/api/btcSignTransaction.ts +98 -0
- package/src/types/api/btcVerifyMessage.ts +15 -0
- package/src/types/api/cardano.ts +212 -0
- package/src/types/api/cardanoGetAddress.ts +49 -0
- package/src/types/api/cardanoGetPublicKey.ts +33 -0
- package/src/types/api/cardanoSignMessage.ts +31 -0
- package/src/types/api/cardanoSignTransaction.ts +8 -0
- package/src/types/api/checkAllFirmwareRelease.ts +34 -0
- package/src/types/api/checkBLEFirmwareRelease.ts +15 -0
- package/src/types/api/checkBootloaderRelease.ts +19 -0
- package/src/types/api/checkBridgeRelease.ts +14 -0
- package/src/types/api/checkBridgeStatus.ts +3 -0
- package/src/types/api/checkFirmwareRelease.ts +23 -0
- package/src/types/api/checkFirmwareTypeAvailable.ts +12 -0
- package/src/types/api/cipherKeyValue.ts +28 -0
- package/src/types/api/confluxGetAddress.ts +24 -0
- package/src/types/api/confluxSignMessage.ts +13 -0
- package/src/types/api/confluxSignMessageCIP23.ts +14 -0
- package/src/types/api/confluxSignTransaction.ts +32 -0
- package/src/types/api/cosmosGetAddress.ts +24 -0
- package/src/types/api/cosmosGetPublicKey.ts +28 -0
- package/src/types/api/cosmosSignTransaction.ts +17 -0
- package/src/types/api/deviceBackup.ts +4 -0
- package/src/types/api/deviceCancel.ts +4 -0
- package/src/types/api/deviceChangePin.ts +11 -0
- package/src/types/api/deviceFlags.ts +11 -0
- package/src/types/api/deviceFullyUploadResource.ts +15 -0
- package/src/types/api/deviceLock.ts +4 -0
- package/src/types/api/deviceRebootToBoardloader.ts +6 -0
- package/src/types/api/deviceRebootToBootloader.ts +4 -0
- package/src/types/api/deviceRecovery.ts +19 -0
- package/src/types/api/deviceReset.ts +20 -0
- package/src/types/api/deviceSettings.ts +23 -0
- package/src/types/api/deviceSupportFeatures.ts +6 -0
- package/src/types/api/deviceUnlock.ts +4 -0
- package/src/types/api/deviceUpdateBootloader.ts +13 -0
- package/src/types/api/deviceUpdateReboot.ts +3 -0
- package/src/types/api/deviceUploadResource.ts +21 -0
- package/src/types/api/deviceVerify.ts +15 -0
- package/src/types/api/deviceWipe.ts +4 -0
- package/src/types/api/dnxGetAddress.ts +23 -0
- package/src/types/api/dnxSignTransaction.ts +36 -0
- package/src/types/api/event.ts +8 -0
- package/src/types/api/evmGetAddress.ts +24 -0
- package/src/types/api/evmGetPublicKey.ts +36 -0
- package/src/types/api/evmSignMessage.ts +14 -0
- package/src/types/api/evmSignMessageEIP712.ts +14 -0
- package/src/types/api/evmSignTransaction.ts +80 -0
- package/src/types/api/evmSignTypedData.ts +42 -0
- package/src/types/api/evmVerifyMessage.ts +15 -0
- package/src/types/api/export.ts +194 -0
- package/src/types/api/filecoinGetAddress.ts +24 -0
- package/src/types/api/filecoinSignTransaction.ts +24 -0
- package/src/types/api/firmwareUpdate.ts +66 -0
- package/src/types/api/getFeatures.ts +4 -0
- package/src/types/api/getLogs.ts +3 -0
- package/src/types/api/getNextU2FCounter.ts +7 -0
- package/src/types/api/getOnetokenFeatures.ts +7 -0
- package/src/types/api/getPassphraseState.ts +6 -0
- package/src/types/api/index.ts +404 -0
- package/src/types/api/init.ts +11 -0
- package/src/types/api/kaspaGetAddress.ts +26 -0
- package/src/types/api/kaspaSignTransaction.ts +44 -0
- package/src/types/api/lnurlAuth.ts +22 -0
- package/src/types/api/nearGetAddress.ts +23 -0
- package/src/types/api/nearSignTransaction.ts +13 -0
- package/src/types/api/nemGetAddress.ts +24 -0
- package/src/types/api/nemSignTransaction.ts +118 -0
- package/src/types/api/neoGetAddress.ts +24 -0
- package/src/types/api/neoSignTransaction.ts +18 -0
- package/src/types/api/nervosGetAddress.ts +24 -0
- package/src/types/api/nervosSignTransaction.ts +19 -0
- package/src/types/api/nexaGetAddress.ts +26 -0
- package/src/types/api/nexaSignTransaction.ts +28 -0
- package/src/types/api/nostrDecryptMessage.ts +25 -0
- package/src/types/api/nostrEncryptMessage.ts +25 -0
- package/src/types/api/nostrGetPublicKey.ts +28 -0
- package/src/types/api/nostrSignEvent.ts +52 -0
- package/src/types/api/nostrSignSchnorr.ts +22 -0
- package/src/types/api/polkadotGetAddress.ts +30 -0
- package/src/types/api/polkadotSignTransaction.ts +19 -0
- package/src/types/api/promptWebDeviceAccess.ts +6 -0
- package/src/types/api/scdoGetAddress.ts +23 -0
- package/src/types/api/scdoSignMessage.ts +13 -0
- package/src/types/api/scdoSignTransaction.ts +24 -0
- package/src/types/api/searchDevices.ts +4 -0
- package/src/types/api/setU2FCounter.ts +7 -0
- package/src/types/api/solGetAddress.ts +23 -0
- package/src/types/api/solSignMessage.ts +17 -0
- package/src/types/api/solSignOffchainMessage.ts +24 -0
- package/src/types/api/solSignTransaction.ts +27 -0
- package/src/types/api/starcoinGetAddress.ts +23 -0
- package/src/types/api/starcoinGetPublicKey.ts +23 -0
- package/src/types/api/starcoinSignMessage.ts +13 -0
- package/src/types/api/starcoinSignTransaction.ts +13 -0
- package/src/types/api/starcoinVerifyMessage.ts +14 -0
- package/src/types/api/stellarGetAddress.ts +23 -0
- package/src/types/api/stellarSignTransaction.ts +154 -0
- package/src/types/api/suiGetAddress.ts +28 -0
- package/src/types/api/suiGetPublicKey.ts +27 -0
- package/src/types/api/suiSignMessage.ts +13 -0
- package/src/types/api/suiSignTransaction.ts +17 -0
- package/src/types/api/testInitializeDeviceDuration.ts +6 -0
- package/src/types/api/tonGetAddress.ts +34 -0
- package/src/types/api/tonSignMessage.ts +42 -0
- package/src/types/api/tonSignProof.ts +25 -0
- package/src/types/api/tronGetAddress.ts +23 -0
- package/src/types/api/tronSignMessage.ts +14 -0
- package/src/types/api/tronSignTransaction.ts +89 -0
- package/src/types/api/uiResponse.ts +3 -0
- package/src/types/api/xrpGetAddress.ts +28 -0
- package/src/types/api/xrpSignTransaction.ts +29 -0
- package/src/types/device.ts +194 -0
- package/src/types/firmware.ts +41 -0
- package/src/types/global.d.ts +3 -0
- package/src/types/index.ts +5 -0
- package/src/types/params.ts +64 -0
- package/src/types/settings.ts +144 -0
- package/src/utils/arrayUtils.ts +7 -0
- package/src/utils/assets.ts +5 -0
- package/src/utils/bridgeUpdate.ts +80 -0
- package/src/utils/capabilitieUtils.ts +12 -0
- package/src/utils/deviceFeaturesUtils.ts +352 -0
- package/src/utils/deviceInfoUtils.ts +167 -0
- package/src/utils/deviceSettings.ts +109 -0
- package/src/utils/deviceVersionUtils.ts +79 -0
- package/src/utils/findDefectiveBatchDevice.ts +39 -0
- package/src/utils/getMutex.ts +41 -0
- package/src/utils/getSynchronize.ts +25 -0
- package/src/utils/homescreen.ts +345 -0
- package/src/utils/index.ts +44 -0
- package/src/utils/logger.ts +190 -0
- package/src/utils/networkUtils.ts +25 -0
- package/src/utils/patch.ts +14 -0
- package/src/utils/promiseUtils.ts +4 -0
- package/src/utils/release.ts +42 -0
- package/src/utils/semver.test.js +53 -0
- package/src/utils/tracing.ts +238 -0
- package/src/utils/versionUtils.ts +120 -0
- package/tsconfig.json +11 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { getOutputScriptType, isSegwitPath, validatePath } from '../helpers/pathUtils';
|
|
5
|
+
import { BaseMethod } from '../BaseMethod';
|
|
6
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
7
|
+
import signtx from './helpers/signtx';
|
|
8
|
+
import signtxLegacy from './helpers/signtxLegacy';
|
|
9
|
+
import { getCoinInfo } from './helpers/btcParamsUtils';
|
|
10
|
+
import { getBitcoinForkVersionRange } from './helpers/versionLimit';
|
|
11
|
+
|
|
12
|
+
import type {
|
|
13
|
+
AccountAddresses,
|
|
14
|
+
BTCSignTransactionParams,
|
|
15
|
+
RefTransaction,
|
|
16
|
+
TransactionOptions,
|
|
17
|
+
} from '../../types/api/btcSignTransaction';
|
|
18
|
+
import type { TxInputType, TxOutputType } from '@onetokenfe/hd-transport';
|
|
19
|
+
|
|
20
|
+
type Params = {
|
|
21
|
+
inputs: TxInputType[];
|
|
22
|
+
outputs: TxOutputType[];
|
|
23
|
+
refTxs: RefTransaction[];
|
|
24
|
+
addresses?: AccountAddresses;
|
|
25
|
+
options: TransactionOptions;
|
|
26
|
+
coinName: string;
|
|
27
|
+
};
|
|
28
|
+
export default class BTCSignTransaction extends BaseMethod<Params> {
|
|
29
|
+
init() {
|
|
30
|
+
this.checkDeviceId = true;
|
|
31
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
32
|
+
|
|
33
|
+
validateParams(this.payload, [
|
|
34
|
+
{ name: 'coin', type: 'string', required: true },
|
|
35
|
+
{ name: 'inputs', type: 'array', required: true },
|
|
36
|
+
{ name: 'outputs', type: 'array', required: true },
|
|
37
|
+
{ name: 'refTxs', type: 'array', required: true, allowEmpty: true },
|
|
38
|
+
{ name: 'locktime', type: 'number' },
|
|
39
|
+
{ name: 'version', type: 'number' },
|
|
40
|
+
{ name: 'expiry', type: 'number' },
|
|
41
|
+
{ name: 'overwintered', type: 'boolean' },
|
|
42
|
+
{ name: 'versionGroupId', type: 'number' },
|
|
43
|
+
{ name: 'branchId', type: 'number' },
|
|
44
|
+
{ name: 'timestamp', type: 'number' },
|
|
45
|
+
]);
|
|
46
|
+
|
|
47
|
+
this.payload.refTxs.forEach((tx: RefTransaction) => {
|
|
48
|
+
validateParams(tx, [
|
|
49
|
+
{ name: 'hash', type: 'hexString', required: true },
|
|
50
|
+
{ name: 'inputs', type: 'array', required: true },
|
|
51
|
+
{ name: 'bin_outputs', type: 'array', required: !Array.isArray(tx.outputs) },
|
|
52
|
+
{ name: 'outputs', type: 'array' },
|
|
53
|
+
{ name: 'version', type: 'number', required: true },
|
|
54
|
+
{ name: 'lock_time', type: 'number', required: true },
|
|
55
|
+
{ name: 'extra_data', type: 'string' },
|
|
56
|
+
{ name: 'timestamp', type: 'number' },
|
|
57
|
+
{ name: 'version_group_id', type: 'number' },
|
|
58
|
+
]);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
this.payload.inputs.forEach((input: any) => {
|
|
62
|
+
validatePath(input.address_n);
|
|
63
|
+
const useAmount = isSegwitPath(input.address_n);
|
|
64
|
+
validateParams(input, [
|
|
65
|
+
{ name: 'prev_hash', type: 'hexString', required: true },
|
|
66
|
+
{ name: 'prev_index', type: 'number', required: true },
|
|
67
|
+
{ name: 'script_type', type: 'string' },
|
|
68
|
+
{ name: 'amount', type: 'string', required: useAmount },
|
|
69
|
+
{ name: 'sequence', type: 'number' },
|
|
70
|
+
{ name: 'multisig', type: 'object' },
|
|
71
|
+
]);
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
this.payload.outputs.forEach((output: any) => {
|
|
75
|
+
validateParams(output, [
|
|
76
|
+
{ name: 'address_n', type: 'array' },
|
|
77
|
+
{ name: 'address', type: 'string' },
|
|
78
|
+
{ name: 'amount', type: 'string' },
|
|
79
|
+
{ name: 'op_return_data', type: 'string' },
|
|
80
|
+
{ name: 'multisig', type: 'object' },
|
|
81
|
+
]);
|
|
82
|
+
|
|
83
|
+
if (
|
|
84
|
+
Object.prototype.hasOwnProperty.call(output, 'address_n') &&
|
|
85
|
+
Object.prototype.hasOwnProperty.call(output, 'address')
|
|
86
|
+
) {
|
|
87
|
+
throw ERRORS.TypedError(
|
|
88
|
+
HardwareErrorCode.CallMethodInvalidParameter,
|
|
89
|
+
'Cannot use address and address_n in one output'
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (output.address_n) {
|
|
94
|
+
const scriptType = getOutputScriptType(output.address_n);
|
|
95
|
+
if (output.script_type !== scriptType)
|
|
96
|
+
throw ERRORS.TypedError(
|
|
97
|
+
HardwareErrorCode.CallMethodInvalidParameter,
|
|
98
|
+
`Output change script_type should be set to ${scriptType}`
|
|
99
|
+
);
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
const { inputs, outputs, refTxs, account, coin } = this.payload as BTCSignTransactionParams;
|
|
104
|
+
|
|
105
|
+
const coinName = getCoinInfo(undefined, coin).name;
|
|
106
|
+
|
|
107
|
+
this.params = {
|
|
108
|
+
inputs,
|
|
109
|
+
outputs,
|
|
110
|
+
refTxs,
|
|
111
|
+
addresses: account ? account.addresses : undefined,
|
|
112
|
+
options: {
|
|
113
|
+
lock_time: this.payload.locktime,
|
|
114
|
+
timestamp: this.payload.timestamp,
|
|
115
|
+
version: this.payload.version,
|
|
116
|
+
expiry: this.payload.expiry,
|
|
117
|
+
overwintered: this.payload.overwintered,
|
|
118
|
+
version_group_id: this.payload.versionGroupId,
|
|
119
|
+
branch_id: this.payload.branchId,
|
|
120
|
+
},
|
|
121
|
+
coinName,
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
getVersionRange() {
|
|
126
|
+
return getBitcoinForkVersionRange([this.params.coinName]);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
async run() {
|
|
130
|
+
const { device, params } = this;
|
|
131
|
+
|
|
132
|
+
const useLegacySignProcess = device.unavailableCapabilities.replaceTransaction;
|
|
133
|
+
|
|
134
|
+
const { refTxs } = params;
|
|
135
|
+
|
|
136
|
+
const signTxMethod = !useLegacySignProcess ? signtx : signtxLegacy;
|
|
137
|
+
const response = await signTxMethod(
|
|
138
|
+
device.commands.typedCall.bind(device.commands),
|
|
139
|
+
params.inputs,
|
|
140
|
+
params.outputs,
|
|
141
|
+
refTxs,
|
|
142
|
+
params.options,
|
|
143
|
+
params.coinName
|
|
144
|
+
);
|
|
145
|
+
|
|
146
|
+
return response;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { BaseMethod } from '../BaseMethod';
|
|
3
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
4
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
5
|
+
import { getCoinInfo } from './helpers/btcParamsUtils';
|
|
6
|
+
import { getBitcoinForkVersionRange } from './helpers/versionLimit';
|
|
7
|
+
|
|
8
|
+
import type { VerifyMessage } from '@onetokenfe/hd-transport';
|
|
9
|
+
|
|
10
|
+
export default class BTCVerifyMessage extends BaseMethod<VerifyMessage> {
|
|
11
|
+
init() {
|
|
12
|
+
this.checkDeviceId = true;
|
|
13
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
14
|
+
|
|
15
|
+
validateParams(this.payload, [
|
|
16
|
+
{ name: 'address', type: 'string', required: true },
|
|
17
|
+
{ name: 'messageHex', type: 'hexString', required: true },
|
|
18
|
+
{ name: 'signature', type: 'hexString', required: true },
|
|
19
|
+
{ name: 'coin', type: 'string', required: true },
|
|
20
|
+
]);
|
|
21
|
+
|
|
22
|
+
const { coin } = this.payload;
|
|
23
|
+
const { address, messageHex, signature } = formatAnyHex(this.payload);
|
|
24
|
+
|
|
25
|
+
const coinName = getCoinInfo(undefined, coin).name;
|
|
26
|
+
|
|
27
|
+
this.params = {
|
|
28
|
+
address,
|
|
29
|
+
message: messageHex,
|
|
30
|
+
signature,
|
|
31
|
+
coin_name: coinName,
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
getVersionRange() {
|
|
36
|
+
return getBitcoinForkVersionRange([this.params.coin_name]);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
async run() {
|
|
40
|
+
const res = await this.device.commands.typedCall('VerifyMessage', 'Success', {
|
|
41
|
+
...this.params,
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
return Promise.resolve(res.message);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { fromHardened, getScriptType, isMultisigPath } from '../../helpers/pathUtils';
|
|
4
|
+
import bitcoin from '../../../data/coins/bitcoin.json';
|
|
5
|
+
|
|
6
|
+
export type BitcoinInfo = {
|
|
7
|
+
name: string;
|
|
8
|
+
slip44: number;
|
|
9
|
+
label: string;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export const getCoinInfo = (path: number[] | undefined, coin: string | undefined) => {
|
|
13
|
+
let coinInfo: BitcoinInfo | undefined;
|
|
14
|
+
if (coin) {
|
|
15
|
+
const coinName = coin.toLowerCase();
|
|
16
|
+
coinInfo = bitcoin.find(
|
|
17
|
+
c => c.name.toLowerCase() === coinName || c.label.toLowerCase() === coinName
|
|
18
|
+
);
|
|
19
|
+
} else if (path) {
|
|
20
|
+
const slip44 = fromHardened(path[1]);
|
|
21
|
+
coinInfo = bitcoin.find(c => c.slip44 === slip44);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
if (!coinInfo) {
|
|
25
|
+
if (coin) {
|
|
26
|
+
throw ERRORS.TypedError(
|
|
27
|
+
HardwareErrorCode.CallMethodInvalidParameter,
|
|
28
|
+
`Invalid coin name: ${coin}`
|
|
29
|
+
);
|
|
30
|
+
} else if (path) {
|
|
31
|
+
throw ERRORS.TypedError(
|
|
32
|
+
HardwareErrorCode.CallMethodInvalidParameter,
|
|
33
|
+
`Invalid path: ${path[0]}`
|
|
34
|
+
);
|
|
35
|
+
} else {
|
|
36
|
+
throw ERRORS.TypedError(HardwareErrorCode.CallMethodInvalidParameter);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return coinInfo;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
export const getCoinAndScriptType = (
|
|
44
|
+
path: number[],
|
|
45
|
+
coin: string | undefined,
|
|
46
|
+
multisig?: boolean
|
|
47
|
+
) => {
|
|
48
|
+
const coinName = getCoinInfo(path, coin).name;
|
|
49
|
+
|
|
50
|
+
let isMultisig = multisig;
|
|
51
|
+
if (isMultisig === undefined) {
|
|
52
|
+
isMultisig = isMultisigPath(path);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
let scriptType = getScriptType(path);
|
|
56
|
+
if (scriptType === 'SPENDMULTISIG' && !isMultisig) {
|
|
57
|
+
scriptType = 'SPENDADDRESS';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return {
|
|
61
|
+
coinName,
|
|
62
|
+
scriptType: scriptType ?? 'SPENDADDRESS',
|
|
63
|
+
};
|
|
64
|
+
};
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import type {
|
|
4
|
+
TxInputType,
|
|
5
|
+
TxOutputType,
|
|
6
|
+
TxRequest,
|
|
7
|
+
TxRequestSerializedType,
|
|
8
|
+
TypedCall,
|
|
9
|
+
} from '@onetokenfe/hd-transport';
|
|
10
|
+
import type {
|
|
11
|
+
RefTransaction,
|
|
12
|
+
SignedTransaction,
|
|
13
|
+
TransactionOptions,
|
|
14
|
+
} from '@onetokenfe/hd-core/src/types/api/btcSignTransaction';
|
|
15
|
+
|
|
16
|
+
type RefTxs = { [hash: string]: RefTransaction };
|
|
17
|
+
type Props = {
|
|
18
|
+
typedCall: TypedCall;
|
|
19
|
+
txRequest: TxRequest;
|
|
20
|
+
refTxs: RefTxs;
|
|
21
|
+
inputs: TxInputType[];
|
|
22
|
+
outputs: TxOutputType[];
|
|
23
|
+
serializedTx: string[];
|
|
24
|
+
signatures: string[];
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const requestPrevTxInfo = ({ typedCall, txRequest: { request_type, details }, refTxs }: Props) => {
|
|
28
|
+
const { tx_hash } = details;
|
|
29
|
+
if (!tx_hash) {
|
|
30
|
+
throw ERRORS.TypedError(
|
|
31
|
+
HardwareErrorCode.RuntimeError,
|
|
32
|
+
'requestPrevTxInfo: unknown details.tx_hash'
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
const tx = refTxs[tx_hash.toLowerCase()];
|
|
36
|
+
if (!tx) {
|
|
37
|
+
throw ERRORS.TypedError(
|
|
38
|
+
HardwareErrorCode.RuntimeError,
|
|
39
|
+
`requestPrevTxInfo: Requested unknown tx: ${tx_hash}`
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
if (request_type === 'TXINPUT') {
|
|
43
|
+
// bin_outputs not present in tx = invalid RefTransaction object
|
|
44
|
+
if (!tx.bin_outputs)
|
|
45
|
+
throw ERRORS.TypedError(
|
|
46
|
+
HardwareErrorCode.RuntimeError,
|
|
47
|
+
`requestPrevTxInfo: Requested unknown TXINPUT: ${tx_hash}`
|
|
48
|
+
);
|
|
49
|
+
return typedCall('TxAckPrevInput', 'TxRequest', {
|
|
50
|
+
tx: { input: tx.inputs[details.request_index] },
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
if (request_type === 'TXOUTPUT') {
|
|
54
|
+
// bin_outputs not present in tx = invalid RefTransaction object
|
|
55
|
+
if (!tx.bin_outputs)
|
|
56
|
+
throw ERRORS.TypedError(
|
|
57
|
+
HardwareErrorCode.RuntimeError,
|
|
58
|
+
`requestPrevTxInfo: Requested unknown TXOUTPUT: ${tx_hash}`
|
|
59
|
+
);
|
|
60
|
+
return typedCall('TxAckPrevOutput', 'TxRequest', {
|
|
61
|
+
tx: { output: tx.bin_outputs[details.request_index] },
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
if (request_type === 'TXORIGINPUT') {
|
|
65
|
+
// outputs not present in tx = invalid RefTransaction object
|
|
66
|
+
if (!tx.outputs)
|
|
67
|
+
throw ERRORS.TypedError(
|
|
68
|
+
HardwareErrorCode.RuntimeError,
|
|
69
|
+
`requestPrevTxInfo: Requested unknown TXORIGINPUT: ${tx_hash}`
|
|
70
|
+
);
|
|
71
|
+
return typedCall('TxAckInput', 'TxRequest', {
|
|
72
|
+
tx: { input: tx.inputs[details.request_index] },
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
if (request_type === 'TXORIGOUTPUT') {
|
|
76
|
+
// outputs not present in tx = invalid RefTransaction object
|
|
77
|
+
if (!tx.outputs)
|
|
78
|
+
throw ERRORS.TypedError(
|
|
79
|
+
HardwareErrorCode.RuntimeError,
|
|
80
|
+
`requestPrevTxInfo: Requested unknown TXORIGOUTPUT: ${tx_hash}`
|
|
81
|
+
);
|
|
82
|
+
return typedCall('TxAckOutput', 'TxRequest', {
|
|
83
|
+
tx: { output: tx.outputs[details.request_index] },
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
if (request_type === 'TXEXTRADATA') {
|
|
87
|
+
if (typeof details.extra_data_len !== 'number') {
|
|
88
|
+
throw ERRORS.TypedError(
|
|
89
|
+
HardwareErrorCode.RuntimeError,
|
|
90
|
+
'requestPrevTxInfo: Missing extra_data_len'
|
|
91
|
+
);
|
|
92
|
+
}
|
|
93
|
+
if (typeof details.extra_data_offset !== 'number') {
|
|
94
|
+
throw ERRORS.TypedError(
|
|
95
|
+
HardwareErrorCode.RuntimeError,
|
|
96
|
+
'requestPrevTxInfo: Missing extra_data_offset'
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
if (typeof tx.extra_data !== 'string') {
|
|
100
|
+
throw ERRORS.TypedError(
|
|
101
|
+
HardwareErrorCode.RuntimeError,
|
|
102
|
+
`requestPrevTxInfo: No extra data for transaction ${tx.hash}`
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
const data = tx.extra_data;
|
|
106
|
+
const dataLen = details.extra_data_len;
|
|
107
|
+
const dataOffset = details.extra_data_offset;
|
|
108
|
+
const extra_data_chunk = data.substring(dataOffset * 2, (dataOffset + dataLen) * 2);
|
|
109
|
+
return typedCall('TxAckPrevExtraData', 'TxRequest', { tx: { extra_data_chunk } });
|
|
110
|
+
}
|
|
111
|
+
if (request_type === 'TXMETA') {
|
|
112
|
+
const data = tx.extra_data;
|
|
113
|
+
const meta = {
|
|
114
|
+
version: tx.version,
|
|
115
|
+
lock_time: tx.lock_time,
|
|
116
|
+
inputs_count: tx.inputs.length,
|
|
117
|
+
outputs_count: tx.outputs ? tx.outputs.length : tx.bin_outputs.length,
|
|
118
|
+
timestamp: tx.timestamp,
|
|
119
|
+
version_group_id: tx.version_group_id,
|
|
120
|
+
expiry: tx.expiry,
|
|
121
|
+
branch_id: tx.branch_id,
|
|
122
|
+
extra_data_len: data ? data.length / 2 : undefined,
|
|
123
|
+
};
|
|
124
|
+
return typedCall('TxAckPrevMeta', 'TxRequest', { tx: meta });
|
|
125
|
+
}
|
|
126
|
+
throw ERRORS.TypedError(
|
|
127
|
+
HardwareErrorCode.RuntimeError,
|
|
128
|
+
`requestPrevTxInfo: Unknown request type: ${request_type}`
|
|
129
|
+
);
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
const requestSignedTxInfo = ({
|
|
133
|
+
typedCall,
|
|
134
|
+
txRequest: { request_type, details },
|
|
135
|
+
inputs,
|
|
136
|
+
outputs,
|
|
137
|
+
}: Props) => {
|
|
138
|
+
if (request_type === 'TXINPUT') {
|
|
139
|
+
return typedCall('TxAckInput', 'TxRequest', { tx: { input: inputs[details.request_index] } });
|
|
140
|
+
}
|
|
141
|
+
if (request_type === 'TXOUTPUT') {
|
|
142
|
+
return typedCall('TxAckOutput', 'TxRequest', {
|
|
143
|
+
tx: { output: outputs[details.request_index] },
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
if (request_type === 'TXMETA') {
|
|
147
|
+
throw ERRORS.TypedError(
|
|
148
|
+
HardwareErrorCode.RuntimeError,
|
|
149
|
+
'requestSignedTxInfo: Cannot read TXMETA from signed transaction'
|
|
150
|
+
);
|
|
151
|
+
}
|
|
152
|
+
if (request_type === 'TXEXTRADATA') {
|
|
153
|
+
throw ERRORS.TypedError(
|
|
154
|
+
HardwareErrorCode.RuntimeError,
|
|
155
|
+
'requestSignedTxInfo: Cannot read TXEXTRADATA from signed transaction'
|
|
156
|
+
);
|
|
157
|
+
}
|
|
158
|
+
throw ERRORS.TypedError(
|
|
159
|
+
HardwareErrorCode.RuntimeError,
|
|
160
|
+
`requestSignedTxInfo: Unknown request type: ${request_type}`
|
|
161
|
+
);
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
// requests information about a transaction
|
|
165
|
+
// can be either signed transaction itself of prev transaction
|
|
166
|
+
const requestTxAck = (props: Props) => {
|
|
167
|
+
const { tx_hash } = props.txRequest.details;
|
|
168
|
+
if (tx_hash) {
|
|
169
|
+
return requestPrevTxInfo(props);
|
|
170
|
+
}
|
|
171
|
+
return requestSignedTxInfo(props);
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
const saveTxSignatures = (
|
|
175
|
+
serializedTx: string[],
|
|
176
|
+
signatures: string[],
|
|
177
|
+
txRequest?: TxRequestSerializedType
|
|
178
|
+
) => {
|
|
179
|
+
if (!txRequest) return;
|
|
180
|
+
const { signature_index, signature, serialized_tx } = txRequest;
|
|
181
|
+
if (serialized_tx) {
|
|
182
|
+
serializedTx.push(serialized_tx);
|
|
183
|
+
}
|
|
184
|
+
if (typeof signature_index === 'number') {
|
|
185
|
+
if (!signature) {
|
|
186
|
+
throw ERRORS.TypedError(
|
|
187
|
+
HardwareErrorCode.RuntimeError,
|
|
188
|
+
'saveTxSignatures: Unexpected null in trezor:TxRequestSerialized signature.'
|
|
189
|
+
);
|
|
190
|
+
}
|
|
191
|
+
signatures[signature_index] = signature;
|
|
192
|
+
}
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
const processTxRequest = async (
|
|
196
|
+
props: Props
|
|
197
|
+
): Promise<{
|
|
198
|
+
signatures: string[];
|
|
199
|
+
serializedTx: string;
|
|
200
|
+
}> => {
|
|
201
|
+
const { typedCall, txRequest, refTxs, inputs, outputs, serializedTx, signatures } = props;
|
|
202
|
+
saveTxSignatures(serializedTx, signatures, txRequest.serialized);
|
|
203
|
+
if (txRequest.request_type === 'TXFINISHED') {
|
|
204
|
+
return Promise.resolve({
|
|
205
|
+
signatures,
|
|
206
|
+
serializedTx: serializedTx.join(''),
|
|
207
|
+
});
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
const { message } = await requestTxAck(props);
|
|
211
|
+
return processTxRequest({
|
|
212
|
+
typedCall,
|
|
213
|
+
txRequest: message,
|
|
214
|
+
refTxs,
|
|
215
|
+
inputs,
|
|
216
|
+
outputs,
|
|
217
|
+
serializedTx,
|
|
218
|
+
signatures,
|
|
219
|
+
});
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
export default async (
|
|
223
|
+
typedCall: TypedCall,
|
|
224
|
+
inputs: TxInputType[],
|
|
225
|
+
outputs: TxOutputType[],
|
|
226
|
+
refTxsArray: RefTransaction[],
|
|
227
|
+
options: TransactionOptions,
|
|
228
|
+
coinName: string
|
|
229
|
+
): Promise<SignedTransaction> => {
|
|
230
|
+
const refTxs: RefTxs = {};
|
|
231
|
+
refTxsArray.forEach(tx => {
|
|
232
|
+
refTxs[tx.hash.toLowerCase()] = tx;
|
|
233
|
+
});
|
|
234
|
+
|
|
235
|
+
const { message } = await typedCall('SignTx', 'TxRequest', {
|
|
236
|
+
...options,
|
|
237
|
+
inputs_count: inputs.length,
|
|
238
|
+
outputs_count: outputs.length,
|
|
239
|
+
coin_name: coinName,
|
|
240
|
+
});
|
|
241
|
+
|
|
242
|
+
return processTxRequest({
|
|
243
|
+
typedCall,
|
|
244
|
+
txRequest: message,
|
|
245
|
+
refTxs,
|
|
246
|
+
inputs,
|
|
247
|
+
outputs,
|
|
248
|
+
serializedTx: [],
|
|
249
|
+
signatures: [],
|
|
250
|
+
});
|
|
251
|
+
};
|