@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,77 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { BaseMethod } from './BaseMethod';
|
|
4
|
+
import TransportManager from '../data-manager/TransportManager';
|
|
5
|
+
import { DataManager } from '../data-manager';
|
|
6
|
+
import { DevicePool } from '../device/DevicePool';
|
|
7
|
+
import { LoggerNames, getLogger } from '../utils';
|
|
8
|
+
|
|
9
|
+
import type { OneTokenDeviceInfo } from '@onetokenfe/hd-transport';
|
|
10
|
+
|
|
11
|
+
const Log = getLogger(LoggerNames.Method);
|
|
12
|
+
|
|
13
|
+
export default class PromptWebDeviceAccess extends BaseMethod {
|
|
14
|
+
init() {
|
|
15
|
+
this.useDevice = false;
|
|
16
|
+
this.useDevicePassphraseState = false;
|
|
17
|
+
this.skipForceUpdateCheck = true;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
async run() {
|
|
21
|
+
const { deviceSerialNumberFromUI } = this.payload;
|
|
22
|
+
await TransportManager.configure();
|
|
23
|
+
const isWebUsbEnv = DataManager.getSettings('env') === 'webusb';
|
|
24
|
+
if (!isWebUsbEnv) {
|
|
25
|
+
return Promise.reject(
|
|
26
|
+
ERRORS.TypedError(HardwareErrorCode.RuntimeError, 'Not webusb environment')
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
try {
|
|
31
|
+
let device;
|
|
32
|
+
let devicesDescriptor;
|
|
33
|
+
|
|
34
|
+
// If serial number is provided, skip prompting user
|
|
35
|
+
if (deviceSerialNumberFromUI) {
|
|
36
|
+
// Manually construct device descriptor using provided serial number
|
|
37
|
+
devicesDescriptor = [
|
|
38
|
+
{
|
|
39
|
+
path: deviceSerialNumberFromUI,
|
|
40
|
+
device: { serialNumber: deviceSerialNumberFromUI },
|
|
41
|
+
debug: true,
|
|
42
|
+
},
|
|
43
|
+
];
|
|
44
|
+
} else {
|
|
45
|
+
// Otherwise prompt user to select a device
|
|
46
|
+
device = await this.connector?.promptDeviceAccess();
|
|
47
|
+
if (!device) {
|
|
48
|
+
return await Promise.reject(
|
|
49
|
+
ERRORS.TypedError(HardwareErrorCode.WebDevicePromptAccessError)
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
if (isWebUsbEnv) {
|
|
54
|
+
devicesDescriptor = [
|
|
55
|
+
{
|
|
56
|
+
path: (device as USBDevice).serialNumber ?? '',
|
|
57
|
+
device,
|
|
58
|
+
debug: true,
|
|
59
|
+
},
|
|
60
|
+
];
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
const { deviceList } = await DevicePool.getDevices(
|
|
64
|
+
devicesDescriptor as unknown as OneTokenDeviceInfo[]
|
|
65
|
+
);
|
|
66
|
+
if (deviceList.length > 0) {
|
|
67
|
+
return { device: deviceList[0].toMessageObject() };
|
|
68
|
+
}
|
|
69
|
+
return { device: null };
|
|
70
|
+
} catch (error) {
|
|
71
|
+
Log.debug(error);
|
|
72
|
+
return Promise.reject(
|
|
73
|
+
ERRORS.TypedError(HardwareErrorCode.RuntimeError, 'Please select the device to connect')
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { BaseMethod } from './BaseMethod';
|
|
2
|
+
import TransportManager from '../data-manager/TransportManager';
|
|
3
|
+
import { DataManager } from '../data-manager';
|
|
4
|
+
import { getDeviceTypeByBleName } from '../utils';
|
|
5
|
+
import { DevicePool } from '../device/DevicePool';
|
|
6
|
+
|
|
7
|
+
import type DeviceConnector from '../device/DeviceConnector';
|
|
8
|
+
|
|
9
|
+
export default class SearchDevices extends BaseMethod {
|
|
10
|
+
connector?: DeviceConnector;
|
|
11
|
+
|
|
12
|
+
init() {
|
|
13
|
+
this.useDevice = false;
|
|
14
|
+
this.useDevicePassphraseState = false;
|
|
15
|
+
this.skipForceUpdateCheck = true;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
async run() {
|
|
19
|
+
await TransportManager.configure();
|
|
20
|
+
const deviceDiff = await this.connector?.enumerate();
|
|
21
|
+
const devicesDescriptor = deviceDiff?.descriptors ?? [];
|
|
22
|
+
|
|
23
|
+
const env = DataManager.getSettings('env');
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* No need to call features during Bluetooth scaning
|
|
27
|
+
* to avoid device pairing
|
|
28
|
+
*/
|
|
29
|
+
if (DataManager.isBleConnect(env)) {
|
|
30
|
+
const devices = [];
|
|
31
|
+
const seenIds = new Set<string>();
|
|
32
|
+
|
|
33
|
+
for (const device of devicesDescriptor) {
|
|
34
|
+
const lowerId = device.id?.toLowerCase();
|
|
35
|
+
if (!seenIds.has(lowerId)) {
|
|
36
|
+
seenIds.add(lowerId);
|
|
37
|
+
devices.push({
|
|
38
|
+
...device,
|
|
39
|
+
connectId: device.id,
|
|
40
|
+
deviceType: getDeviceTypeByBleName(device.name ?? ''),
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
return devices;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const { deviceList } = await DevicePool.getDevices(devicesDescriptor);
|
|
48
|
+
return deviceList.map(device => device.toMessageObject());
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
5
|
+
|
|
6
|
+
import type { AlephiumGetAddress as HardwareAlephiumGetAddress } from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { AlephiumAddress, AlephiumGetAddressParams } from '../../types';
|
|
8
|
+
|
|
9
|
+
export default class AlephiumGetAddress extends BaseMethod<HardwareAlephiumGetAddress[]> {
|
|
10
|
+
hasBundle = false;
|
|
11
|
+
|
|
12
|
+
init() {
|
|
13
|
+
this.checkDeviceId = true;
|
|
14
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
15
|
+
|
|
16
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
17
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
18
|
+
|
|
19
|
+
// check payload
|
|
20
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
21
|
+
|
|
22
|
+
// init params
|
|
23
|
+
this.params = [];
|
|
24
|
+
payload.bundle.forEach((batch: AlephiumGetAddressParams) => {
|
|
25
|
+
const addressN = validatePath(batch.path, 3);
|
|
26
|
+
|
|
27
|
+
validateParams(batch, [
|
|
28
|
+
{ name: 'path', required: true },
|
|
29
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
30
|
+
{ name: 'includePublicKey', type: 'boolean' },
|
|
31
|
+
{ name: 'group', type: 'number' },
|
|
32
|
+
]);
|
|
33
|
+
|
|
34
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
35
|
+
|
|
36
|
+
this.params.push({
|
|
37
|
+
address_n: addressN,
|
|
38
|
+
show_display: showOnOneToken,
|
|
39
|
+
include_public_key: batch.includePublicKey ?? false,
|
|
40
|
+
// When group is 'null', the 'group' parameter will not be sent
|
|
41
|
+
...(batch.group !== null && { target_group: batch.group ?? 0 }),
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
getVersionRange() {
|
|
47
|
+
return {
|
|
48
|
+
model_touch: {
|
|
49
|
+
min: '4.10.0',
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
async run() {
|
|
55
|
+
const responses: AlephiumAddress[] = [];
|
|
56
|
+
|
|
57
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
58
|
+
const param = this.params[i];
|
|
59
|
+
|
|
60
|
+
const res = await this.device.commands.typedCall('AlephiumGetAddress', 'AlephiumAddress', {
|
|
61
|
+
...param,
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
const { address } = res.message;
|
|
65
|
+
|
|
66
|
+
const result: AlephiumAddress = {
|
|
67
|
+
path: serializedPath(param.address_n),
|
|
68
|
+
address,
|
|
69
|
+
publicKey: param.include_public_key ? res.message.public_key : undefined,
|
|
70
|
+
pub: param.include_public_key ? res.message.public_key : undefined,
|
|
71
|
+
derivedPath: serializedPath(res.message.derived_path),
|
|
72
|
+
};
|
|
73
|
+
responses.push(result);
|
|
74
|
+
|
|
75
|
+
this.postPreviousAddressMessage(result);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
validateResult(responses, ['address'], {
|
|
79
|
+
expectedLength: this.params.length,
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
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 { stripHexPrefix } from '../helpers/hexUtils';
|
|
6
|
+
|
|
7
|
+
import type { AlephiumSignMessage as HardwareAlephiumSignMessage } from '@onetokenfe/hd-transport';
|
|
8
|
+
|
|
9
|
+
export default class AlephiumSignMessage extends BaseMethod<HardwareAlephiumSignMessage> {
|
|
10
|
+
init() {
|
|
11
|
+
this.checkDeviceId = true;
|
|
12
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
13
|
+
|
|
14
|
+
// check payload
|
|
15
|
+
validateParams(this.payload, [
|
|
16
|
+
{ name: 'path', required: true },
|
|
17
|
+
{ name: 'messageHex', type: 'hexString', required: true },
|
|
18
|
+
{ name: 'messageType', type: 'string' },
|
|
19
|
+
]);
|
|
20
|
+
|
|
21
|
+
const { path, messageHex, messageType } = this.payload;
|
|
22
|
+
const addressN = validatePath(path, 3);
|
|
23
|
+
|
|
24
|
+
// init params
|
|
25
|
+
this.params = {
|
|
26
|
+
address_n: addressN,
|
|
27
|
+
message: stripHexPrefix(messageHex),
|
|
28
|
+
message_type: Buffer.from(messageType ?? 'alephium', 'utf-8').toString('hex'),
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
getVersionRange() {
|
|
33
|
+
return {
|
|
34
|
+
model_touch: {
|
|
35
|
+
min: '4.10.0',
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
async run() {
|
|
41
|
+
const response = await this.device.commands.typedCall(
|
|
42
|
+
'AlephiumSignMessage',
|
|
43
|
+
'AlephiumMessageSignature',
|
|
44
|
+
{
|
|
45
|
+
...this.params,
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
return Promise.resolve(response.message);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import {
|
|
2
|
+
type AlephiumSignedTx,
|
|
3
|
+
type AlephiumSignTx as HardwareAlephiumSignTx,
|
|
4
|
+
TypedCall,
|
|
5
|
+
} from '@onetokenfe/hd-transport';
|
|
6
|
+
import { bytesToHex } from '@noble/hashes/utils';
|
|
7
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
8
|
+
|
|
9
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
10
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
11
|
+
import { BaseMethod } from '../BaseMethod';
|
|
12
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
13
|
+
import type { AlephiumSignTransactionParams } from '../../types';
|
|
14
|
+
import type { TypedResponseMessage } from '../../device/DeviceCommands';
|
|
15
|
+
|
|
16
|
+
export default class AlephiumSignTransaction extends BaseMethod<HardwareAlephiumSignTx> {
|
|
17
|
+
init() {
|
|
18
|
+
this.checkDeviceId = true;
|
|
19
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
20
|
+
|
|
21
|
+
// check payload
|
|
22
|
+
validateParams(this.payload, [
|
|
23
|
+
{ name: 'path', required: true },
|
|
24
|
+
{ name: 'rawTx', required: true, type: 'hexString' },
|
|
25
|
+
{ name: 'scriptOpt', type: 'string' },
|
|
26
|
+
]);
|
|
27
|
+
|
|
28
|
+
const { path } = this.payload as AlephiumSignTransactionParams;
|
|
29
|
+
|
|
30
|
+
const addressN = validatePath(path, 3);
|
|
31
|
+
|
|
32
|
+
// init params
|
|
33
|
+
this.params = {
|
|
34
|
+
address_n: addressN,
|
|
35
|
+
data_initial_chunk: '',
|
|
36
|
+
data_length: 0,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
getVersionRange() {
|
|
41
|
+
return {
|
|
42
|
+
model_touch: {
|
|
43
|
+
min: '4.10.0',
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
chunkByteSize = 1024;
|
|
49
|
+
|
|
50
|
+
processTxRequest = async (
|
|
51
|
+
typedCall: TypedCall,
|
|
52
|
+
res:
|
|
53
|
+
| TypedResponseMessage<'AlephiumSignedTx'>
|
|
54
|
+
| TypedResponseMessage<'AlephiumTxRequest'>
|
|
55
|
+
| TypedResponseMessage<'AlephiumBytecodeRequest'>,
|
|
56
|
+
data: Buffer,
|
|
57
|
+
scriptOpt?: Buffer,
|
|
58
|
+
dataOffset = 0
|
|
59
|
+
): Promise<AlephiumSignedTx> => {
|
|
60
|
+
if (res.type === 'AlephiumSignedTx') {
|
|
61
|
+
return res.message;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
const { data_length } = res.message;
|
|
65
|
+
|
|
66
|
+
let response;
|
|
67
|
+
if (res.type === 'AlephiumTxRequest') {
|
|
68
|
+
if (!data_length) {
|
|
69
|
+
// sign Done
|
|
70
|
+
return res.message;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const payload = data.subarray(dataOffset, dataOffset + data_length);
|
|
74
|
+
const newOffset = dataOffset + payload.length;
|
|
75
|
+
const resourceAckParams = {
|
|
76
|
+
data_chunk: bytesToHex(payload),
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
response = await typedCall(
|
|
80
|
+
'AlephiumTxAck',
|
|
81
|
+
['AlephiumSignedTx', 'AlephiumTxRequest', 'AlephiumBytecodeRequest'],
|
|
82
|
+
{
|
|
83
|
+
...resourceAckParams,
|
|
84
|
+
}
|
|
85
|
+
);
|
|
86
|
+
|
|
87
|
+
return this.processTxRequest(typedCall, response, data, scriptOpt, newOffset);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
if (res.type === 'AlephiumBytecodeRequest') {
|
|
91
|
+
if (!scriptOpt?.length) {
|
|
92
|
+
throw ERRORS.TypedError(HardwareErrorCode.RuntimeError, 'scriptOpt is required');
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
const resourceAckParams = {
|
|
96
|
+
bytecode_data: bytesToHex(scriptOpt),
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
response = await typedCall(
|
|
100
|
+
'AlephiumBytecodeAck',
|
|
101
|
+
['AlephiumSignedTx', 'AlephiumBytecodeRequest'],
|
|
102
|
+
{
|
|
103
|
+
...resourceAckParams,
|
|
104
|
+
}
|
|
105
|
+
);
|
|
106
|
+
|
|
107
|
+
return this.processTxRequest(typedCall, response, data, scriptOpt, dataOffset);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
throw ERRORS.TypedError(HardwareErrorCode.RuntimeError, `Unknown response type: ${res.type}`);
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
async run() {
|
|
114
|
+
const typedCall = this.device.getCommands().typedCall.bind(this.device.getCommands());
|
|
115
|
+
|
|
116
|
+
const offset = this.chunkByteSize;
|
|
117
|
+
const data = Buffer.from(this.payload.rawTx, 'hex');
|
|
118
|
+
const scriptOpt = this.payload.scriptOpt && Buffer.from(this.payload.scriptOpt, 'hex');
|
|
119
|
+
this.params = {
|
|
120
|
+
address_n: this.params.address_n,
|
|
121
|
+
data_initial_chunk: bytesToHex(data.subarray(0, this.chunkByteSize)),
|
|
122
|
+
data_length: data.length,
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
const res = await typedCall(
|
|
126
|
+
'AlephiumSignTx',
|
|
127
|
+
['AlephiumSignedTx', 'AlephiumTxRequest', 'AlephiumBytecodeRequest'],
|
|
128
|
+
{
|
|
129
|
+
...this.params,
|
|
130
|
+
}
|
|
131
|
+
);
|
|
132
|
+
|
|
133
|
+
return this.processTxRequest(typedCall, res, data, scriptOpt, offset);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
2
|
+
import { BaseMethod } from '../BaseMethod';
|
|
3
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
4
|
+
|
|
5
|
+
import type { AlgorandGetAddress as HardwareAlgoGetAddress } from '@onetokenfe/hd-transport';
|
|
6
|
+
import type { AlgoAddress, AlgoGetAddressParams } from '../../types';
|
|
7
|
+
|
|
8
|
+
export default class AlgoGetAddress extends BaseMethod<HardwareAlgoGetAddress[]> {
|
|
9
|
+
hasBundle = false;
|
|
10
|
+
|
|
11
|
+
init() {
|
|
12
|
+
this.checkDeviceId = true;
|
|
13
|
+
this.allowDeviceMode = [...this.allowDeviceMode];
|
|
14
|
+
|
|
15
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
16
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
17
|
+
|
|
18
|
+
// check payload
|
|
19
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
20
|
+
|
|
21
|
+
// init params
|
|
22
|
+
this.params = [];
|
|
23
|
+
payload.bundle.forEach((batch: AlgoGetAddressParams) => {
|
|
24
|
+
const addressN = validatePath(batch.path, 3);
|
|
25
|
+
|
|
26
|
+
validateParams(batch, [
|
|
27
|
+
{ name: 'path', required: true },
|
|
28
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
29
|
+
]);
|
|
30
|
+
|
|
31
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
32
|
+
|
|
33
|
+
this.params.push({
|
|
34
|
+
address_n: addressN,
|
|
35
|
+
show_display: showOnOneToken,
|
|
36
|
+
});
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
getVersionRange() {
|
|
41
|
+
return {
|
|
42
|
+
model_mini: {
|
|
43
|
+
min: '2.6.0',
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
async run() {
|
|
49
|
+
const responses: AlgoAddress[] = [];
|
|
50
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
51
|
+
const param = this.params[i];
|
|
52
|
+
|
|
53
|
+
const res = await this.device.commands.typedCall('AlgorandGetAddress', 'AlgorandAddress', {
|
|
54
|
+
...param,
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
const { address } = res.message;
|
|
58
|
+
|
|
59
|
+
const result = {
|
|
60
|
+
path: serializedPath(param.address_n),
|
|
61
|
+
address,
|
|
62
|
+
};
|
|
63
|
+
responses.push(result);
|
|
64
|
+
this.postPreviousAddressMessage(result);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
validateResult(responses, ['address'], {
|
|
68
|
+
expectedLength: this.params.length,
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
2
|
+
import { BaseMethod } from '../BaseMethod';
|
|
3
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
4
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
5
|
+
|
|
6
|
+
import type { SolanaSignTransactionParams } from '../../types';
|
|
7
|
+
import type { AlgorandSignTx as HardwareAlgorandSignTx } from '@onetokenfe/hd-transport';
|
|
8
|
+
|
|
9
|
+
export default class AlgoSignTransaction extends BaseMethod<HardwareAlgorandSignTx> {
|
|
10
|
+
hasBundle = false;
|
|
11
|
+
|
|
12
|
+
init() {
|
|
13
|
+
this.checkDeviceId = true;
|
|
14
|
+
this.allowDeviceMode = [...this.allowDeviceMode];
|
|
15
|
+
|
|
16
|
+
// check payload
|
|
17
|
+
validateParams(this.payload, [
|
|
18
|
+
{ name: 'path', required: true },
|
|
19
|
+
{ name: 'rawTx', type: 'hexString', required: true },
|
|
20
|
+
]);
|
|
21
|
+
|
|
22
|
+
// init params
|
|
23
|
+
const { path, rawTx } = this.payload as SolanaSignTransactionParams;
|
|
24
|
+
const addressN = validatePath(path, 3);
|
|
25
|
+
|
|
26
|
+
this.params = {
|
|
27
|
+
address_n: addressN,
|
|
28
|
+
raw_tx: formatAnyHex(rawTx),
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
getVersionRange() {
|
|
33
|
+
return {
|
|
34
|
+
model_mini: {
|
|
35
|
+
min: '2.6.0',
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
async run() {
|
|
41
|
+
const res = await this.device.commands.typedCall('AlgorandSignTx', 'AlgorandSignedTx', {
|
|
42
|
+
...this.params,
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
const { signature } = res.message;
|
|
46
|
+
|
|
47
|
+
return {
|
|
48
|
+
path: serializedPath(this.params.address_n),
|
|
49
|
+
signature,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { HardwareErrorCode, HardwareErrorCodeMessage } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { createUiMessage } from '../../events';
|
|
4
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
5
|
+
import AllNetworkGetAddressBase from './AllNetworkGetAddressBase';
|
|
6
|
+
|
|
7
|
+
import type { CoreApi } from '../../types';
|
|
8
|
+
import type {
|
|
9
|
+
AllNetworkAddress,
|
|
10
|
+
AllNetworkAddressParams,
|
|
11
|
+
AllNetworkGetAddressParams,
|
|
12
|
+
} from '../../types/api/allNetworkGetAddress';
|
|
13
|
+
|
|
14
|
+
type MethodParams = {
|
|
15
|
+
methodName: keyof CoreApi;
|
|
16
|
+
params: Parameters<CoreApi[keyof CoreApi]>[0];
|
|
17
|
+
_originRequestParams: AllNetworkAddressParams;
|
|
18
|
+
_originalIndex: number;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export default class AllNetworkGetAddress extends AllNetworkGetAddressBase {
|
|
22
|
+
async getAllNetworkAddress(rootFingerprint: number) {
|
|
23
|
+
const responses: AllNetworkAddress[] = [];
|
|
24
|
+
const resultMap: Record<string, AllNetworkAddress> = {};
|
|
25
|
+
const { bundle } = this.payload as AllNetworkGetAddressParams;
|
|
26
|
+
|
|
27
|
+
const methodGroups = bundle
|
|
28
|
+
.map((param, index) =>
|
|
29
|
+
this.generateMethodName({
|
|
30
|
+
network: param.network,
|
|
31
|
+
payload: param,
|
|
32
|
+
originalIndex: index,
|
|
33
|
+
})
|
|
34
|
+
)
|
|
35
|
+
.reduce((acc, cur) => {
|
|
36
|
+
if (!acc[cur.methodName]) {
|
|
37
|
+
acc[cur.methodName] = [];
|
|
38
|
+
}
|
|
39
|
+
acc[cur.methodName].push(cur);
|
|
40
|
+
return acc;
|
|
41
|
+
}, {} as Record<keyof CoreApi, MethodParams[]>);
|
|
42
|
+
|
|
43
|
+
let i = 0;
|
|
44
|
+
for (const [methodName, params] of Object.entries(methodGroups)) {
|
|
45
|
+
const methodParams = {
|
|
46
|
+
bundle: params.map(param => ({
|
|
47
|
+
...param.params,
|
|
48
|
+
})),
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
if (this.abortController?.signal.aborted) {
|
|
52
|
+
throw new Error(HardwareErrorCodeMessage[HardwareErrorCode.RepeatUnlocking]);
|
|
53
|
+
}
|
|
54
|
+
// call method
|
|
55
|
+
const response = await this.callMethod(
|
|
56
|
+
methodName as keyof CoreApi,
|
|
57
|
+
methodParams,
|
|
58
|
+
rootFingerprint
|
|
59
|
+
);
|
|
60
|
+
|
|
61
|
+
if (this.abortController?.signal.aborted) {
|
|
62
|
+
throw new Error(HardwareErrorCodeMessage[HardwareErrorCode.RepeatUnlocking]);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
for (let i = 0; i < params.length; i++) {
|
|
66
|
+
const { _originRequestParams, _originalIndex } = params[i];
|
|
67
|
+
const responseKey = `${_originalIndex}`;
|
|
68
|
+
resultMap[responseKey] = {
|
|
69
|
+
..._originRequestParams,
|
|
70
|
+
...response[i],
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (this.payload?.bundle?.length > 1) {
|
|
75
|
+
const progress = Math.round(((i + 1) / this.payload.bundle.length) * 100);
|
|
76
|
+
this.postMessage(createUiMessage(UI_REQUEST.DEVICE_PROGRESS, { progress }));
|
|
77
|
+
}
|
|
78
|
+
i++;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
for (let i = 0; i < bundle.length; i++) {
|
|
82
|
+
responses.push(resultMap[i]);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
this.abortController = null;
|
|
86
|
+
return Promise.resolve(responses);
|
|
87
|
+
}
|
|
88
|
+
}
|