@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,126 @@
|
|
|
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
|
+
import { stripHexPrefix } from '../helpers/hexUtils';
|
|
6
|
+
|
|
7
|
+
import type { TypedResponseMessage } from '../../device/DeviceCommands';
|
|
8
|
+
import type { DnxSignature } from '../../types';
|
|
9
|
+
import type { DnxSignTx, TypedCall } from '@onetokenfe/hd-transport';
|
|
10
|
+
|
|
11
|
+
export default class DnxSignTransaction extends BaseMethod<DnxSignTx> {
|
|
12
|
+
hasBundle = false;
|
|
13
|
+
|
|
14
|
+
init() {
|
|
15
|
+
this.checkDeviceId = true;
|
|
16
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
17
|
+
|
|
18
|
+
const { payload } = this;
|
|
19
|
+
// init params
|
|
20
|
+
const addressN = validatePath(payload.path, 3);
|
|
21
|
+
|
|
22
|
+
validateParams(payload, [
|
|
23
|
+
{ name: 'path', required: true },
|
|
24
|
+
{ name: 'inputs', type: 'array', required: true },
|
|
25
|
+
{ name: 'toAddress', type: 'string', required: true },
|
|
26
|
+
{ name: 'amount', required: true },
|
|
27
|
+
{ name: 'fee', required: true },
|
|
28
|
+
{ name: 'paymentIdHex', type: 'string' },
|
|
29
|
+
]);
|
|
30
|
+
|
|
31
|
+
if (payload.paymentIdHex && stripHexPrefix(payload.paymentIdHex).length !== 64) {
|
|
32
|
+
throw new Error('Payment ID must be 32 bytes long');
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
this.params = {
|
|
36
|
+
address_n: addressN,
|
|
37
|
+
inputs_count: payload.inputs.length,
|
|
38
|
+
to_address: payload.toAddress,
|
|
39
|
+
amount: payload.amount,
|
|
40
|
+
fee: payload.fee,
|
|
41
|
+
};
|
|
42
|
+
if (payload.paymentIdHex) {
|
|
43
|
+
this.params.payment_id = stripHexPrefix(payload.paymentIdHex);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
getVersionRange() {
|
|
48
|
+
return {
|
|
49
|
+
classic: {
|
|
50
|
+
min: '3.8.0',
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
async processTxRequest(
|
|
56
|
+
typedCall: TypedCall,
|
|
57
|
+
res: TypedResponseMessage<'DnxInputRequest'>,
|
|
58
|
+
signature: Partial<DnxSignature>
|
|
59
|
+
): Promise<DnxSignature> {
|
|
60
|
+
if (res.type === 'DnxInputRequest') {
|
|
61
|
+
const { inputs } = this.payload;
|
|
62
|
+
const { request_index, tx_key, computed_key_image } = res.message;
|
|
63
|
+
|
|
64
|
+
if (tx_key?.ephemeral_tx_sec_key && tx_key?.ephemeral_tx_pub_key) {
|
|
65
|
+
signature = {
|
|
66
|
+
...signature,
|
|
67
|
+
txKey: {
|
|
68
|
+
ephemeralTxSecKey: tx_key.ephemeral_tx_sec_key,
|
|
69
|
+
ephemeralTxPubKey: tx_key.ephemeral_tx_pub_key,
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (computed_key_image?.key_image) {
|
|
75
|
+
signature = {
|
|
76
|
+
...signature,
|
|
77
|
+
computedKeyImages: [...(signature.computedKeyImages ?? []), computed_key_image.key_image],
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
if (request_index) {
|
|
82
|
+
const input = inputs[request_index - 1];
|
|
83
|
+
|
|
84
|
+
const signRes = await typedCall('DnxInputAck', 'DnxInputRequest', {
|
|
85
|
+
prev_index: input.prevIndex,
|
|
86
|
+
global_index: input.globalIndex,
|
|
87
|
+
tx_pubkey: input.txPubkey,
|
|
88
|
+
prev_out_pubkey: input.prevOutPubkey,
|
|
89
|
+
amount: input.amount,
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
return this.processTxRequest(typedCall, signRes, signature);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
const signRes = await typedCall('DnxRTSigsRequest', 'DnxSignedTx', {});
|
|
96
|
+
|
|
97
|
+
if (
|
|
98
|
+
signature.txKey == null ||
|
|
99
|
+
signature.txKey.ephemeralTxSecKey == null ||
|
|
100
|
+
signature.txKey.ephemeralTxPubKey == null
|
|
101
|
+
) {
|
|
102
|
+
throw new Error('signatures or tx_key missing in response');
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
return {
|
|
106
|
+
path: serializedPath(this.params.address_n),
|
|
107
|
+
txKey: signature.txKey,
|
|
108
|
+
computedKeyImages: signature.computedKeyImages ?? [],
|
|
109
|
+
signatures: signRes.message.signatures,
|
|
110
|
+
outputKeys: signRes.message.output_keys,
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
throw new Error('Unexpected response');
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
async run() {
|
|
118
|
+
const typedCall = this.device.getCommands().typedCall.bind(this.device.getCommands());
|
|
119
|
+
|
|
120
|
+
const res = await this.device.commands.typedCall('DnxSignTx', 'DnxInputRequest', {
|
|
121
|
+
...this.params,
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
return this.processTxRequest(typedCall, res, {});
|
|
125
|
+
}
|
|
126
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
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
|
+
import TransportManager from '../../data-manager/TransportManager';
|
|
6
|
+
import getAddressLegacyV1 from './legacyV1/getAddress';
|
|
7
|
+
import getAddress from './latest/getAddress';
|
|
8
|
+
|
|
9
|
+
import type { EVMAddress, EVMGetAddressParams } from '../../types';
|
|
10
|
+
import type { EthereumGetAddressOneToken } from '@onetokenfe/hd-transport';
|
|
11
|
+
|
|
12
|
+
export default class EvmGetAddress extends BaseMethod<EthereumGetAddressOneToken[]> {
|
|
13
|
+
hasBundle = false;
|
|
14
|
+
|
|
15
|
+
init() {
|
|
16
|
+
this.checkDeviceId = true;
|
|
17
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
18
|
+
|
|
19
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
20
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
21
|
+
|
|
22
|
+
// check payload
|
|
23
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
24
|
+
|
|
25
|
+
// init params
|
|
26
|
+
this.params = [];
|
|
27
|
+
payload.bundle.forEach((batch: EVMGetAddressParams) => {
|
|
28
|
+
const addressN = validatePath(batch.path, 3);
|
|
29
|
+
|
|
30
|
+
validateParams(batch, [
|
|
31
|
+
{ name: 'path', required: true },
|
|
32
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
33
|
+
{ name: 'chainId', type: 'number' },
|
|
34
|
+
]);
|
|
35
|
+
|
|
36
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
37
|
+
|
|
38
|
+
this.params.push({
|
|
39
|
+
address_n: addressN,
|
|
40
|
+
show_display: showOnOneToken,
|
|
41
|
+
chain_id: batch.chainId,
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
async getEvmAddress(param: EthereumGetAddressOneToken) {
|
|
47
|
+
if (TransportManager.getMessageVersion() === 'v1') {
|
|
48
|
+
return getAddressLegacyV1({
|
|
49
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
50
|
+
param,
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
return getAddress({
|
|
55
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
56
|
+
param,
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
async run() {
|
|
61
|
+
const responses: EVMAddress[] = [];
|
|
62
|
+
|
|
63
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
64
|
+
const param = this.params[i];
|
|
65
|
+
|
|
66
|
+
const res = await this.getEvmAddress(param);
|
|
67
|
+
|
|
68
|
+
const { address } = res.message;
|
|
69
|
+
|
|
70
|
+
if (!address) {
|
|
71
|
+
throw new Error('EthereumGetAddressOneToken: address is undefined');
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
const result = {
|
|
75
|
+
path: serializedPath(param.address_n),
|
|
76
|
+
address,
|
|
77
|
+
};
|
|
78
|
+
responses.push(result);
|
|
79
|
+
this.postPreviousAddressMessage(result);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
validateResult(responses, ['address'], {
|
|
83
|
+
expectedLength: this.params.length,
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
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
|
+
import { supportBatchPublicKey } from '../../utils/deviceFeaturesUtils';
|
|
6
|
+
import TransportManager from '../../data-manager/TransportManager';
|
|
7
|
+
import getPublicKey from './latest/getPublicKey';
|
|
8
|
+
import getPublicKeyLegacyV1 from './legacyV1/getPublicKey';
|
|
9
|
+
import { batchGetPublickeys } from '../helpers/batchGetPublickeys';
|
|
10
|
+
|
|
11
|
+
import type { EVMGetPublicKeyParams, EVMPublicKey } from '../../types';
|
|
12
|
+
import type { EthereumGetPublicKey, EthereumGetPublicKeyOneToken } from '@onetokenfe/hd-transport';
|
|
13
|
+
|
|
14
|
+
export default class EVMGetPublicKey extends BaseMethod<EthereumGetPublicKeyOneToken[]> {
|
|
15
|
+
hasBundle = false;
|
|
16
|
+
|
|
17
|
+
confirmShowOnOneToken = false;
|
|
18
|
+
|
|
19
|
+
useBatch = false;
|
|
20
|
+
|
|
21
|
+
init() {
|
|
22
|
+
this.checkDeviceId = true;
|
|
23
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
24
|
+
|
|
25
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
26
|
+
|
|
27
|
+
this.confirmShowOnOneToken = this.payload?.bundle?.some(
|
|
28
|
+
(item: EVMGetPublicKeyParams) => !!item.showOnOneToken
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
this.useBatch = !this.confirmShowOnOneToken && this.hasBundle && this.payload.useBatch;
|
|
32
|
+
|
|
33
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
34
|
+
|
|
35
|
+
// check payload
|
|
36
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
37
|
+
|
|
38
|
+
// init params
|
|
39
|
+
this.params = [];
|
|
40
|
+
payload.bundle.forEach((batch: EVMGetPublicKeyParams) => {
|
|
41
|
+
const addressN = validatePath(batch.path, 3);
|
|
42
|
+
|
|
43
|
+
validateParams(batch, [
|
|
44
|
+
{ name: 'path', required: true },
|
|
45
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
46
|
+
{ name: 'chainId', type: 'number' },
|
|
47
|
+
]);
|
|
48
|
+
|
|
49
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
50
|
+
|
|
51
|
+
this.params.push({
|
|
52
|
+
address_n: addressN,
|
|
53
|
+
show_display: showOnOneToken,
|
|
54
|
+
chain_id: batch.chainId,
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
getEvmPublicKey(param: EthereumGetPublicKey) {
|
|
60
|
+
if (TransportManager.getMessageVersion() === 'v1') {
|
|
61
|
+
return getPublicKeyLegacyV1({
|
|
62
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
63
|
+
param,
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
return getPublicKey({
|
|
68
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
69
|
+
param,
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
async run() {
|
|
74
|
+
const responses: EVMPublicKey[] = [];
|
|
75
|
+
|
|
76
|
+
if (this.useBatch && supportBatchPublicKey(this.device?.features)) {
|
|
77
|
+
try {
|
|
78
|
+
const res = await batchGetPublickeys(this.device, this.params, 'secp256k1', 60, {
|
|
79
|
+
includeNode: false,
|
|
80
|
+
ignoreCoinType: true,
|
|
81
|
+
});
|
|
82
|
+
const result = res.public_keys.map((publicKey: string, index: number) => ({
|
|
83
|
+
path: serializedPath((this.params as unknown as any[])[index].address_n),
|
|
84
|
+
pub: publicKey,
|
|
85
|
+
publicKey,
|
|
86
|
+
}));
|
|
87
|
+
|
|
88
|
+
validateResult(result, ['pub'], {
|
|
89
|
+
expectedLength: this.params.length,
|
|
90
|
+
});
|
|
91
|
+
return await Promise.resolve(result);
|
|
92
|
+
} catch (e) {
|
|
93
|
+
// ignore error, fallback to single get public key
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
98
|
+
const param = this.params[i];
|
|
99
|
+
|
|
100
|
+
const res = await this.getEvmPublicKey(param);
|
|
101
|
+
|
|
102
|
+
responses.push({
|
|
103
|
+
path: serializedPath(param.address_n),
|
|
104
|
+
pub: res.message.node.public_key,
|
|
105
|
+
publicKey: res.message.node.public_key,
|
|
106
|
+
...res.message,
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
validateResult(responses, ['pub'], {
|
|
111
|
+
expectedLength: this.params.length,
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
5
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
6
|
+
import TransportManager from '../../data-manager/TransportManager';
|
|
7
|
+
import signMessage from './latest/signMessage';
|
|
8
|
+
import signMessageLegacyV1 from './legacyV1/signMessage';
|
|
9
|
+
|
|
10
|
+
import type { EthereumSignMessageOneToken } from '@onetokenfe/hd-transport';
|
|
11
|
+
|
|
12
|
+
export default class EVMSignMessage extends BaseMethod<EthereumSignMessageOneToken> {
|
|
13
|
+
init() {
|
|
14
|
+
this.checkDeviceId = true;
|
|
15
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
16
|
+
|
|
17
|
+
// check payload
|
|
18
|
+
validateParams(this.payload, [
|
|
19
|
+
{ name: 'path', required: true },
|
|
20
|
+
{ name: 'messageHex', type: 'hexString', required: true },
|
|
21
|
+
{ name: 'chainId', type: 'number' },
|
|
22
|
+
]);
|
|
23
|
+
|
|
24
|
+
const { path, messageHex, chainId } = this.payload;
|
|
25
|
+
|
|
26
|
+
const addressN = validatePath(path, 3);
|
|
27
|
+
|
|
28
|
+
// init params
|
|
29
|
+
this.params = {
|
|
30
|
+
address_n: addressN,
|
|
31
|
+
message: formatAnyHex(messageHex),
|
|
32
|
+
chain_id: chainId,
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
async run() {
|
|
37
|
+
if (TransportManager.getMessageVersion() === 'v1') {
|
|
38
|
+
return signMessageLegacyV1({
|
|
39
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
40
|
+
params: this.params,
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
return signMessage({
|
|
45
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
46
|
+
params: this.params,
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
5
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
6
|
+
|
|
7
|
+
import type { EthereumSignMessageEIP712 } from '@onetokenfe/hd-transport';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Use EVMSignTypedData instead.
|
|
11
|
+
*/
|
|
12
|
+
export default class EVMSignMessageEIP712 extends BaseMethod<EthereumSignMessageEIP712> {
|
|
13
|
+
init() {
|
|
14
|
+
this.checkDeviceId = true;
|
|
15
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
16
|
+
|
|
17
|
+
validateParams(this.payload, [
|
|
18
|
+
{ name: 'path', required: true },
|
|
19
|
+
{ name: 'domainHash', type: 'hexString', required: true },
|
|
20
|
+
{ name: 'messageHash', type: 'hexString', required: true },
|
|
21
|
+
]);
|
|
22
|
+
|
|
23
|
+
const { path, domainHash, messageHash } = this.payload;
|
|
24
|
+
|
|
25
|
+
const addressN = validatePath(path, 3);
|
|
26
|
+
|
|
27
|
+
this.params = {
|
|
28
|
+
address_n: addressN,
|
|
29
|
+
domain_hash: formatAnyHex(domainHash),
|
|
30
|
+
message_hash: formatAnyHex(messageHash),
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
getVersionRange() {
|
|
35
|
+
return {
|
|
36
|
+
model_mini: {
|
|
37
|
+
min: '2.1.9',
|
|
38
|
+
},
|
|
39
|
+
model_classic1s: {
|
|
40
|
+
min: '3.14.0',
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
async run() {
|
|
46
|
+
const res = await this.device.commands.typedCall(
|
|
47
|
+
'EthereumSignMessageEIP712',
|
|
48
|
+
'EthereumMessageSignature',
|
|
49
|
+
{
|
|
50
|
+
...this.params,
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
|
|
54
|
+
return Promise.resolve(res.message);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { ERRORS } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
5
|
+
import { BaseMethod } from '../BaseMethod';
|
|
6
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
7
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
8
|
+
import TransportManager from '../../data-manager/TransportManager';
|
|
9
|
+
import { signTransaction } from './latest/signTransaction';
|
|
10
|
+
import { signTransaction as signTransactionLegacyV1 } from './legacyV1/signTransaction';
|
|
11
|
+
|
|
12
|
+
import type {
|
|
13
|
+
EVMSignTransactionParams,
|
|
14
|
+
EVMTransaction,
|
|
15
|
+
EVMTransactionEIP1559,
|
|
16
|
+
EVMTransactionEIP7702,
|
|
17
|
+
} from '../../types';
|
|
18
|
+
import type { SchemaParam } from '../helpers/paramsValidator';
|
|
19
|
+
|
|
20
|
+
export default class EVMSignTransaction extends BaseMethod {
|
|
21
|
+
addressN: number[] = [];
|
|
22
|
+
|
|
23
|
+
isEIP1559 = false;
|
|
24
|
+
|
|
25
|
+
isEIP7702 = false;
|
|
26
|
+
|
|
27
|
+
formattedTx: EVMTransaction | EVMTransactionEIP1559 | EVMTransactionEIP7702 | undefined;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Check if transaction has EIP7702 authorization list
|
|
31
|
+
* Following ethereumjs pattern for type detection
|
|
32
|
+
*/
|
|
33
|
+
private hasEIP7702Features(tx: EVMSignTransactionParams['transaction']): boolean {
|
|
34
|
+
const authList = (tx as EVMTransactionEIP7702).authorizationList;
|
|
35
|
+
return !!(authList && Array.isArray(authList) && authList.length > 0);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Check if transaction has EIP1559 fee market features
|
|
40
|
+
* Both maxFeePerGas and maxPriorityFeePerGas must be present
|
|
41
|
+
*/
|
|
42
|
+
private hasEIP1559Features(tx: EVMSignTransactionParams['transaction']): boolean {
|
|
43
|
+
return !!(tx.maxFeePerGas && tx.maxPriorityFeePerGas);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
init() {
|
|
47
|
+
this.checkDeviceId = true;
|
|
48
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
49
|
+
|
|
50
|
+
validateParams(this.payload, [
|
|
51
|
+
{ name: 'path', required: true },
|
|
52
|
+
{ name: 'transaction', type: 'object', required: true },
|
|
53
|
+
]);
|
|
54
|
+
const { path, transaction } = this.payload;
|
|
55
|
+
this.addressN = validatePath(path, 3);
|
|
56
|
+
|
|
57
|
+
const tx: EVMSignTransactionParams['transaction'] = transaction;
|
|
58
|
+
|
|
59
|
+
// Transaction type detection based on distinctive features
|
|
60
|
+
// Following ethereumjs pattern: check most specific features first
|
|
61
|
+
|
|
62
|
+
// EIP7702: Has authorizationList (extends EIP1559)
|
|
63
|
+
this.isEIP7702 = this.hasEIP7702Features(tx);
|
|
64
|
+
|
|
65
|
+
// EIP1559: Has EIP1559 fee fields but no authorizationList (extends EIP2930)
|
|
66
|
+
this.isEIP1559 = this.hasEIP1559Features(tx) && !this.isEIP7702;
|
|
67
|
+
|
|
68
|
+
// check if transaction is valid
|
|
69
|
+
const schema: SchemaParam[] = [
|
|
70
|
+
{ name: 'to', type: 'hexString', required: true },
|
|
71
|
+
{ name: 'value', type: 'hexString', required: true },
|
|
72
|
+
{ name: 'gasLimit', type: 'hexString', required: true },
|
|
73
|
+
{ name: 'nonce', type: 'hexString', required: true },
|
|
74
|
+
{ name: 'chainId', type: 'number', required: true },
|
|
75
|
+
{ name: 'data', type: 'hexString' },
|
|
76
|
+
];
|
|
77
|
+
if (this.isEIP7702) {
|
|
78
|
+
schema.push({ name: 'maxFeePerGas', type: 'hexString', required: true });
|
|
79
|
+
schema.push({ name: 'maxPriorityFeePerGas', type: 'hexString', required: true });
|
|
80
|
+
schema.push({ name: 'authorizationList', type: 'array', required: true });
|
|
81
|
+
} else if (this.isEIP1559) {
|
|
82
|
+
schema.push({ name: 'maxFeePerGas', type: 'hexString', required: true });
|
|
83
|
+
schema.push({ name: 'maxPriorityFeePerGas', type: 'hexString', required: true });
|
|
84
|
+
} else {
|
|
85
|
+
schema.push({ name: 'gasPrice', type: 'hexString', required: true });
|
|
86
|
+
schema.push({ name: 'txType', type: 'number' });
|
|
87
|
+
}
|
|
88
|
+
validateParams(tx, schema);
|
|
89
|
+
|
|
90
|
+
this.formattedTx = formatAnyHex(tx);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
getVersionRange() {
|
|
94
|
+
if (this.isEIP7702) {
|
|
95
|
+
return {
|
|
96
|
+
model_classic1s: {
|
|
97
|
+
min: '3.13.0',
|
|
98
|
+
},
|
|
99
|
+
pro: {
|
|
100
|
+
min: '4.16.0',
|
|
101
|
+
},
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
if (this.isEIP1559) {
|
|
105
|
+
return {
|
|
106
|
+
model_mini: {
|
|
107
|
+
min: '2.1.11',
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
return {
|
|
112
|
+
model_mini: {
|
|
113
|
+
min: '1.0.0',
|
|
114
|
+
},
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
async run() {
|
|
119
|
+
const { addressN, isEIP1559, isEIP7702, formattedTx } = this;
|
|
120
|
+
|
|
121
|
+
if (formattedTx == null) throw ERRORS.TypedError('Runtime', 'formattedTx is not set');
|
|
122
|
+
|
|
123
|
+
if (TransportManager.getMessageVersion() === 'v1') {
|
|
124
|
+
return signTransactionLegacyV1({
|
|
125
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
126
|
+
addressN,
|
|
127
|
+
tx: formattedTx,
|
|
128
|
+
isEIP1559,
|
|
129
|
+
isEIP7702,
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
return signTransaction({
|
|
134
|
+
typedCall: this.device.commands.typedCall.bind(this.device.commands),
|
|
135
|
+
addressN,
|
|
136
|
+
tx: formattedTx,
|
|
137
|
+
isEIP1559,
|
|
138
|
+
isEIP7702,
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
}
|