@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,105 @@
|
|
|
1
|
+
import { bytesToHex } from '@noble/hashes/utils';
|
|
2
|
+
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
5
|
+
import { BaseMethod } from '../BaseMethod';
|
|
6
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
7
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
8
|
+
|
|
9
|
+
import type { BenfenSignTx, BenfenSignedTx, MessageType, TypedCall } from '@onetokenfe/hd-transport';
|
|
10
|
+
import type { TypedResponseMessage } from '../../device/DeviceCommands';
|
|
11
|
+
|
|
12
|
+
export default class BenfenSignTransaction extends BaseMethod<BenfenSignTx> {
|
|
13
|
+
init() {
|
|
14
|
+
this.checkDeviceId = true;
|
|
15
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
16
|
+
|
|
17
|
+
validateParams(this.payload, [
|
|
18
|
+
{ name: 'path', required: true },
|
|
19
|
+
{ name: 'rawTx', type: 'hexString', required: true },
|
|
20
|
+
{ name: 'coinType', type: 'string', required: false },
|
|
21
|
+
]);
|
|
22
|
+
|
|
23
|
+
const { path, rawTx, coinType } = this.payload;
|
|
24
|
+
const addressN = validatePath(path, 3);
|
|
25
|
+
|
|
26
|
+
this.params = {
|
|
27
|
+
address_n: addressN,
|
|
28
|
+
raw_tx: formatAnyHex(rawTx),
|
|
29
|
+
...(coinType && {
|
|
30
|
+
coin_type: formatAnyHex(Buffer.from(coinType).toString('hex')),
|
|
31
|
+
}),
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
getVersionRange() {
|
|
36
|
+
return {
|
|
37
|
+
pro: {
|
|
38
|
+
min: '4.12.0',
|
|
39
|
+
},
|
|
40
|
+
model_classic1s: {
|
|
41
|
+
min: '3.11.0',
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
chunkByteSize = 1024;
|
|
47
|
+
|
|
48
|
+
processTxRequest = async (
|
|
49
|
+
typedCall: TypedCall,
|
|
50
|
+
res: TypedResponseMessage<'BenfenSignedTx'> | TypedResponseMessage<'BenfenTxRequest'>,
|
|
51
|
+
data: Buffer,
|
|
52
|
+
offset = 0
|
|
53
|
+
): Promise<BenfenSignedTx> => {
|
|
54
|
+
if (res.type === 'BenfenSignedTx') {
|
|
55
|
+
return res.message;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const { data_length } = res.message;
|
|
59
|
+
|
|
60
|
+
if (!data_length) {
|
|
61
|
+
// @ts-expect-error
|
|
62
|
+
return res.message;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const payload = data.subarray(offset, offset + data_length);
|
|
66
|
+
const newOffset = offset + payload.length;
|
|
67
|
+
const resourceAckParams = {
|
|
68
|
+
data_chunk: bytesToHex(new Uint8Array(payload)),
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
const response = await typedCall(
|
|
72
|
+
'BenfenTxAck',
|
|
73
|
+
['BenfenSignedTx', 'BenfenTxRequest'] as unknown as keyof MessageType,
|
|
74
|
+
{
|
|
75
|
+
...resourceAckParams,
|
|
76
|
+
}
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
return this.processTxRequest(
|
|
80
|
+
typedCall,
|
|
81
|
+
response as TypedResponseMessage<'BenfenSignedTx'> | TypedResponseMessage<'BenfenTxRequest'>,
|
|
82
|
+
data,
|
|
83
|
+
newOffset
|
|
84
|
+
);
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
async run() {
|
|
88
|
+
const typedCall = this.device.getCommands().typedCall.bind(this.device.getCommands());
|
|
89
|
+
const offset = this.chunkByteSize;
|
|
90
|
+
const data = Buffer.from(this.params.raw_tx, 'hex');
|
|
91
|
+
this.params = {
|
|
92
|
+
address_n: this.params.address_n,
|
|
93
|
+
coin_type: this.params.coin_type,
|
|
94
|
+
raw_tx: '',
|
|
95
|
+
data_initial_chunk: bytesToHex(new Uint8Array(data.buffer).subarray(0, this.chunkByteSize)),
|
|
96
|
+
data_length: data.length,
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
const res = await typedCall('BenfenSignTx', ['BenfenSignedTx', 'BenfenTxRequest'], {
|
|
100
|
+
...this.params,
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
return this.processTxRequest(typedCall, res, data, offset);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { bytesToHex, hexToBytes } from '@noble/hashes/utils';
|
|
2
|
+
import { blake2b } from '@noble/hashes/blake2b';
|
|
3
|
+
import { sha256 } from '@noble/hashes/sha256';
|
|
4
|
+
|
|
5
|
+
export const BENFEN_ADDRESS_LENGTH = 32;
|
|
6
|
+
export const PUBLIC_KEY_SIZE = 32;
|
|
7
|
+
|
|
8
|
+
export const SIGNATURE_SCHEME_TO_FLAG = {
|
|
9
|
+
ED25519: 0x00,
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export function normalizeBenfenAddress(value: string, forceAdd0x = false): string {
|
|
13
|
+
let address = value.toLowerCase();
|
|
14
|
+
if (!forceAdd0x && address.startsWith('0x')) {
|
|
15
|
+
address = address.slice(2);
|
|
16
|
+
}
|
|
17
|
+
return `0x${address.padStart(BENFEN_ADDRESS_LENGTH * 2, '0')}`.toLowerCase();
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export function publicKeyToAddress(publicKey: string) {
|
|
21
|
+
const tmp = new Uint8Array(PUBLIC_KEY_SIZE + 1);
|
|
22
|
+
tmp.set([SIGNATURE_SCHEME_TO_FLAG.ED25519]);
|
|
23
|
+
tmp.set(hexToBytes(publicKey), 1);
|
|
24
|
+
|
|
25
|
+
return normalizeBenfenAddress(
|
|
26
|
+
bytesToHex(blake2b(tmp, { dkLen: 32 })).slice(0, BENFEN_ADDRESS_LENGTH * 2)
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 将十六进制地址转换为 BFC 格式地址
|
|
32
|
+
* @param hexAddress - 输入的十六进制地址(可以带有0x前缀)
|
|
33
|
+
* @returns BFC格式的地址,格式为:BFC + 64位地址 + 4位校验和
|
|
34
|
+
* @throws {Error} 当输入地址格式无效时
|
|
35
|
+
*/
|
|
36
|
+
export function hex2BfcAddress(hexAddress: string): string {
|
|
37
|
+
// 如果已经是BFC格式,直接返回
|
|
38
|
+
if (/^BFC/i.test(hexAddress)) {
|
|
39
|
+
return hexAddress;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// 移除0x前缀,补齐64位,转小写
|
|
43
|
+
const hex = hexAddress.replace(/^0x/, '').padStart(64, '0').toLowerCase();
|
|
44
|
+
|
|
45
|
+
// 使用SHA-256计算校验和
|
|
46
|
+
const hash = sha256(new TextEncoder().encode(hex));
|
|
47
|
+
const checksumHex = bytesToHex(hash).slice(0, 4);
|
|
48
|
+
|
|
49
|
+
// 返回BFC格式地址
|
|
50
|
+
return `BFC${hex}${checksumHex}`;
|
|
51
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { getScriptType, serializedPath, validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
5
|
+
import { getCoinInfo } from './helpers/btcParamsUtils';
|
|
6
|
+
import { getBitcoinForkVersionRange } from './helpers/versionLimit';
|
|
7
|
+
|
|
8
|
+
import type { BTCAddress, BTCGetAddressParams } from '../../types/api/btcGetAddress';
|
|
9
|
+
import type { GetAddress } from '@onetokenfe/hd-transport';
|
|
10
|
+
|
|
11
|
+
export default class BTCGetAddress extends BaseMethod<GetAddress[]> {
|
|
12
|
+
hasBundle = false;
|
|
13
|
+
|
|
14
|
+
init() {
|
|
15
|
+
this.checkDeviceId = true;
|
|
16
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
17
|
+
|
|
18
|
+
this.hasBundle = Object.prototype.hasOwnProperty.call(this.payload, 'bundle');
|
|
19
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
20
|
+
|
|
21
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
22
|
+
|
|
23
|
+
this.params = [];
|
|
24
|
+
payload.bundle.forEach((batch: BTCGetAddressParams) => {
|
|
25
|
+
const addressN = validatePath(batch.path, 1);
|
|
26
|
+
|
|
27
|
+
validateParams(batch, [
|
|
28
|
+
{ name: 'path', required: true },
|
|
29
|
+
{ name: 'coin', type: 'string' },
|
|
30
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
31
|
+
{ name: 'multisig', type: 'object' },
|
|
32
|
+
{ name: 'scriptType', type: 'string' },
|
|
33
|
+
]);
|
|
34
|
+
|
|
35
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
36
|
+
|
|
37
|
+
const { multisig, coin } = batch;
|
|
38
|
+
|
|
39
|
+
let { scriptType } = batch;
|
|
40
|
+
if (!scriptType) {
|
|
41
|
+
scriptType = getScriptType(addressN);
|
|
42
|
+
if (scriptType === 'SPENDMULTISIG' && !multisig) {
|
|
43
|
+
scriptType = 'SPENDADDRESS';
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const coinName = getCoinInfo(addressN, coin).name;
|
|
48
|
+
|
|
49
|
+
this.params.push({
|
|
50
|
+
address_n: addressN,
|
|
51
|
+
show_display: showOnOneToken,
|
|
52
|
+
coin_name: coinName,
|
|
53
|
+
multisig,
|
|
54
|
+
script_type: scriptType || 'SPENDADDRESS',
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
getVersionRange() {
|
|
60
|
+
return getBitcoinForkVersionRange(this.params.map(param => param.coin_name));
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
async run() {
|
|
64
|
+
const responses: BTCAddress[] = [];
|
|
65
|
+
|
|
66
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
67
|
+
const param = this.params[i];
|
|
68
|
+
|
|
69
|
+
const res = await this.device.commands.typedCall('GetAddress', 'Address', {
|
|
70
|
+
...param,
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
const path = serializedPath(param.address_n);
|
|
74
|
+
responses.push({
|
|
75
|
+
path,
|
|
76
|
+
...res.message,
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
this.postPreviousAddressMessage({
|
|
80
|
+
address: res.message.address,
|
|
81
|
+
path,
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
validateResult(responses, ['address'], {
|
|
86
|
+
expectedLength: this.params.length,
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { HardwareError, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { getScriptType, isTaprootPath, serializedPath, validatePath } from '../helpers/pathUtils';
|
|
5
|
+
import { BaseMethod } from '../BaseMethod';
|
|
6
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
7
|
+
import { getCoinInfo } from './helpers/btcParamsUtils';
|
|
8
|
+
import { getBitcoinForkVersionRange } from './helpers/versionLimit';
|
|
9
|
+
import { batchGetPublickeys } from '../helpers/batchGetPublickeys';
|
|
10
|
+
import { createExtendedPublicKey, getVersionBytes } from './helpers/xpubUtils';
|
|
11
|
+
|
|
12
|
+
import type { BTCPublicKey } from '../../types/api/btcGetPublicKey';
|
|
13
|
+
import type { BTCGetAddressParams } from '../../types/api/btcGetAddress';
|
|
14
|
+
import type { GetPublicKey } from '@onetokenfe/hd-transport';
|
|
15
|
+
|
|
16
|
+
export default class BTCGetPublicKey extends BaseMethod<GetPublicKey[]> {
|
|
17
|
+
hasBundle = false;
|
|
18
|
+
|
|
19
|
+
init() {
|
|
20
|
+
this.checkDeviceId = true;
|
|
21
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
22
|
+
|
|
23
|
+
this.hasBundle = Object.prototype.hasOwnProperty.call(this.payload, 'bundle');
|
|
24
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
25
|
+
|
|
26
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
27
|
+
|
|
28
|
+
this.params = [];
|
|
29
|
+
|
|
30
|
+
payload.bundle.forEach((batch: BTCGetAddressParams) => {
|
|
31
|
+
const addressN = validatePath(batch.path, 1);
|
|
32
|
+
|
|
33
|
+
validateParams(batch, [
|
|
34
|
+
{ name: 'path', required: true },
|
|
35
|
+
{ name: 'coin', type: 'string' },
|
|
36
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
37
|
+
{ name: 'scriptType', type: 'string' },
|
|
38
|
+
]);
|
|
39
|
+
|
|
40
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
41
|
+
|
|
42
|
+
const { multisig, coin } = batch;
|
|
43
|
+
|
|
44
|
+
let { scriptType } = batch;
|
|
45
|
+
if (!scriptType) {
|
|
46
|
+
scriptType = getScriptType(addressN);
|
|
47
|
+
if (scriptType === 'SPENDMULTISIG' && !multisig) {
|
|
48
|
+
scriptType = 'SPENDADDRESS';
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const coinName = getCoinInfo(addressN, coin).name;
|
|
53
|
+
|
|
54
|
+
this.params.push({
|
|
55
|
+
address_n: addressN,
|
|
56
|
+
show_display: showOnOneToken,
|
|
57
|
+
coin_name: coinName,
|
|
58
|
+
script_type: scriptType || 'SPENDADDRESS',
|
|
59
|
+
});
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
private isBtcNetwork(param: GetPublicKey) {
|
|
64
|
+
return param.coin_name === 'Testnet' || param.coin_name === 'Bitcoin';
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
getVersionRange() {
|
|
68
|
+
return getBitcoinForkVersionRange(this.params.map(param => param.coin_name));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
async run() {
|
|
72
|
+
let responses: BTCPublicKey[] = [];
|
|
73
|
+
|
|
74
|
+
try {
|
|
75
|
+
const existsShowDisplay = this.params.some(param => param.show_display);
|
|
76
|
+
if (existsShowDisplay || !this.hasBundle) {
|
|
77
|
+
throw new Error('Goto getPublickey');
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
for (const param of this.params) {
|
|
81
|
+
const versionBytes = getVersionBytes(param.coin_name, param.script_type);
|
|
82
|
+
if (!versionBytes) {
|
|
83
|
+
throw new Error(
|
|
84
|
+
`Invalid coinName, not support generate xpub for scriptType: ${param.script_type}`
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
const res = await batchGetPublickeys(this.device, this.params, 'secp256k1', 0, {
|
|
90
|
+
includeNode: true,
|
|
91
|
+
ignoreCoinType: true,
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
if (!res?.hd_nodes || this.params.length !== res.hd_nodes.length) {
|
|
95
|
+
throw new Error('Invalid response from Publickeys');
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
99
|
+
const param = this.params[i];
|
|
100
|
+
const node = res.hd_nodes[i];
|
|
101
|
+
|
|
102
|
+
const path = serializedPath(param.address_n);
|
|
103
|
+
|
|
104
|
+
const xpub = createExtendedPublicKey(node, param.coin_name, param.script_type);
|
|
105
|
+
|
|
106
|
+
const rootFingerprint = res.root_fingerprint;
|
|
107
|
+
|
|
108
|
+
let xpubSegwit = xpub;
|
|
109
|
+
if (this.isBtcNetwork(param) && isTaprootPath(param.address_n)) {
|
|
110
|
+
// wrap regular xpub into bitcoind native descriptor
|
|
111
|
+
const fingerprint = Number(rootFingerprint || 0)
|
|
112
|
+
.toString(16)
|
|
113
|
+
.padStart(8, '0');
|
|
114
|
+
const descriptorPath = `${fingerprint}${path.substring(1)}`;
|
|
115
|
+
xpubSegwit = `tr([${descriptorPath}]${xpub}/<0;1>/*)`;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
responses.push({
|
|
119
|
+
path,
|
|
120
|
+
node,
|
|
121
|
+
xpub,
|
|
122
|
+
root_fingerprint: rootFingerprint,
|
|
123
|
+
xpubSegwit,
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
} catch (error) {
|
|
127
|
+
if (error instanceof HardwareError) {
|
|
128
|
+
const { errorCode } = error;
|
|
129
|
+
if (
|
|
130
|
+
errorCode === HardwareErrorCode.PinCancelled ||
|
|
131
|
+
errorCode === HardwareErrorCode.ActionCancelled ||
|
|
132
|
+
errorCode === HardwareErrorCode.ResponseUnexpectTypeError ||
|
|
133
|
+
errorCode === HardwareErrorCode.PinInvalid
|
|
134
|
+
) {
|
|
135
|
+
throw error;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// clear responses
|
|
140
|
+
responses = [];
|
|
141
|
+
|
|
142
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
143
|
+
const param = this.params[i];
|
|
144
|
+
|
|
145
|
+
const res = await this.device.commands.typedCall('GetPublicKey', 'PublicKey', {
|
|
146
|
+
...param,
|
|
147
|
+
});
|
|
148
|
+
|
|
149
|
+
const response = {
|
|
150
|
+
path: serializedPath(param.address_n),
|
|
151
|
+
...res.message,
|
|
152
|
+
xpubSegwit: res.message.xpub,
|
|
153
|
+
};
|
|
154
|
+
|
|
155
|
+
if (this.isBtcNetwork(param) && isTaprootPath(param.address_n)) {
|
|
156
|
+
// wrap regular xpub into bitcoind native descriptor
|
|
157
|
+
const fingerprint = Number(response.root_fingerprint || 0)
|
|
158
|
+
.toString(16)
|
|
159
|
+
.padStart(8, '0');
|
|
160
|
+
const descriptorPath = `${fingerprint}${response.path.substring(1)}`;
|
|
161
|
+
response.xpubSegwit = `tr([${descriptorPath}]${response.xpub}/<0;1>/*)`;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
responses.push(response);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
validateResult(responses, ['xpub'], {
|
|
169
|
+
expectedLength: this.params.length,
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
5
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
6
|
+
import { getCoinAndScriptType } from './helpers/btcParamsUtils';
|
|
7
|
+
import { getBitcoinForkVersionRange } from './helpers/versionLimit';
|
|
8
|
+
|
|
9
|
+
import type { SignMessage } from '@onetokenfe/hd-transport';
|
|
10
|
+
|
|
11
|
+
export default class BTCSignMessage extends BaseMethod<SignMessage> {
|
|
12
|
+
init() {
|
|
13
|
+
this.checkDeviceId = true;
|
|
14
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
15
|
+
|
|
16
|
+
validateParams(this.payload, [
|
|
17
|
+
{ name: 'path', required: true },
|
|
18
|
+
{ name: 'messageHex', type: 'hexString', required: true },
|
|
19
|
+
{ name: 'coin', type: 'string' },
|
|
20
|
+
{ name: 'noScriptType', type: 'boolean' },
|
|
21
|
+
{ name: 'dAppSignType', type: 'string' },
|
|
22
|
+
]);
|
|
23
|
+
|
|
24
|
+
const { path, messageHex, coin, noScriptType: _noScriptType, dAppSignType } = this.payload;
|
|
25
|
+
|
|
26
|
+
let noScriptType = _noScriptType;
|
|
27
|
+
let isBip322Simple = false;
|
|
28
|
+
|
|
29
|
+
const addressN = validatePath(path);
|
|
30
|
+
|
|
31
|
+
const { coinName, scriptType } = getCoinAndScriptType(addressN, coin, false);
|
|
32
|
+
let finalScriptType: undefined | typeof scriptType = scriptType;
|
|
33
|
+
|
|
34
|
+
if (dAppSignType === 'ecdsa' || dAppSignType === 'bip322-simple') {
|
|
35
|
+
if (dAppSignType === 'ecdsa') {
|
|
36
|
+
noScriptType = true;
|
|
37
|
+
} else {
|
|
38
|
+
isBip322Simple = true;
|
|
39
|
+
noScriptType = false;
|
|
40
|
+
}
|
|
41
|
+
} else {
|
|
42
|
+
finalScriptType = scriptType;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
this.params = {
|
|
46
|
+
address_n: addressN,
|
|
47
|
+
message: formatAnyHex(messageHex),
|
|
48
|
+
coin_name: coinName,
|
|
49
|
+
script_type: finalScriptType,
|
|
50
|
+
no_script_type: noScriptType,
|
|
51
|
+
is_bip322_simple: isBip322Simple,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
getVersionRange() {
|
|
56
|
+
if (this.payload.dAppSignType) {
|
|
57
|
+
return {
|
|
58
|
+
pro: {
|
|
59
|
+
min: '4.9.3',
|
|
60
|
+
},
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
return getBitcoinForkVersionRange([this.params.coin_name]);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
async run() {
|
|
67
|
+
const res = await this.device.commands.typedCall('SignMessage', 'MessageSignature', {
|
|
68
|
+
...this.params,
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
return Promise.resolve(res.message);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { EDeviceType, HardwareErrorCode, TypedError } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { BaseMethod } from '../BaseMethod';
|
|
5
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
6
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
7
|
+
import { getCoinInfo } from './helpers/btcParamsUtils';
|
|
8
|
+
import { getDeviceType } from '../../utils';
|
|
9
|
+
|
|
10
|
+
import type { SignPsbt } from '@onetokenfe/hd-transport';
|
|
11
|
+
|
|
12
|
+
export default class BTCSignPsbt extends BaseMethod<SignPsbt> {
|
|
13
|
+
init() {
|
|
14
|
+
this.checkDeviceId = true;
|
|
15
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
16
|
+
|
|
17
|
+
validateParams(this.payload, [
|
|
18
|
+
{ name: 'psbt', type: 'hexString', required: true },
|
|
19
|
+
{ name: 'coin', type: 'string' },
|
|
20
|
+
]);
|
|
21
|
+
|
|
22
|
+
const { psbt, coin } = this.payload;
|
|
23
|
+
|
|
24
|
+
const coinInfo = getCoinInfo(undefined, coin);
|
|
25
|
+
|
|
26
|
+
this.params = {
|
|
27
|
+
psbt: formatAnyHex(psbt),
|
|
28
|
+
coin_name: coinInfo.name,
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
getVersionRange() {
|
|
33
|
+
return {
|
|
34
|
+
pro: {
|
|
35
|
+
min: '4.9.3',
|
|
36
|
+
},
|
|
37
|
+
model_classic1s: {
|
|
38
|
+
min: '3.10.1',
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
async run() {
|
|
44
|
+
try {
|
|
45
|
+
const res = await this.device.commands.typedCall('SignPsbt', 'SignedPsbt', {
|
|
46
|
+
...this.params,
|
|
47
|
+
});
|
|
48
|
+
return res.message;
|
|
49
|
+
} catch (error) {
|
|
50
|
+
const { message } = error;
|
|
51
|
+
|
|
52
|
+
const deviceType = getDeviceType(this.device.features);
|
|
53
|
+
if (
|
|
54
|
+
message.includes('PSBT parse failed') &&
|
|
55
|
+
(deviceType === EDeviceType.Classic1s || deviceType === EDeviceType.ClassicPure)
|
|
56
|
+
) {
|
|
57
|
+
throw TypedError(HardwareErrorCode.BTCPsbtTooManyUtxos, 'PSBT too many utxos', {
|
|
58
|
+
count: 5,
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
throw error;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|