@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,107 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
4
|
+
import { BaseMethod } from '../BaseMethod';
|
|
5
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
6
|
+
|
|
7
|
+
import type { TypedResponseMessage } from '../../device/DeviceCommands';
|
|
8
|
+
import type { TypedCall } from '@onetokenfe/hd-transport';
|
|
9
|
+
import type { NexaSignTransactionParams, NexaSignature } from '../../types';
|
|
10
|
+
|
|
11
|
+
export default class NexaSignTransaction extends BaseMethod<NexaSignTransactionParams> {
|
|
12
|
+
hasBundle = false;
|
|
13
|
+
|
|
14
|
+
init() {
|
|
15
|
+
const payload = this.payload as NexaSignTransactionParams;
|
|
16
|
+
|
|
17
|
+
payload.inputs.forEach(input => {
|
|
18
|
+
validateParams(input, [
|
|
19
|
+
{ name: 'path', type: 'string', required: true },
|
|
20
|
+
{ name: 'message', type: 'string', required: true },
|
|
21
|
+
{ name: 'prefix', type: 'string', required: true },
|
|
22
|
+
]);
|
|
23
|
+
return input;
|
|
24
|
+
});
|
|
25
|
+
this.params = payload;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
getVersionRange() {
|
|
29
|
+
return {
|
|
30
|
+
model_mini: {
|
|
31
|
+
min: '3.2.0',
|
|
32
|
+
},
|
|
33
|
+
model_touch: {
|
|
34
|
+
min: '4.4.0',
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
async processTxRequest(
|
|
40
|
+
typedCall: TypedCall,
|
|
41
|
+
res: TypedResponseMessage<'NexaTxInputRequest'> | TypedResponseMessage<'NexaSignedTx'>,
|
|
42
|
+
index: number,
|
|
43
|
+
signatures: NexaSignature[]
|
|
44
|
+
): Promise<NexaSignature[]> {
|
|
45
|
+
const { signature } = res.message;
|
|
46
|
+
if (!signature) {
|
|
47
|
+
throw ERRORS.TypedError(
|
|
48
|
+
HardwareErrorCode.ResponseUnexpectTypeError,
|
|
49
|
+
'signature is not valid'
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
if (res.type === 'NexaSignedTx') {
|
|
53
|
+
signatures.push({
|
|
54
|
+
index,
|
|
55
|
+
signature,
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
return signatures;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
if (res.type === 'NexaTxInputRequest') {
|
|
62
|
+
signatures.push({
|
|
63
|
+
index,
|
|
64
|
+
signature,
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
const nextIndex = res.message.request_index;
|
|
68
|
+
const input = this.params.inputs[nextIndex];
|
|
69
|
+
const response = await typedCall(
|
|
70
|
+
'NexaTxInputAck',
|
|
71
|
+
// @ts-expect-error
|
|
72
|
+
['NexaTxInputRequest', 'NexaSignedTx'],
|
|
73
|
+
{
|
|
74
|
+
address_n: input.path,
|
|
75
|
+
raw_message: input.message,
|
|
76
|
+
}
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
// @ts-expect-error
|
|
80
|
+
return this.processTxRequest(typedCall, response, nextIndex, signatures);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
return signatures;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
async run() {
|
|
87
|
+
const { device, params } = this;
|
|
88
|
+
const input = params.inputs[0];
|
|
89
|
+
|
|
90
|
+
const response = await device.commands.typedCall(
|
|
91
|
+
'NexaSignTx',
|
|
92
|
+
['NexaTxInputRequest', 'NexaSignedTx'],
|
|
93
|
+
{
|
|
94
|
+
address_n: validatePath(input.path, 3),
|
|
95
|
+
raw_message: input.message,
|
|
96
|
+
prefix: input.prefix,
|
|
97
|
+
input_count: params.inputs.length,
|
|
98
|
+
}
|
|
99
|
+
);
|
|
100
|
+
return this.processTxRequest(
|
|
101
|
+
device.commands.typedCall.bind(device.commands),
|
|
102
|
+
response as any,
|
|
103
|
+
0,
|
|
104
|
+
[]
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
5
|
+
|
|
6
|
+
import type { NostrDecryptMessage as DecryptMessage } from '@onetokenfe/hd-transport';
|
|
7
|
+
|
|
8
|
+
export default class NostrDecryptMessage extends BaseMethod<DecryptMessage> {
|
|
9
|
+
hasBundle = false;
|
|
10
|
+
|
|
11
|
+
init() {
|
|
12
|
+
this.checkDeviceId = true;
|
|
13
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
14
|
+
|
|
15
|
+
const { payload } = this;
|
|
16
|
+
validateParams(payload, [
|
|
17
|
+
{ name: 'path', required: true },
|
|
18
|
+
{ name: 'pubkey', required: true, type: 'string' },
|
|
19
|
+
{ name: 'ciphertext', required: true, type: 'string' },
|
|
20
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
21
|
+
]);
|
|
22
|
+
const addressN = validatePath(payload.path, 5);
|
|
23
|
+
|
|
24
|
+
this.params = {
|
|
25
|
+
address_n: addressN,
|
|
26
|
+
pubkey: payload.pubkey,
|
|
27
|
+
msg: payload.ciphertext,
|
|
28
|
+
show_display: payload.showOnOneToken ?? true,
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
getVersionRange() {
|
|
33
|
+
return {
|
|
34
|
+
model_mini: {
|
|
35
|
+
min: '3.6.0',
|
|
36
|
+
},
|
|
37
|
+
model_touch: {
|
|
38
|
+
min: '4.7.0',
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
async run() {
|
|
44
|
+
const { message } = await this.device.commands.typedCall(
|
|
45
|
+
'NostrDecryptMessage',
|
|
46
|
+
'NostrDecryptedMessage',
|
|
47
|
+
this.params
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
return {
|
|
51
|
+
path: serializedPath(this.params.address_n),
|
|
52
|
+
pubkey: this.params.pubkey,
|
|
53
|
+
ciphertext: this.params.msg,
|
|
54
|
+
decryptedMessage: message.msg,
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
5
|
+
|
|
6
|
+
import type { NostrEncryptMessage as EncryptMessage } from '@onetokenfe/hd-transport';
|
|
7
|
+
|
|
8
|
+
export default class NostrEncryptMessage extends BaseMethod<EncryptMessage> {
|
|
9
|
+
hasBundle = false;
|
|
10
|
+
|
|
11
|
+
init() {
|
|
12
|
+
this.checkDeviceId = true;
|
|
13
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
14
|
+
|
|
15
|
+
const { payload } = this;
|
|
16
|
+
validateParams(payload, [
|
|
17
|
+
{ name: 'path', required: true },
|
|
18
|
+
{ name: 'pubkey', required: true, type: 'string' },
|
|
19
|
+
{ name: 'plaintext', required: true, type: 'string' },
|
|
20
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
21
|
+
]);
|
|
22
|
+
const addressN = validatePath(payload.path, 5);
|
|
23
|
+
|
|
24
|
+
this.params = {
|
|
25
|
+
address_n: addressN,
|
|
26
|
+
pubkey: payload.pubkey,
|
|
27
|
+
msg: payload.plaintext,
|
|
28
|
+
show_display: payload.showOnOneToken ?? true,
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
getVersionRange() {
|
|
33
|
+
return {
|
|
34
|
+
model_mini: {
|
|
35
|
+
min: '3.6.0',
|
|
36
|
+
},
|
|
37
|
+
model_touch: {
|
|
38
|
+
min: '4.7.0',
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
async run() {
|
|
44
|
+
const { message } = await this.device.commands.typedCall(
|
|
45
|
+
'NostrEncryptMessage',
|
|
46
|
+
'NostrEncryptedMessage',
|
|
47
|
+
this.params
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
return {
|
|
51
|
+
path: serializedPath(this.params.address_n),
|
|
52
|
+
pubkey: this.params.pubkey,
|
|
53
|
+
plaintext: this.params.msg,
|
|
54
|
+
encryptedMessage: message.msg,
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
5
|
+
|
|
6
|
+
import type { NostrGetPublicKey as GetPublicKey } from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { BTCGetAddressParams } from '../../types/api/btcGetAddress';
|
|
8
|
+
import type { NostrPublicKey } from '../../types/api/nostrGetPublicKey';
|
|
9
|
+
|
|
10
|
+
export default class NostrGetPublicKey extends BaseMethod<GetPublicKey[]> {
|
|
11
|
+
hasBundle = false;
|
|
12
|
+
|
|
13
|
+
init() {
|
|
14
|
+
this.checkDeviceId = true;
|
|
15
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
16
|
+
|
|
17
|
+
this.hasBundle = Object.prototype.hasOwnProperty.call(this.payload, 'bundle');
|
|
18
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
19
|
+
|
|
20
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
21
|
+
|
|
22
|
+
this.params = [];
|
|
23
|
+
|
|
24
|
+
payload.bundle.forEach((batch: BTCGetAddressParams) => {
|
|
25
|
+
const addressN = validatePath(batch.path, 1);
|
|
26
|
+
|
|
27
|
+
validateParams(batch, [
|
|
28
|
+
{ name: 'path', required: true },
|
|
29
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
30
|
+
]);
|
|
31
|
+
|
|
32
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
33
|
+
|
|
34
|
+
this.params.push({
|
|
35
|
+
address_n: addressN,
|
|
36
|
+
show_display: showOnOneToken,
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
getVersionRange() {
|
|
42
|
+
return {
|
|
43
|
+
model_mini: {
|
|
44
|
+
min: '3.6.0',
|
|
45
|
+
},
|
|
46
|
+
model_touch: {
|
|
47
|
+
min: '4.7.0',
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
async run() {
|
|
53
|
+
const responses: NostrPublicKey[] = [];
|
|
54
|
+
|
|
55
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
56
|
+
const param = this.params[i];
|
|
57
|
+
|
|
58
|
+
const res = await this.device.commands.typedCall('NostrGetPublicKey', 'NostrPublicKey', {
|
|
59
|
+
...param,
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
const response = {
|
|
63
|
+
path: serializedPath(param.address_n),
|
|
64
|
+
npub: res.message.npub,
|
|
65
|
+
pub: res.message.publickey,
|
|
66
|
+
publickey: res.message.publickey,
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
responses.push(response);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
5
|
+
import { BaseMethod } from '../BaseMethod';
|
|
6
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
7
|
+
import { validateEvent } from './helper';
|
|
8
|
+
import { bytesToHex, hexToBytes } from '../helpers/hexUtils';
|
|
9
|
+
|
|
10
|
+
import type { NostrSignEvent as SignEvent } from '@onetokenfe/hd-transport';
|
|
11
|
+
|
|
12
|
+
export default class NostrSignEvent extends BaseMethod<SignEvent> {
|
|
13
|
+
hasBundle = false;
|
|
14
|
+
|
|
15
|
+
init() {
|
|
16
|
+
this.checkDeviceId = true;
|
|
17
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
18
|
+
|
|
19
|
+
const { payload } = this;
|
|
20
|
+
if (!validateEvent(payload.event)) {
|
|
21
|
+
throw ERRORS.TypedError(
|
|
22
|
+
HardwareErrorCode.CallMethodInvalidParameter,
|
|
23
|
+
`Can't serialize event with wrong or missing properties`
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
validateParams(payload, [{ name: 'path', required: true }]);
|
|
27
|
+
const addressN = validatePath(payload.path, 5);
|
|
28
|
+
|
|
29
|
+
this.params = {
|
|
30
|
+
address_n: addressN,
|
|
31
|
+
event: bytesToHex(Buffer.from(JSON.stringify(payload.event, null, 0), 'utf-8')),
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
getVersionRange() {
|
|
36
|
+
return {
|
|
37
|
+
model_mini: {
|
|
38
|
+
min: '3.6.0',
|
|
39
|
+
},
|
|
40
|
+
model_touch: {
|
|
41
|
+
min: '4.7.0',
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
async run() {
|
|
47
|
+
const { message } = await this.device.commands.typedCall(
|
|
48
|
+
'NostrSignEvent',
|
|
49
|
+
'NostrSignedEvent',
|
|
50
|
+
this.params
|
|
51
|
+
);
|
|
52
|
+
|
|
53
|
+
try {
|
|
54
|
+
const signedEvent = Buffer.from(hexToBytes(message.event)).toString('utf-8');
|
|
55
|
+
const event = JSON.parse(signedEvent);
|
|
56
|
+
return {
|
|
57
|
+
path: serializedPath(this.params.address_n),
|
|
58
|
+
rawTx: message.event,
|
|
59
|
+
event,
|
|
60
|
+
};
|
|
61
|
+
} catch (e) {
|
|
62
|
+
throw ERRORS.TypedError(HardwareErrorCode.CallMethodError, 'Failed to parse signed event', e);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
5
|
+
|
|
6
|
+
import type { NostrSignSchnorr as SignSchnorr } from '@onetokenfe/hd-transport';
|
|
7
|
+
|
|
8
|
+
export default class NostrSignSchnorr extends BaseMethod<SignSchnorr> {
|
|
9
|
+
hasBundle = false;
|
|
10
|
+
|
|
11
|
+
init() {
|
|
12
|
+
this.checkDeviceId = true;
|
|
13
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
14
|
+
|
|
15
|
+
const { payload } = this;
|
|
16
|
+
validateParams(payload, [
|
|
17
|
+
{ name: 'path', required: true },
|
|
18
|
+
{ name: 'hash', required: true, type: 'string' },
|
|
19
|
+
]);
|
|
20
|
+
const addressN = validatePath(payload.path, 5);
|
|
21
|
+
|
|
22
|
+
this.params = {
|
|
23
|
+
address_n: addressN,
|
|
24
|
+
hash: payload.hash,
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
getVersionRange() {
|
|
29
|
+
return {
|
|
30
|
+
model_mini: {
|
|
31
|
+
min: '3.6.0',
|
|
32
|
+
},
|
|
33
|
+
model_touch: {
|
|
34
|
+
min: '4.7.0',
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
async run() {
|
|
40
|
+
const { message } = await this.device.commands.typedCall(
|
|
41
|
+
'NostrSignSchnorr',
|
|
42
|
+
'NostrSignedSchnorr',
|
|
43
|
+
this.params
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
return {
|
|
47
|
+
path: serializedPath(this.params.address_n),
|
|
48
|
+
rawHash: this.params.hash,
|
|
49
|
+
signature: message.signature,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { NostrEvent } from '../../../types/api/nostrSignEvent';
|
|
2
|
+
|
|
3
|
+
export function validateEvent(event: NostrEvent): boolean {
|
|
4
|
+
if (!(event instanceof Object)) return false;
|
|
5
|
+
if (typeof event.kind !== 'number') return false;
|
|
6
|
+
if (typeof event.content !== 'string') return false;
|
|
7
|
+
if (typeof event.created_at !== 'number') return false;
|
|
8
|
+
// ignore pubkey checks because if the pubkey is not set we add it to the event. same for the ID.
|
|
9
|
+
|
|
10
|
+
if (!Array.isArray(event.tags)) return false;
|
|
11
|
+
for (let i = 0; i < event.tags.length; i += 1) {
|
|
12
|
+
const tag = event.tags[i];
|
|
13
|
+
if (!Array.isArray(tag)) return false;
|
|
14
|
+
for (let j = 0; j < tag.length; j += 1) {
|
|
15
|
+
if (typeof tag[j] === 'object') return false;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
return true;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function serializeEvent(event: NostrEvent): string {
|
|
23
|
+
if (!validateEvent(event))
|
|
24
|
+
throw new Error("can't serialize event with wrong or missing properties");
|
|
25
|
+
|
|
26
|
+
// https://github.com/nostr-protocol/nips/blob/master/01.md
|
|
27
|
+
return JSON.stringify([0, event.pubkey, event.created_at, event.kind, event.tags, event.content]);
|
|
28
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
2
|
+
import { BaseMethod } from '../BaseMethod';
|
|
3
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
4
|
+
import { getPolkadotVersionRangeWithBundle, parseNetwork } from './networks';
|
|
5
|
+
|
|
6
|
+
import type { PolkadotGetAddress as HardwarePolkadotGetAddress } from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { PolkadotAddress, PolkadotGetAddressParams } from '../../types';
|
|
8
|
+
|
|
9
|
+
export default class PolkadotGetAddress extends BaseMethod<HardwarePolkadotGetAddress[]> {
|
|
10
|
+
hasBundle = false;
|
|
11
|
+
|
|
12
|
+
init() {
|
|
13
|
+
this.checkDeviceId = true;
|
|
14
|
+
this.allowDeviceMode = [...this.allowDeviceMode];
|
|
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: PolkadotGetAddressParams) => {
|
|
25
|
+
const addressN = validatePath(batch.path, 3);
|
|
26
|
+
|
|
27
|
+
validateParams(batch, [
|
|
28
|
+
{ name: 'path', required: true },
|
|
29
|
+
{ name: 'prefix', required: true },
|
|
30
|
+
{ name: 'network', required: true },
|
|
31
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
32
|
+
]);
|
|
33
|
+
|
|
34
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
35
|
+
const { prefix, network } = batch;
|
|
36
|
+
|
|
37
|
+
this.params.push({
|
|
38
|
+
address_n: addressN,
|
|
39
|
+
prefix,
|
|
40
|
+
network: parseNetwork(network),
|
|
41
|
+
show_display: showOnOneToken,
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
getVersionRange() {
|
|
47
|
+
const networks = this.params.map(param => param.network);
|
|
48
|
+
return getPolkadotVersionRangeWithBundle(networks);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
async run() {
|
|
52
|
+
// TODO: add batch support
|
|
53
|
+
const responses: PolkadotAddress[] = [];
|
|
54
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
55
|
+
const param = this.params[i];
|
|
56
|
+
|
|
57
|
+
const res = await this.device.commands.typedCall('PolkadotGetAddress', 'PolkadotAddress', {
|
|
58
|
+
...param,
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
const { address, public_key } = res.message;
|
|
62
|
+
|
|
63
|
+
const path = serializedPath(param.address_n);
|
|
64
|
+
responses.push({
|
|
65
|
+
path,
|
|
66
|
+
address,
|
|
67
|
+
pub: public_key ?? '',
|
|
68
|
+
publicKey: public_key ?? '',
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
this.postPreviousAddressMessage({
|
|
72
|
+
path,
|
|
73
|
+
address,
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
validateResult(responses, ['address', 'pub'], {
|
|
78
|
+
expectedLength: this.params.length,
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
import { getPolkadotVersionRange, parseNetwork } from './networks';
|
|
6
|
+
|
|
7
|
+
import type { PolkadotSignTransactionParams } from '../../types';
|
|
8
|
+
import type { PolkadotSignTx as HardwarePolkadotSignTx } from '@onetokenfe/hd-transport';
|
|
9
|
+
|
|
10
|
+
export default class PolkadotSignTransaction extends BaseMethod<HardwarePolkadotSignTx> {
|
|
11
|
+
hasBundle = false;
|
|
12
|
+
|
|
13
|
+
init() {
|
|
14
|
+
this.checkDeviceId = true;
|
|
15
|
+
this.allowDeviceMode = [...this.allowDeviceMode];
|
|
16
|
+
|
|
17
|
+
// check payload
|
|
18
|
+
validateParams(this.payload, [
|
|
19
|
+
{ name: 'path', required: true },
|
|
20
|
+
{ name: 'network', required: true },
|
|
21
|
+
{ name: 'prefix' },
|
|
22
|
+
{ name: 'rawTx', type: 'hexString', required: true },
|
|
23
|
+
]);
|
|
24
|
+
|
|
25
|
+
// init params
|
|
26
|
+
const { path, rawTx, network, prefix } = this.payload as PolkadotSignTransactionParams;
|
|
27
|
+
const addressN = validatePath(path, 3);
|
|
28
|
+
|
|
29
|
+
this.params = {
|
|
30
|
+
address_n: addressN,
|
|
31
|
+
network: parseNetwork(network),
|
|
32
|
+
prefix,
|
|
33
|
+
raw_tx: formatAnyHex(rawTx),
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
getVersionRange() {
|
|
38
|
+
return getPolkadotVersionRange(this.params.network);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
async run() {
|
|
42
|
+
const res = await this.device.commands.typedCall('PolkadotSignTx', 'PolkadotSignedTx', {
|
|
43
|
+
...this.params,
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
const { signature } = res.message;
|
|
47
|
+
|
|
48
|
+
return {
|
|
49
|
+
path: serializedPath(this.params.address_n),
|
|
50
|
+
signature,
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { DeviceFirmwareRange } from '../../types';
|
|
2
|
+
|
|
3
|
+
// 100% sure which networks are supported
|
|
4
|
+
enum Networks {
|
|
5
|
+
Polkadot = 'polkadot',
|
|
6
|
+
Westend = 'westend',
|
|
7
|
+
Kusama = 'kusama',
|
|
8
|
+
Astar = 'astar',
|
|
9
|
+
JoyStream = 'joystream',
|
|
10
|
+
Manta = 'manta',
|
|
11
|
+
Hydration = 'hydration',
|
|
12
|
+
Bifrost = 'bifrost',
|
|
13
|
+
BifrostKusama = 'bifrost-ksm',
|
|
14
|
+
PolkadotAssetHub = 'polkadot-assethub',
|
|
15
|
+
KusamaAssetHub = 'kusama-assethub',
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// All polkadot networks are included in no special case
|
|
19
|
+
const baseVersionRange = {
|
|
20
|
+
model_mini: {
|
|
21
|
+
min: '3.0.0',
|
|
22
|
+
},
|
|
23
|
+
model_touch: {
|
|
24
|
+
min: '4.3.0',
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const specialVersionRange: Record<string, DeviceFirmwareRange> = {
|
|
29
|
+
[Networks.JoyStream]: {
|
|
30
|
+
model_mini: {
|
|
31
|
+
min: '3.6.0',
|
|
32
|
+
},
|
|
33
|
+
model_touch: {
|
|
34
|
+
min: '4.7.0',
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
[Networks.Manta]: {
|
|
38
|
+
model_mini: {
|
|
39
|
+
min: '3.7.0',
|
|
40
|
+
},
|
|
41
|
+
model_touch: {
|
|
42
|
+
min: '4.9.0',
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export default Networks;
|
|
48
|
+
|
|
49
|
+
export function getPolkadotVersionRange(network: string) {
|
|
50
|
+
return specialVersionRange[network] ?? baseVersionRange;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function getPolkadotVersionRangeWithBundle(networks: string[]) {
|
|
54
|
+
if (networks.includes(Networks.JoyStream)) {
|
|
55
|
+
return specialVersionRange[Networks.JoyStream];
|
|
56
|
+
}
|
|
57
|
+
if (networks.includes(Networks.Manta)) {
|
|
58
|
+
return specialVersionRange[Networks.Manta];
|
|
59
|
+
}
|
|
60
|
+
return baseVersionRange;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function parseNetwork(network: string) {
|
|
64
|
+
switch (network) {
|
|
65
|
+
case Networks.PolkadotAssetHub:
|
|
66
|
+
return Networks.Polkadot;
|
|
67
|
+
case Networks.KusamaAssetHub:
|
|
68
|
+
return Networks.Kusama;
|
|
69
|
+
default:
|
|
70
|
+
return network;
|
|
71
|
+
}
|
|
72
|
+
}
|