@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,251 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } 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
|
+
|
|
8
|
+
import type {
|
|
9
|
+
NEMAggregateModification,
|
|
10
|
+
NEMImportanceTransfer,
|
|
11
|
+
NEMMosaicCreation,
|
|
12
|
+
NEMMosaicDefinition,
|
|
13
|
+
NEMMosaicSupplyChange,
|
|
14
|
+
NEMProvisionNamespace,
|
|
15
|
+
NEMSignTx,
|
|
16
|
+
NEMTransactionCommon,
|
|
17
|
+
NEMTransfer,
|
|
18
|
+
} from '@onetokenfe/hd-transport';
|
|
19
|
+
import type {
|
|
20
|
+
NEMAggregateModificationTransaction,
|
|
21
|
+
NEMImportanceTransaction,
|
|
22
|
+
NEMMosaicCreationTransaction,
|
|
23
|
+
NEMProvisionNamespaceTransaction,
|
|
24
|
+
NEMSupplyChangeTransaction,
|
|
25
|
+
NEMTransaction,
|
|
26
|
+
NEMTransferTransaction,
|
|
27
|
+
} from '../../types';
|
|
28
|
+
|
|
29
|
+
const NEM_TRANSFER = 0x0101;
|
|
30
|
+
const NEM_COSIGNING = 0x0102;
|
|
31
|
+
const NEM_IMPORTANCE_TRANSFER = 0x0801;
|
|
32
|
+
const NEM_AGGREGATE_MODIFICATION = 0x1001;
|
|
33
|
+
const NEM_MULTISIG_SIGNATURE = 0x1002;
|
|
34
|
+
const NEM_MULTISIG = 0x1004;
|
|
35
|
+
const NEM_PROVISION_NAMESPACE = 0x2001;
|
|
36
|
+
const NEM_MOSAIC_CREATION = 0x4001;
|
|
37
|
+
const NEM_SUPPLY_CHANGE = 0x4002;
|
|
38
|
+
|
|
39
|
+
export default class NEMSignTransaction extends BaseMethod<NEMSignTx> {
|
|
40
|
+
NEM_MOSAIC_LEVY_TYPES: Record<number, string> = {
|
|
41
|
+
1: 'MosaicLevy_Absolute',
|
|
42
|
+
2: 'MosaicLevy_Percentile',
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
NEM_SUPPLY_CHANGE_TYPES: Record<number, string> = {
|
|
46
|
+
1: 'SupplyChange_Increase',
|
|
47
|
+
2: 'SupplyChange_Decrease',
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
NEM_AGGREGATE_MODIFICATION_TYPES: Record<number, string> = {
|
|
51
|
+
1: 'CosignatoryModification_Add',
|
|
52
|
+
2: 'CosignatoryModification_Delete',
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
NEM_IMPORTANCE_TRANSFER_MODES: Record<number, string> = {
|
|
56
|
+
1: 'ImportanceTransfer_Activate',
|
|
57
|
+
2: 'ImportanceTransfer_Deactivate',
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
getCommon = (tx: NEMTransaction, address_n?: number[]): NEMTransactionCommon => ({
|
|
61
|
+
address_n,
|
|
62
|
+
// eslint-disable-next-line no-bitwise
|
|
63
|
+
network: (tx.version >> 24) & 0xff,
|
|
64
|
+
timestamp: tx.timeStamp,
|
|
65
|
+
fee: tx.fee,
|
|
66
|
+
deadline: tx.deadline ?? 0,
|
|
67
|
+
signer: address_n ? undefined : tx.signer,
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
transferMessage = (tx: NEMTransferTransaction): NEMTransfer => {
|
|
71
|
+
const mosaics = tx.mosaics
|
|
72
|
+
? tx.mosaics.map(mosaic => ({
|
|
73
|
+
namespace: mosaic.mosaicId.namespaceId,
|
|
74
|
+
mosaic: mosaic.mosaicId.name,
|
|
75
|
+
quantity: mosaic.quantity,
|
|
76
|
+
}))
|
|
77
|
+
: undefined;
|
|
78
|
+
|
|
79
|
+
return {
|
|
80
|
+
recipient: tx.recipient,
|
|
81
|
+
amount: tx.amount,
|
|
82
|
+
payload: tx.message ? tx.message.payload : undefined,
|
|
83
|
+
public_key: tx.message && tx.message.type === 0x02 ? tx.message.publicKey : undefined,
|
|
84
|
+
mosaics,
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
importanceTransferMessage = (tx: NEMImportanceTransaction): NEMImportanceTransfer => ({
|
|
89
|
+
// @ts-expect-error
|
|
90
|
+
mode: this.NEM_IMPORTANCE_TRANSFER_MODES[tx.importanceTransfer.mode],
|
|
91
|
+
public_key: tx.importanceTransfer.publicKey,
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
aggregateModificationMessage = (
|
|
95
|
+
tx: NEMAggregateModificationTransaction
|
|
96
|
+
): NEMAggregateModification => {
|
|
97
|
+
const modifications = tx.modifications
|
|
98
|
+
? tx.modifications.map(modification => ({
|
|
99
|
+
type: this.NEM_AGGREGATE_MODIFICATION_TYPES[modification.modificationType],
|
|
100
|
+
public_key: modification.cosignatoryAccount,
|
|
101
|
+
}))
|
|
102
|
+
: undefined;
|
|
103
|
+
|
|
104
|
+
return {
|
|
105
|
+
// @ts-expect-error
|
|
106
|
+
modifications,
|
|
107
|
+
relative_change: tx.minCosignatories.relativeChange,
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
provisionNamespaceMessage = (tx: NEMProvisionNamespaceTransaction): NEMProvisionNamespace => ({
|
|
112
|
+
namespace: tx.newPart ?? '',
|
|
113
|
+
parent: tx.parent || undefined,
|
|
114
|
+
sink: tx.rentalFeeSink ?? '',
|
|
115
|
+
fee: tx.rentalFee ?? 0,
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
mosaicCreationMessage = (tx: NEMMosaicCreationTransaction): NEMMosaicCreation => {
|
|
119
|
+
const { levy } = tx.mosaicDefinition;
|
|
120
|
+
|
|
121
|
+
const definition: NEMMosaicDefinition = {
|
|
122
|
+
namespace: tx.mosaicDefinition.id.namespaceId,
|
|
123
|
+
mosaic: tx.mosaicDefinition.id.name,
|
|
124
|
+
// @ts-expect-error
|
|
125
|
+
levy: levy && levy.type ? this.NEM_MOSAIC_LEVY_TYPES[levy.type] : undefined,
|
|
126
|
+
fee: levy && levy.fee,
|
|
127
|
+
levy_address: levy && levy.recipient,
|
|
128
|
+
levy_namespace: levy && levy.mosaicId && levy.mosaicId.namespaceId,
|
|
129
|
+
levy_mosaic: levy && levy.mosaicId && levy.mosaicId.name,
|
|
130
|
+
description: tx.mosaicDefinition.description,
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
const { properties } = tx.mosaicDefinition;
|
|
134
|
+
if (Array.isArray(properties)) {
|
|
135
|
+
properties.forEach(property => {
|
|
136
|
+
const { name, value } = property;
|
|
137
|
+
switch (name) {
|
|
138
|
+
case 'divisibility':
|
|
139
|
+
definition.divisibility = parseInt(value);
|
|
140
|
+
break;
|
|
141
|
+
|
|
142
|
+
case 'initialSupply':
|
|
143
|
+
definition.supply = parseInt(value);
|
|
144
|
+
break;
|
|
145
|
+
|
|
146
|
+
case 'supplyMutable':
|
|
147
|
+
definition.mutable_supply = value === 'true';
|
|
148
|
+
break;
|
|
149
|
+
|
|
150
|
+
case 'transferable':
|
|
151
|
+
definition.transferable = value === 'true';
|
|
152
|
+
break;
|
|
153
|
+
default:
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
return {
|
|
159
|
+
definition,
|
|
160
|
+
sink: tx.creationFeeSink ?? '',
|
|
161
|
+
fee: tx.creationFee ?? 0,
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
supplyChangeMessage = (tx: NEMSupplyChangeTransaction): NEMMosaicSupplyChange => ({
|
|
166
|
+
namespace: tx.mosaicId.namespaceId,
|
|
167
|
+
mosaic: tx.mosaicId.name,
|
|
168
|
+
// @ts-expect-error
|
|
169
|
+
type: this.NEM_SUPPLY_CHANGE_TYPES[tx.supplyType],
|
|
170
|
+
delta: tx.delta ?? 0,
|
|
171
|
+
});
|
|
172
|
+
|
|
173
|
+
parseTx = (tx: NEMTransaction, address_n: number[]) => {
|
|
174
|
+
let transaction = tx;
|
|
175
|
+
const message: NEMSignTx = {
|
|
176
|
+
transaction: this.getCommon(tx, address_n),
|
|
177
|
+
transfer: undefined,
|
|
178
|
+
importance_transfer: undefined,
|
|
179
|
+
aggregate_modification: undefined,
|
|
180
|
+
provision_namespace: undefined,
|
|
181
|
+
mosaic_creation: undefined,
|
|
182
|
+
supply_change: undefined,
|
|
183
|
+
};
|
|
184
|
+
|
|
185
|
+
if (
|
|
186
|
+
tx.type === NEM_COSIGNING ||
|
|
187
|
+
tx.type === NEM_MULTISIG ||
|
|
188
|
+
tx.type === NEM_MULTISIG_SIGNATURE
|
|
189
|
+
) {
|
|
190
|
+
message.cosigning = tx.type === NEM_COSIGNING || tx.type === NEM_MULTISIG_SIGNATURE;
|
|
191
|
+
transaction = tx.otherTrans;
|
|
192
|
+
message.multisig = this.getCommon(transaction);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
switch (transaction.type) {
|
|
196
|
+
case NEM_TRANSFER:
|
|
197
|
+
message.transfer = this.transferMessage(transaction);
|
|
198
|
+
break;
|
|
199
|
+
|
|
200
|
+
case NEM_IMPORTANCE_TRANSFER:
|
|
201
|
+
message.importance_transfer = this.importanceTransferMessage(transaction);
|
|
202
|
+
break;
|
|
203
|
+
|
|
204
|
+
case NEM_AGGREGATE_MODIFICATION:
|
|
205
|
+
message.aggregate_modification = this.aggregateModificationMessage(transaction);
|
|
206
|
+
break;
|
|
207
|
+
|
|
208
|
+
case NEM_PROVISION_NAMESPACE:
|
|
209
|
+
message.provision_namespace = this.provisionNamespaceMessage(transaction);
|
|
210
|
+
break;
|
|
211
|
+
|
|
212
|
+
case NEM_MOSAIC_CREATION:
|
|
213
|
+
message.mosaic_creation = this.mosaicCreationMessage(transaction);
|
|
214
|
+
break;
|
|
215
|
+
|
|
216
|
+
case NEM_SUPPLY_CHANGE:
|
|
217
|
+
message.supply_change = this.supplyChangeMessage(transaction);
|
|
218
|
+
break;
|
|
219
|
+
|
|
220
|
+
default:
|
|
221
|
+
throw ERRORS.TypedError(
|
|
222
|
+
HardwareErrorCode.CallMethodInvalidParameter,
|
|
223
|
+
'Unknown transaction type'
|
|
224
|
+
);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
return message;
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
init() {
|
|
231
|
+
this.checkDeviceId = true;
|
|
232
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
233
|
+
|
|
234
|
+
validateParams(this.payload, [
|
|
235
|
+
{ name: 'path', required: true },
|
|
236
|
+
{ name: 'transaction', type: 'object', required: true },
|
|
237
|
+
]);
|
|
238
|
+
const { path, transaction } = this.payload;
|
|
239
|
+
const addressN = validatePath(path, 3);
|
|
240
|
+
|
|
241
|
+
this.params = this.parseTx(transaction, addressN);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
async run() {
|
|
245
|
+
const res = await this.device.commands.typedCall('NEMSignTx', 'NEMSignedTx', {
|
|
246
|
+
...this.params,
|
|
247
|
+
});
|
|
248
|
+
|
|
249
|
+
return Promise.resolve(res);
|
|
250
|
+
}
|
|
251
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { BaseMethod } from '../BaseMethod';
|
|
2
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
4
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
5
|
+
|
|
6
|
+
import type { NeoGetAddress as HardwareNeoGetAddress } from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { NeoAddress, NeoGetAddressParams } from '../../types/api/neoGetAddress';
|
|
8
|
+
|
|
9
|
+
export default class NeoGetAddress extends BaseMethod<HardwareNeoGetAddress[]> {
|
|
10
|
+
hasBundle = false;
|
|
11
|
+
|
|
12
|
+
init() {
|
|
13
|
+
this.checkDeviceId = true;
|
|
14
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
15
|
+
this.strictCheckDeviceSupport = true;
|
|
16
|
+
|
|
17
|
+
this.hasBundle = !!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
|
+
payload.bundle.forEach((batch: NeoGetAddressParams) => {
|
|
24
|
+
const addressN = validatePath(batch.path, 3);
|
|
25
|
+
|
|
26
|
+
validateParams(batch, [
|
|
27
|
+
{ name: 'path', required: true },
|
|
28
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
29
|
+
]);
|
|
30
|
+
|
|
31
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
32
|
+
|
|
33
|
+
this.params.push({
|
|
34
|
+
address_n: addressN,
|
|
35
|
+
show_display: showOnOneToken,
|
|
36
|
+
});
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
getVersionRange() {
|
|
41
|
+
return {
|
|
42
|
+
pro: {
|
|
43
|
+
min: '4.12.0',
|
|
44
|
+
},
|
|
45
|
+
model_classic1s: {
|
|
46
|
+
min: '3.11.0',
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
async run() {
|
|
52
|
+
const responses: NeoAddress[] = [];
|
|
53
|
+
|
|
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('NeoGetAddress', 'NeoAddress', {
|
|
58
|
+
...param,
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
const path = serializedPath(param.address_n);
|
|
62
|
+
responses.push({
|
|
63
|
+
path,
|
|
64
|
+
address: res.message.address ?? '',
|
|
65
|
+
pub: res.message.public_key ?? '',
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
this.postPreviousAddressMessage({
|
|
69
|
+
address: res.message.address,
|
|
70
|
+
path,
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
validateResult(responses, ['address'], {
|
|
75
|
+
expectedLength: this.params.length,
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
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 { NeoSignTx } from '@onetokenfe/hd-transport';
|
|
8
|
+
|
|
9
|
+
export default class NeoSignTransaction extends BaseMethod<NeoSignTx> {
|
|
10
|
+
init() {
|
|
11
|
+
this.checkDeviceId = true;
|
|
12
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
13
|
+
this.strictCheckDeviceSupport = true;
|
|
14
|
+
|
|
15
|
+
validateParams(this.payload, [
|
|
16
|
+
{ name: 'path', required: true },
|
|
17
|
+
{ name: 'rawTx', type: 'hexString', required: true },
|
|
18
|
+
{ name: 'magicNumber', type: 'number', required: true },
|
|
19
|
+
]);
|
|
20
|
+
|
|
21
|
+
const { path, rawTx, magicNumber } = this.payload;
|
|
22
|
+
const addressN = validatePath(path, 3);
|
|
23
|
+
|
|
24
|
+
this.params = {
|
|
25
|
+
address_n: addressN,
|
|
26
|
+
raw_tx: formatAnyHex(rawTx),
|
|
27
|
+
network_magic: magicNumber,
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
getVersionRange() {
|
|
32
|
+
return {
|
|
33
|
+
pro: {
|
|
34
|
+
min: '4.12.0',
|
|
35
|
+
},
|
|
36
|
+
model_classic1s: {
|
|
37
|
+
min: '3.11.0',
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
async run() {
|
|
43
|
+
const typedCall = this.device.getCommands().typedCall.bind(this.device.getCommands());
|
|
44
|
+
this.params = {
|
|
45
|
+
address_n: this.params.address_n,
|
|
46
|
+
raw_tx: this.params.raw_tx,
|
|
47
|
+
network_magic: this.params.network_magic,
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
const res = await typedCall('NeoSignTx', ['NeoSignedTx'], {
|
|
51
|
+
...this.params,
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
return {
|
|
55
|
+
signature: res.message.signature,
|
|
56
|
+
publicKey: res.message.public_key,
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
3
|
+
import { BaseMethod } from '../BaseMethod';
|
|
4
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
5
|
+
|
|
6
|
+
import type { NervosGetAddress as HardwareNervosGetAddress } from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { NervosAddress, NervosGetAddressParams } from '../../types';
|
|
8
|
+
|
|
9
|
+
export default class NervosGetAddress extends BaseMethod<HardwareNervosGetAddress[]> {
|
|
10
|
+
hasBundle = false;
|
|
11
|
+
|
|
12
|
+
init() {
|
|
13
|
+
this.checkDeviceId = true;
|
|
14
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
15
|
+
|
|
16
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
17
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
18
|
+
|
|
19
|
+
// check payload
|
|
20
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
21
|
+
|
|
22
|
+
// init params
|
|
23
|
+
this.params = [];
|
|
24
|
+
payload.bundle.forEach((batch: NervosGetAddressParams) => {
|
|
25
|
+
const addressN = validatePath(batch.path, 3);
|
|
26
|
+
|
|
27
|
+
validateParams(batch, [
|
|
28
|
+
{ name: 'path', required: true },
|
|
29
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
30
|
+
{ name: 'network', type: 'string' },
|
|
31
|
+
]);
|
|
32
|
+
|
|
33
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
34
|
+
|
|
35
|
+
this.params.push({
|
|
36
|
+
address_n: addressN,
|
|
37
|
+
show_display: showOnOneToken,
|
|
38
|
+
network: batch.network,
|
|
39
|
+
});
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
getVersionRange() {
|
|
44
|
+
return {
|
|
45
|
+
model_mini: {
|
|
46
|
+
min: '3.7.0',
|
|
47
|
+
},
|
|
48
|
+
model_touch: {
|
|
49
|
+
min: '4.9.0',
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
async run() {
|
|
55
|
+
const responses: NervosAddress[] = [];
|
|
56
|
+
|
|
57
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
58
|
+
const param = this.params[i];
|
|
59
|
+
|
|
60
|
+
const res = await this.device.commands.typedCall('NervosGetAddress', 'NervosAddress', {
|
|
61
|
+
...param,
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
const { address } = res.message;
|
|
65
|
+
|
|
66
|
+
const result = {
|
|
67
|
+
path: serializedPath(param.address_n),
|
|
68
|
+
address,
|
|
69
|
+
};
|
|
70
|
+
responses.push(result);
|
|
71
|
+
this.postPreviousAddressMessage(result);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
validateResult(responses, ['address'], {
|
|
75
|
+
expectedLength: this.params.length,
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { bytesToHex } from '@noble/hashes/utils';
|
|
2
|
+
|
|
3
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
4
|
+
import { BaseMethod } from '../BaseMethod';
|
|
5
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
6
|
+
import { formatAnyHex } from '../helpers/hexUtils';
|
|
7
|
+
|
|
8
|
+
import type { NervosSignTransactionParams, NervosSignedTx } from '../../types';
|
|
9
|
+
import type { NervosSignTx as HardwareNervosSignTx, TypedCall } from '@onetokenfe/hd-transport';
|
|
10
|
+
import type { TypedResponseMessage } from '../../device/DeviceCommands';
|
|
11
|
+
|
|
12
|
+
type NervosSignTx = Omit<HardwareNervosSignTx, 'data_initial_chunk' | 'data_length'> & {
|
|
13
|
+
raw_tx: Buffer;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export default class NervosSignTransaction extends BaseMethod<NervosSignTx> {
|
|
17
|
+
hasBundle = false;
|
|
18
|
+
|
|
19
|
+
init() {
|
|
20
|
+
this.checkDeviceId = true;
|
|
21
|
+
this.allowDeviceMode = [...this.allowDeviceMode];
|
|
22
|
+
|
|
23
|
+
// check payload
|
|
24
|
+
validateParams(this.payload, [
|
|
25
|
+
{ name: 'path', required: true },
|
|
26
|
+
{ name: 'rawTx', type: 'hexString', required: true },
|
|
27
|
+
{ name: 'witnessHex', type: 'hexString', required: true },
|
|
28
|
+
{ name: 'network', type: 'string', required: true },
|
|
29
|
+
]);
|
|
30
|
+
|
|
31
|
+
// init params
|
|
32
|
+
const { path, rawTx, witnessHex, network } = this.payload as NervosSignTransactionParams;
|
|
33
|
+
const addressN = validatePath(path, 3);
|
|
34
|
+
|
|
35
|
+
this.params = {
|
|
36
|
+
address_n: addressN,
|
|
37
|
+
raw_tx: Buffer.from(formatAnyHex(rawTx), 'hex'),
|
|
38
|
+
witness_buffer: formatAnyHex(witnessHex),
|
|
39
|
+
network,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
getVersionRange() {
|
|
44
|
+
return {
|
|
45
|
+
model_mini: {
|
|
46
|
+
min: '3.7.0',
|
|
47
|
+
},
|
|
48
|
+
model_touch: {
|
|
49
|
+
min: '4.9.0',
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
chunkByteSize = 1024;
|
|
55
|
+
|
|
56
|
+
processTxRequest = async (
|
|
57
|
+
typedCall: TypedCall,
|
|
58
|
+
res: TypedResponseMessage<'NervosSignedTx'> | TypedResponseMessage<'NervosTxRequest'>,
|
|
59
|
+
data: Buffer,
|
|
60
|
+
offset = 0
|
|
61
|
+
): Promise<NervosSignedTx> => {
|
|
62
|
+
if (res.type === 'NervosSignedTx') {
|
|
63
|
+
if (!res?.message?.signature) {
|
|
64
|
+
throw new Error('No signature returned');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
return {
|
|
68
|
+
...res.message,
|
|
69
|
+
path: serializedPath(this.params.address_n),
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const { data_length } = res.message;
|
|
74
|
+
|
|
75
|
+
if (!data_length) {
|
|
76
|
+
if (!res?.message?.signature) {
|
|
77
|
+
throw new Error('No signature returned');
|
|
78
|
+
}
|
|
79
|
+
// sign Done
|
|
80
|
+
return {
|
|
81
|
+
...res.message,
|
|
82
|
+
path: serializedPath(this.params.address_n),
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const payload = data.subarray(offset, offset + data_length);
|
|
87
|
+
const newOffset = offset + payload.length;
|
|
88
|
+
const resourceAckParams = {
|
|
89
|
+
data_chunk: bytesToHex(payload),
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
const response = await typedCall('NervosTxAck', ['NervosSignedTx', 'NervosTxRequest'], {
|
|
93
|
+
...resourceAckParams,
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
return this.processTxRequest(typedCall, response, data, newOffset);
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
async run() {
|
|
100
|
+
const dataLength = this.params.raw_tx.length;
|
|
101
|
+
const offset = dataLength;
|
|
102
|
+
const data = this.params.raw_tx;
|
|
103
|
+
|
|
104
|
+
const typedCall = this.device.getCommands().typedCall.bind(this.device.getCommands());
|
|
105
|
+
|
|
106
|
+
const res = await typedCall('NervosSignTx', 'NervosSignedTx', {
|
|
107
|
+
address_n: this.params.address_n,
|
|
108
|
+
data_initial_chunk: bytesToHex(data.subarray(0, offset)),
|
|
109
|
+
data_length: dataLength,
|
|
110
|
+
witness_buffer: this.params.witness_buffer,
|
|
111
|
+
network: this.params.network,
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
return this.processTxRequest(typedCall, res, data, offset);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
@@ -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
|
+
|
|
6
|
+
import type { NexaGetAddress as HardwareNexaGetAddress } from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { NexaGetAddressParams } from '../../types';
|
|
8
|
+
|
|
9
|
+
export default class NexaGetAddress extends BaseMethod<HardwareNexaGetAddress[]> {
|
|
10
|
+
hasBundle = false;
|
|
11
|
+
|
|
12
|
+
init() {
|
|
13
|
+
this.checkDeviceId = true;
|
|
14
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
15
|
+
|
|
16
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
17
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
18
|
+
|
|
19
|
+
// check payload
|
|
20
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
21
|
+
|
|
22
|
+
// init params
|
|
23
|
+
this.params = [];
|
|
24
|
+
payload.bundle.forEach((batch: NexaGetAddressParams) => {
|
|
25
|
+
const addressN = validatePath(batch.path, 3);
|
|
26
|
+
|
|
27
|
+
validateParams(batch, [
|
|
28
|
+
{ name: 'path', required: true },
|
|
29
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
30
|
+
{ name: 'prefix', type: 'string' },
|
|
31
|
+
{ name: 'scheme', type: 'string' },
|
|
32
|
+
]);
|
|
33
|
+
|
|
34
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
35
|
+
|
|
36
|
+
this.params.push({
|
|
37
|
+
address_n: addressN,
|
|
38
|
+
show_display: showOnOneToken,
|
|
39
|
+
prefix: batch.prefix,
|
|
40
|
+
// @ts-expect-error
|
|
41
|
+
scheme: batch.scheme,
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
getVersionRange() {
|
|
47
|
+
return {
|
|
48
|
+
model_mini: {
|
|
49
|
+
min: '3.2.0',
|
|
50
|
+
},
|
|
51
|
+
model_touch: {
|
|
52
|
+
min: '4.4.0',
|
|
53
|
+
},
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
async run() {
|
|
58
|
+
const responses: {
|
|
59
|
+
path: string;
|
|
60
|
+
pub: string;
|
|
61
|
+
address: string;
|
|
62
|
+
}[] = [];
|
|
63
|
+
|
|
64
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
65
|
+
const param = this.params[i];
|
|
66
|
+
|
|
67
|
+
const res = await this.device.commands.typedCall('NexaGetAddress', 'NexaAddress', {
|
|
68
|
+
...param,
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
const { address } = res.message;
|
|
72
|
+
|
|
73
|
+
const result = {
|
|
74
|
+
path: serializedPath(param.address_n),
|
|
75
|
+
pub: res.message.public_key,
|
|
76
|
+
address,
|
|
77
|
+
};
|
|
78
|
+
responses.push(result);
|
|
79
|
+
this.postPreviousAddressMessage(result);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
validateResult(responses, ['address', 'pub'], {
|
|
83
|
+
expectedLength: this.params.length,
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
87
|
+
}
|
|
88
|
+
}
|