@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,477 @@
|
|
|
1
|
+
import semver from 'semver';
|
|
2
|
+
import { get } from 'lodash';
|
|
3
|
+
import BigNumber from 'bignumber.js';
|
|
4
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
5
|
+
import { Enum_Capability } from '@onetokenfe/hd-transport';
|
|
6
|
+
|
|
7
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
8
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
9
|
+
import { BaseMethod } from '../BaseMethod';
|
|
10
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
11
|
+
import { formatAnyHex, parseChainId, stripHexStartZeroes } from '../helpers/hexUtils';
|
|
12
|
+
import { getDeviceFirmwareVersion, getDeviceType } from '../../utils';
|
|
13
|
+
import { existCapability } from '../../utils/capabilitieUtils';
|
|
14
|
+
import {
|
|
15
|
+
DeviceModelToTypes,
|
|
16
|
+
type EthereumSignTypedDataMessage,
|
|
17
|
+
type EthereumSignTypedDataTypes,
|
|
18
|
+
} from '../../types';
|
|
19
|
+
import TransportManager from '../../data-manager/TransportManager';
|
|
20
|
+
import { signTypedHash as signTypedHashLegacyV1 } from './legacyV1/signTypedHash';
|
|
21
|
+
import { signTypedHash } from './latest/signTypedHash';
|
|
22
|
+
import { signTypedData as signTypedDataLegacyV1 } from './legacyV1/signTypedData';
|
|
23
|
+
import { signTypedData } from './latest/signTypedData';
|
|
24
|
+
import { encodeData, getFieldType, parseArrayType } from '../helpers/typeNameUtils';
|
|
25
|
+
|
|
26
|
+
import type {
|
|
27
|
+
EthereumTypedDataSignature,
|
|
28
|
+
EthereumTypedDataStructAck,
|
|
29
|
+
MessageKey,
|
|
30
|
+
MessageResponse,
|
|
31
|
+
TypedCall,
|
|
32
|
+
} from '@onetokenfe/hd-transport';
|
|
33
|
+
|
|
34
|
+
export type EVMSignTypedDataParams = {
|
|
35
|
+
addressN: number[];
|
|
36
|
+
metamaskV4Compat: boolean;
|
|
37
|
+
data: EthereumSignTypedDataMessage<EthereumSignTypedDataTypes>;
|
|
38
|
+
domainHash?: string;
|
|
39
|
+
messageHash?: string;
|
|
40
|
+
chainId?: number;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
export default class EVMSignTypedData extends BaseMethod<EVMSignTypedDataParams> {
|
|
44
|
+
init() {
|
|
45
|
+
this.checkDeviceId = true;
|
|
46
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
47
|
+
|
|
48
|
+
validateParams(this.payload, [
|
|
49
|
+
{ name: 'path', required: true },
|
|
50
|
+
{ name: 'metamaskV4Compat', type: 'boolean' },
|
|
51
|
+
{ name: 'data', type: 'object' },
|
|
52
|
+
{ name: 'domainHash', type: 'hexString' },
|
|
53
|
+
{ name: 'messageHash', type: 'hexString' },
|
|
54
|
+
{ name: 'chainId', type: 'number' },
|
|
55
|
+
]);
|
|
56
|
+
|
|
57
|
+
const { path, data, metamaskV4Compat, domainHash, messageHash, chainId } = this.payload;
|
|
58
|
+
|
|
59
|
+
const addressN = validatePath(path, 3);
|
|
60
|
+
|
|
61
|
+
this.params = {
|
|
62
|
+
addressN,
|
|
63
|
+
metamaskV4Compat,
|
|
64
|
+
data,
|
|
65
|
+
chainId,
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
if (domainHash) {
|
|
69
|
+
this.params.domainHash = formatAnyHex(domainHash);
|
|
70
|
+
if (messageHash) {
|
|
71
|
+
this.params.messageHash = formatAnyHex(messageHash);
|
|
72
|
+
} else if (!!data && (!data.primaryType || data.primaryType !== 'EIP712Domain')) {
|
|
73
|
+
throw ERRORS.TypedError(
|
|
74
|
+
HardwareErrorCode.CallMethodInvalidParameter,
|
|
75
|
+
'message_hash should only be empty when data.primaryType=EIP712Domain'
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
async handleSignTypedData({
|
|
82
|
+
typedCall,
|
|
83
|
+
signData,
|
|
84
|
+
response,
|
|
85
|
+
supportTrezor,
|
|
86
|
+
}: {
|
|
87
|
+
typedCall: TypedCall;
|
|
88
|
+
signData: EthereumSignTypedDataMessage<EthereumSignTypedDataTypes>;
|
|
89
|
+
response: MessageResponse<MessageKey>;
|
|
90
|
+
supportTrezor: boolean;
|
|
91
|
+
}) {
|
|
92
|
+
const {
|
|
93
|
+
types,
|
|
94
|
+
primaryType,
|
|
95
|
+
domain,
|
|
96
|
+
message,
|
|
97
|
+
}: EthereumSignTypedDataMessage<EthereumSignTypedDataTypes> = signData;
|
|
98
|
+
|
|
99
|
+
while (
|
|
100
|
+
response.type === 'EthereumTypedDataStructRequest' ||
|
|
101
|
+
response.type === 'EthereumTypedDataStructRequestOneToken'
|
|
102
|
+
) {
|
|
103
|
+
// @ts-ignore
|
|
104
|
+
const { name: typeDefinitionName } = response.message;
|
|
105
|
+
const typeDefinition = types[typeDefinitionName];
|
|
106
|
+
if (typeDefinition === undefined) {
|
|
107
|
+
throw ERRORS.TypedError(
|
|
108
|
+
'Runtime',
|
|
109
|
+
`Type ${typeDefinitionName} was not defined in types object`
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
const dataStruckAck: EthereumTypedDataStructAck = {
|
|
114
|
+
members: typeDefinition.map(({ name, type: typeName }) => ({
|
|
115
|
+
name,
|
|
116
|
+
type: getFieldType(typeName, types),
|
|
117
|
+
})),
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
if (supportTrezor) {
|
|
121
|
+
response = await typedCall(
|
|
122
|
+
'EthereumTypedDataStructAck',
|
|
123
|
+
// @ts-ignore
|
|
124
|
+
[
|
|
125
|
+
'EthereumTypedDataStructRequest',
|
|
126
|
+
'EthereumTypedDataValueRequest',
|
|
127
|
+
'EthereumTypedDataSignature',
|
|
128
|
+
],
|
|
129
|
+
dataStruckAck
|
|
130
|
+
);
|
|
131
|
+
} else {
|
|
132
|
+
response = await typedCall(
|
|
133
|
+
'EthereumTypedDataStructAckOneToken',
|
|
134
|
+
// @ts-ignore
|
|
135
|
+
[
|
|
136
|
+
'EthereumTypedDataStructRequestOneToken',
|
|
137
|
+
'EthereumTypedDataValueRequestOneToken',
|
|
138
|
+
'EthereumTypedDataSignatureOneToken',
|
|
139
|
+
],
|
|
140
|
+
dataStruckAck
|
|
141
|
+
);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
while (
|
|
146
|
+
response.type === 'EthereumTypedDataValueRequest' ||
|
|
147
|
+
response.type === 'EthereumTypedDataValueRequestOneToken'
|
|
148
|
+
) {
|
|
149
|
+
// @ts-ignore
|
|
150
|
+
const { member_path } = response.message;
|
|
151
|
+
|
|
152
|
+
let memberData;
|
|
153
|
+
let memberTypeName: string;
|
|
154
|
+
|
|
155
|
+
const [rootIndex, ...nestedMemberPath] = member_path;
|
|
156
|
+
switch (rootIndex) {
|
|
157
|
+
case 0:
|
|
158
|
+
memberData = domain;
|
|
159
|
+
memberTypeName = 'EIP712Domain';
|
|
160
|
+
break;
|
|
161
|
+
case 1:
|
|
162
|
+
memberData = message;
|
|
163
|
+
memberTypeName = primaryType as string;
|
|
164
|
+
break;
|
|
165
|
+
default:
|
|
166
|
+
throw ERRORS.TypedError('Runtime', 'Root index can only be 0 or 1');
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
for (const index of nestedMemberPath) {
|
|
170
|
+
if (Array.isArray(memberData)) {
|
|
171
|
+
memberTypeName = parseArrayType(memberTypeName).entryTypeName;
|
|
172
|
+
memberData = memberData[index];
|
|
173
|
+
} else if (typeof memberData === 'object' && memberData !== null) {
|
|
174
|
+
const memberTypeDefinition = types[memberTypeName][index];
|
|
175
|
+
memberTypeName = memberTypeDefinition.type;
|
|
176
|
+
memberData = memberData[memberTypeDefinition.name];
|
|
177
|
+
} else {
|
|
178
|
+
// TODO
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
let encodedData;
|
|
183
|
+
if (Array.isArray(memberData)) {
|
|
184
|
+
// Sending the length as uint16
|
|
185
|
+
encodedData = encodeData('uint16', memberData.length);
|
|
186
|
+
} else {
|
|
187
|
+
encodedData = encodeData(memberTypeName, memberData);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
if (supportTrezor) {
|
|
191
|
+
response = await typedCall(
|
|
192
|
+
'EthereumTypedDataValueAck',
|
|
193
|
+
// @ts-ignore
|
|
194
|
+
['EthereumTypedDataValueRequest', 'EthereumTypedDataSignature'],
|
|
195
|
+
{
|
|
196
|
+
value: encodedData,
|
|
197
|
+
}
|
|
198
|
+
);
|
|
199
|
+
} else {
|
|
200
|
+
response = await typedCall(
|
|
201
|
+
'EthereumTypedDataValueAckOneToken',
|
|
202
|
+
// @ts-ignore
|
|
203
|
+
['EthereumTypedDataValueRequestOneToken', 'EthereumTypedDataSignatureOneToken'],
|
|
204
|
+
{
|
|
205
|
+
value: encodedData,
|
|
206
|
+
}
|
|
207
|
+
);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
if (response.type === 'EthereumGnosisSafeTxRequest') {
|
|
212
|
+
const { data } = this.params;
|
|
213
|
+
const param = {
|
|
214
|
+
to: data.message.to,
|
|
215
|
+
value: formatAnyHex(new BigNumber(data.message.value).toString(16)),
|
|
216
|
+
data: stripHexStartZeroes(formatAnyHex(data.message.data)),
|
|
217
|
+
operation: parseInt(data.message.operation),
|
|
218
|
+
safeTxGas: formatAnyHex(new BigNumber(data.message.safeTxGas).toString(16)),
|
|
219
|
+
baseGas: formatAnyHex(new BigNumber(data.message.baseGas).toString(16)),
|
|
220
|
+
gasPrice: formatAnyHex(new BigNumber(data.message.gasPrice).toString(16)),
|
|
221
|
+
gasToken: data.message.gasToken,
|
|
222
|
+
refundReceiver: data.message.refundReceiver,
|
|
223
|
+
nonce: formatAnyHex(new BigNumber(data.message.nonce).toString(16)),
|
|
224
|
+
chain_id: parseChainId(data.domain.chainId),
|
|
225
|
+
verifyingContract: data.domain.verifyingContract,
|
|
226
|
+
};
|
|
227
|
+
response = await typedCall(
|
|
228
|
+
'EthereumGnosisSafeTxAck',
|
|
229
|
+
// @ts-ignore
|
|
230
|
+
['EthereumTypedDataSignature', 'EthereumTypedDataSignatureOneToken'],
|
|
231
|
+
param
|
|
232
|
+
);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
if (
|
|
236
|
+
response.type !== 'EthereumTypedDataSignature' &&
|
|
237
|
+
response.type !== 'EthereumTypedDataSignatureOneToken'
|
|
238
|
+
) {
|
|
239
|
+
throw ERRORS.TypedError('Runtime', 'Unexpected response type');
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// @ts-ignore
|
|
243
|
+
const { address, signature }: EthereumTypedDataSignature = response.message;
|
|
244
|
+
return {
|
|
245
|
+
address,
|
|
246
|
+
signature,
|
|
247
|
+
};
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
async signTypedData() {
|
|
251
|
+
const { addressN, data, metamaskV4Compat, chainId } = this.params;
|
|
252
|
+
|
|
253
|
+
let supportTrezor = false;
|
|
254
|
+
let response: MessageResponse<MessageKey>;
|
|
255
|
+
switch (TransportManager.getMessageVersion()) {
|
|
256
|
+
case 'v1':
|
|
257
|
+
supportTrezor = true;
|
|
258
|
+
response = await signTypedDataLegacyV1({
|
|
259
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
260
|
+
addressN,
|
|
261
|
+
data,
|
|
262
|
+
metamaskV4Compat,
|
|
263
|
+
chainId,
|
|
264
|
+
});
|
|
265
|
+
break;
|
|
266
|
+
|
|
267
|
+
case 'latest':
|
|
268
|
+
default:
|
|
269
|
+
supportTrezor = false;
|
|
270
|
+
response = await signTypedData({
|
|
271
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
272
|
+
addressN,
|
|
273
|
+
data,
|
|
274
|
+
metamaskV4Compat,
|
|
275
|
+
chainId,
|
|
276
|
+
});
|
|
277
|
+
break;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
return this.handleSignTypedData({
|
|
281
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
282
|
+
signData: data,
|
|
283
|
+
response,
|
|
284
|
+
supportTrezor,
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
signTypedHash({
|
|
289
|
+
typedCall,
|
|
290
|
+
addressN,
|
|
291
|
+
chainId,
|
|
292
|
+
domainHash,
|
|
293
|
+
messageHash,
|
|
294
|
+
}: {
|
|
295
|
+
typedCall: TypedCall;
|
|
296
|
+
addressN: number[];
|
|
297
|
+
chainId: number | undefined;
|
|
298
|
+
domainHash: string | undefined;
|
|
299
|
+
messageHash: string | undefined;
|
|
300
|
+
}) {
|
|
301
|
+
if (!domainHash) throw ERRORS.TypedError('Runtime', 'domainHash is required');
|
|
302
|
+
|
|
303
|
+
switch (TransportManager.getMessageVersion()) {
|
|
304
|
+
case 'v1':
|
|
305
|
+
return signTypedHashLegacyV1({
|
|
306
|
+
typedCall,
|
|
307
|
+
addressN,
|
|
308
|
+
domainHash,
|
|
309
|
+
messageHash,
|
|
310
|
+
chainId,
|
|
311
|
+
device: this.device,
|
|
312
|
+
});
|
|
313
|
+
|
|
314
|
+
case 'latest':
|
|
315
|
+
default:
|
|
316
|
+
return signTypedHash({
|
|
317
|
+
typedCall,
|
|
318
|
+
addressN,
|
|
319
|
+
domainHash,
|
|
320
|
+
messageHash,
|
|
321
|
+
chainId,
|
|
322
|
+
device: this.device,
|
|
323
|
+
});
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
getVersionRange() {
|
|
328
|
+
return {
|
|
329
|
+
model_mini: {
|
|
330
|
+
min: '2.1.9',
|
|
331
|
+
},
|
|
332
|
+
};
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
hasBiggerData(item: EthereumSignTypedDataMessage<EthereumSignTypedDataTypes>) {
|
|
336
|
+
const data = get(item.message, 'data', undefined) as string | undefined;
|
|
337
|
+
if (!data) return false;
|
|
338
|
+
|
|
339
|
+
let biggerLimit = 1024; // 1k
|
|
340
|
+
|
|
341
|
+
const currentVersion = getDeviceFirmwareVersion(this.device.features).join('.');
|
|
342
|
+
const currentDeviceType = getDeviceType(this.device.features);
|
|
343
|
+
const supportBiggerDataVersion = '4.4.0';
|
|
344
|
+
|
|
345
|
+
const supportBiggerData =
|
|
346
|
+
DeviceModelToTypes.model_classic1s.includes(currentDeviceType) ||
|
|
347
|
+
(DeviceModelToTypes.model_touch.includes(currentDeviceType) &&
|
|
348
|
+
semver.gte(currentVersion, supportBiggerDataVersion));
|
|
349
|
+
|
|
350
|
+
if (supportBiggerData) {
|
|
351
|
+
biggerLimit = 1536; // 1.5k
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
const startIndex = data.startsWith('0x') ? 2 : 0;
|
|
355
|
+
return (data.length - startIndex) / 2 > biggerLimit;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
hasNestedArrays(item: any): boolean {
|
|
359
|
+
if (!item) return false;
|
|
360
|
+
|
|
361
|
+
if (Array.isArray(item)) {
|
|
362
|
+
// item is an array
|
|
363
|
+
for (const element of item) {
|
|
364
|
+
if (Array.isArray(element)) {
|
|
365
|
+
// element is a nested array
|
|
366
|
+
return true;
|
|
367
|
+
}
|
|
368
|
+
if (typeof element === 'object' && element !== null) {
|
|
369
|
+
// element is an object, so check its properties recursively
|
|
370
|
+
if (this.hasNestedArrays(element)) {
|
|
371
|
+
return true;
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
} else if (typeof item === 'object' && item !== null) {
|
|
376
|
+
// item is an object, so check its properties recursively
|
|
377
|
+
// eslint-disable-next-line no-restricted-syntax
|
|
378
|
+
for (const property in item) {
|
|
379
|
+
if (this.hasNestedArrays(item[property])) {
|
|
380
|
+
return true;
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
// no nested arrays found
|
|
385
|
+
return false;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
supportSignTyped() {
|
|
389
|
+
const deviceType = getDeviceType(this.device.features);
|
|
390
|
+
if (DeviceModelToTypes.model_mini.includes(deviceType)) {
|
|
391
|
+
const currentVersion = getDeviceFirmwareVersion(this.device.features).join('.');
|
|
392
|
+
const supportSignTypedVersion = '2.2.0';
|
|
393
|
+
|
|
394
|
+
if (semver.lt(currentVersion, supportSignTypedVersion)) {
|
|
395
|
+
return false;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
return true;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
async run() {
|
|
403
|
+
if (!this.device.features) {
|
|
404
|
+
throw ERRORS.TypedError(
|
|
405
|
+
'Device_InitializeFailed',
|
|
406
|
+
'Device initialization failed. Please try again.'
|
|
407
|
+
);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
const { addressN, chainId } = this.params;
|
|
411
|
+
|
|
412
|
+
// Classic1s / ClassicPure 3.14.0+, supported EthereumSignTypedDataOneToken
|
|
413
|
+
const supportEip712OnClassic = existCapability(
|
|
414
|
+
this.device.features,
|
|
415
|
+
Enum_Capability.Capability_EthereumTypedData
|
|
416
|
+
);
|
|
417
|
+
|
|
418
|
+
// For Classic、Mini device we use EthereumSignTypedData
|
|
419
|
+
const deviceType = getDeviceType(this.device.features);
|
|
420
|
+
if (DeviceModelToTypes.model_mini.includes(deviceType) && !supportEip712OnClassic) {
|
|
421
|
+
validateParams(this.params, [
|
|
422
|
+
{ name: 'domainHash', type: 'hexString', required: true },
|
|
423
|
+
{ name: 'messageHash', type: 'hexString', required: true },
|
|
424
|
+
]);
|
|
425
|
+
|
|
426
|
+
const { domainHash, messageHash } = this.params;
|
|
427
|
+
|
|
428
|
+
let response;
|
|
429
|
+
if (this.supportSignTyped()) {
|
|
430
|
+
response = await this.signTypedHash({
|
|
431
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
432
|
+
addressN,
|
|
433
|
+
domainHash,
|
|
434
|
+
messageHash,
|
|
435
|
+
chainId,
|
|
436
|
+
});
|
|
437
|
+
} else {
|
|
438
|
+
response = await this.device.commands.typedCall(
|
|
439
|
+
'EthereumSignMessageEIP712',
|
|
440
|
+
'EthereumMessageSignature',
|
|
441
|
+
{
|
|
442
|
+
address_n: addressN,
|
|
443
|
+
domain_hash: domainHash ?? '',
|
|
444
|
+
message_hash: messageHash ?? '',
|
|
445
|
+
}
|
|
446
|
+
);
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
return Promise.resolve(response.message);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
// Touch Pro Sign NestedArrays
|
|
453
|
+
if (this.hasNestedArrays(this.params.data) || this.hasBiggerData(this.params.data)) {
|
|
454
|
+
validateParams(this.params, [
|
|
455
|
+
{ name: 'domainHash', type: 'hexString', required: true },
|
|
456
|
+
{ name: 'messageHash', type: 'hexString', required: true },
|
|
457
|
+
]);
|
|
458
|
+
|
|
459
|
+
const { domainHash, messageHash } = this.params;
|
|
460
|
+
|
|
461
|
+
if (!domainHash) throw ERRORS.TypedError('Runtime', 'domainHash is required');
|
|
462
|
+
|
|
463
|
+
const response = await this.signTypedHash({
|
|
464
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
465
|
+
addressN,
|
|
466
|
+
domainHash,
|
|
467
|
+
messageHash,
|
|
468
|
+
chainId,
|
|
469
|
+
});
|
|
470
|
+
|
|
471
|
+
return Promise.resolve(response.message);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
// For Touch、Pro we use EthereumSignTypedData
|
|
475
|
+
return this.signTypedData();
|
|
476
|
+
}
|
|
477
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { BaseMethod } from '../BaseMethod';
|
|
3
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
4
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
5
|
+
import TransportManager from '../../data-manager/TransportManager';
|
|
6
|
+
import verifyMessageLegacyV1 from './legacyV1/verifyMessage';
|
|
7
|
+
import verifyMessage from './latest/verifyMessage';
|
|
8
|
+
|
|
9
|
+
import type { EthereumVerifyMessageOneToken } from '@onetokenfe/hd-transport';
|
|
10
|
+
|
|
11
|
+
export default class EVMSignMessage extends BaseMethod<EthereumVerifyMessageOneToken> {
|
|
12
|
+
init() {
|
|
13
|
+
this.checkDeviceId = true;
|
|
14
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
15
|
+
|
|
16
|
+
validateParams(this.payload, [
|
|
17
|
+
{ name: 'address', type: 'string', required: true },
|
|
18
|
+
{ name: 'messageHex', type: 'hexString', required: true },
|
|
19
|
+
{ name: 'signature', type: 'hexString', required: true },
|
|
20
|
+
{ name: 'chainId', type: 'number' },
|
|
21
|
+
]);
|
|
22
|
+
|
|
23
|
+
const { address, messageHex, signature } = formatAnyHex(this.payload);
|
|
24
|
+
|
|
25
|
+
this.params = {
|
|
26
|
+
address,
|
|
27
|
+
message: messageHex,
|
|
28
|
+
signature,
|
|
29
|
+
chain_id: this.payload.chainId,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
async run() {
|
|
34
|
+
if (TransportManager.getMessageVersion() === 'v1') {
|
|
35
|
+
return verifyMessageLegacyV1({
|
|
36
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
37
|
+
params: this.params,
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
return verifyMessage({
|
|
42
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
43
|
+
params: this.params,
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { EthereumGetAddressOneToken, MessageResponse, TypedCall } from '@onetokenfe/hd-transport';
|
|
2
|
+
|
|
3
|
+
export default async function ({
|
|
4
|
+
typedCall,
|
|
5
|
+
param,
|
|
6
|
+
}: {
|
|
7
|
+
typedCall: TypedCall;
|
|
8
|
+
param: EthereumGetAddressOneToken;
|
|
9
|
+
}): Promise<MessageResponse<'EthereumAddressOneToken'>> {
|
|
10
|
+
return typedCall('EthereumGetAddressOneToken', 'EthereumAddressOneToken', {
|
|
11
|
+
...param,
|
|
12
|
+
});
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
EthereumGetPublicKeyOneToken,
|
|
3
|
+
MessageResponse,
|
|
4
|
+
TypedCall,
|
|
5
|
+
} from '@onetokenfe/hd-transport';
|
|
6
|
+
|
|
7
|
+
export default async function ({
|
|
8
|
+
typedCall,
|
|
9
|
+
param,
|
|
10
|
+
}: {
|
|
11
|
+
typedCall: TypedCall;
|
|
12
|
+
param: EthereumGetPublicKeyOneToken;
|
|
13
|
+
}): Promise<MessageResponse<'EthereumPublicKeyOneToken'>> {
|
|
14
|
+
return typedCall('EthereumGetPublicKeyOneToken', 'EthereumPublicKeyOneToken', {
|
|
15
|
+
...param,
|
|
16
|
+
});
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
EthereumMessageSignature,
|
|
3
|
+
EthereumSignMessageOneToken,
|
|
4
|
+
TypedCall,
|
|
5
|
+
} from '@onetokenfe/hd-transport';
|
|
6
|
+
|
|
7
|
+
export default async function ({
|
|
8
|
+
typedCall,
|
|
9
|
+
params,
|
|
10
|
+
}: {
|
|
11
|
+
typedCall: TypedCall;
|
|
12
|
+
params: EthereumSignMessageOneToken;
|
|
13
|
+
}): Promise<EthereumMessageSignature> {
|
|
14
|
+
const res = await typedCall('EthereumSignMessageOneToken', 'EthereumMessageSignatureOneToken', {
|
|
15
|
+
...params,
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
return Promise.resolve(res.message);
|
|
19
|
+
}
|