@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,227 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import type {
|
|
4
|
+
TxAckResponse,
|
|
5
|
+
TxInputType,
|
|
6
|
+
TxOutputType,
|
|
7
|
+
TxRequest,
|
|
8
|
+
TxRequestSerializedType,
|
|
9
|
+
TypedCall,
|
|
10
|
+
} from '@onetokenfe/hd-transport';
|
|
11
|
+
import type {
|
|
12
|
+
RefTransaction,
|
|
13
|
+
SignedTransaction,
|
|
14
|
+
TransactionOptions,
|
|
15
|
+
} from '../../../types/api/btcSignTransaction';
|
|
16
|
+
|
|
17
|
+
type RefTxs = { [hash: string]: RefTransaction };
|
|
18
|
+
type Props = {
|
|
19
|
+
typedCall: TypedCall;
|
|
20
|
+
txRequest: TxRequest;
|
|
21
|
+
refTxs: RefTxs;
|
|
22
|
+
inputs: TxInputType[];
|
|
23
|
+
outputs: TxOutputType[];
|
|
24
|
+
serializedTx: string[];
|
|
25
|
+
signatures: string[];
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const requestPrevTxInfo = ({
|
|
29
|
+
txRequest: { request_type, details },
|
|
30
|
+
refTxs,
|
|
31
|
+
}: Props): TxAckResponse => {
|
|
32
|
+
const { tx_hash } = details;
|
|
33
|
+
if (!tx_hash) {
|
|
34
|
+
throw ERRORS.TypedError(
|
|
35
|
+
HardwareErrorCode.RuntimeError,
|
|
36
|
+
'requestPrevTxInfo: unknown details.tx_hash'
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
const tx = refTxs[tx_hash.toLowerCase()];
|
|
40
|
+
if (!tx) {
|
|
41
|
+
throw ERRORS.TypedError(
|
|
42
|
+
HardwareErrorCode.RuntimeError,
|
|
43
|
+
`requestPrevTxInfo: Requested unknown tx: ${tx_hash}`
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
if (!tx.bin_outputs) {
|
|
47
|
+
throw ERRORS.TypedError(
|
|
48
|
+
HardwareErrorCode.RuntimeError,
|
|
49
|
+
`requestPrevTxInfo: bin_outputs not set tx: ${tx_hash}`
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
if (request_type === 'TXINPUT') {
|
|
53
|
+
return { inputs: [tx.inputs[details.request_index]] };
|
|
54
|
+
}
|
|
55
|
+
if (request_type === 'TXOUTPUT') {
|
|
56
|
+
return { bin_outputs: [tx.bin_outputs[details.request_index]] };
|
|
57
|
+
}
|
|
58
|
+
if (request_type === 'TXEXTRADATA') {
|
|
59
|
+
if (typeof details.extra_data_len !== 'number') {
|
|
60
|
+
throw ERRORS.TypedError(
|
|
61
|
+
HardwareErrorCode.RuntimeError,
|
|
62
|
+
'requestPrevTxInfo: Missing extra_data_len'
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
if (typeof details.extra_data_offset !== 'number') {
|
|
66
|
+
throw ERRORS.TypedError(
|
|
67
|
+
HardwareErrorCode.RuntimeError,
|
|
68
|
+
'requestPrevTxInfo: Missing extra_data_offset'
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
if (typeof tx.extra_data !== 'string') {
|
|
72
|
+
throw ERRORS.TypedError(
|
|
73
|
+
HardwareErrorCode.RuntimeError,
|
|
74
|
+
`requestPrevTxInfo: No extra data for transaction ${tx.hash}`
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
const data = tx.extra_data;
|
|
78
|
+
const dataLen = details.extra_data_len;
|
|
79
|
+
const dataOffset = details.extra_data_offset;
|
|
80
|
+
const extra_data = data.substring(dataOffset * 2, (dataOffset + dataLen) * 2);
|
|
81
|
+
return { extra_data };
|
|
82
|
+
}
|
|
83
|
+
if (request_type === 'TXMETA') {
|
|
84
|
+
const data = tx.extra_data;
|
|
85
|
+
const meta = {
|
|
86
|
+
version: tx.version,
|
|
87
|
+
lock_time: tx.lock_time,
|
|
88
|
+
inputs_cnt: tx.inputs.length,
|
|
89
|
+
outputs_cnt: tx.bin_outputs.length,
|
|
90
|
+
timestamp: tx.timestamp,
|
|
91
|
+
version_group_id: tx.version_group_id,
|
|
92
|
+
expiry: tx.expiry,
|
|
93
|
+
branch_id: tx.branch_id,
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
if (typeof data === 'string' && data.length !== 0) {
|
|
97
|
+
return {
|
|
98
|
+
...meta,
|
|
99
|
+
extra_data_len: data.length / 2,
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
return meta;
|
|
103
|
+
}
|
|
104
|
+
throw ERRORS.TypedError(
|
|
105
|
+
HardwareErrorCode.RuntimeError,
|
|
106
|
+
`requestPrevTxInfo: Unknown request type: ${request_type}`
|
|
107
|
+
);
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
const requestSignedTxInfo = ({
|
|
111
|
+
txRequest: { request_type, details },
|
|
112
|
+
inputs,
|
|
113
|
+
outputs,
|
|
114
|
+
}: Props): TxAckResponse => {
|
|
115
|
+
if (request_type === 'TXINPUT') {
|
|
116
|
+
return { inputs: [inputs[details.request_index]] };
|
|
117
|
+
}
|
|
118
|
+
if (request_type === 'TXOUTPUT') {
|
|
119
|
+
return { outputs: [outputs[details.request_index]] };
|
|
120
|
+
}
|
|
121
|
+
if (request_type === 'TXMETA') {
|
|
122
|
+
throw ERRORS.TypedError(
|
|
123
|
+
HardwareErrorCode.RuntimeError,
|
|
124
|
+
'requestSignedTxInfo: Cannot read TXMETA from signed transaction'
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
if (request_type === 'TXEXTRADATA') {
|
|
128
|
+
throw ERRORS.TypedError(
|
|
129
|
+
HardwareErrorCode.RuntimeError,
|
|
130
|
+
'requestSignedTxInfo: Cannot read TXEXTRADATA from signed transaction'
|
|
131
|
+
);
|
|
132
|
+
}
|
|
133
|
+
throw ERRORS.TypedError(
|
|
134
|
+
HardwareErrorCode.RuntimeError,
|
|
135
|
+
`requestSignedTxInfo: Unknown request type: ${request_type}`
|
|
136
|
+
);
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
// requests information about a transaction
|
|
140
|
+
// can be either signed transaction itself of prev transaction
|
|
141
|
+
const requestTxAck = (props: Props) => {
|
|
142
|
+
const { tx_hash } = props.txRequest.details;
|
|
143
|
+
if (tx_hash) {
|
|
144
|
+
return requestPrevTxInfo(props);
|
|
145
|
+
}
|
|
146
|
+
return requestSignedTxInfo(props);
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
const saveTxSignatures = (
|
|
150
|
+
serializedTx: string[],
|
|
151
|
+
signatures: string[],
|
|
152
|
+
txRequest?: TxRequestSerializedType
|
|
153
|
+
) => {
|
|
154
|
+
if (!txRequest) return;
|
|
155
|
+
const { signature_index, signature, serialized_tx } = txRequest;
|
|
156
|
+
if (serialized_tx) {
|
|
157
|
+
serializedTx.push(serialized_tx);
|
|
158
|
+
}
|
|
159
|
+
if (typeof signature_index === 'number') {
|
|
160
|
+
if (!signature) {
|
|
161
|
+
throw ERRORS.TypedError(
|
|
162
|
+
HardwareErrorCode.RuntimeError,
|
|
163
|
+
'saveTxSignatures: Unexpected null in oneToken:TxRequestSerialized signature.'
|
|
164
|
+
);
|
|
165
|
+
}
|
|
166
|
+
signatures[signature_index] = signature;
|
|
167
|
+
}
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
const processTxRequest = async (
|
|
171
|
+
props: Props
|
|
172
|
+
): Promise<{
|
|
173
|
+
signatures: string[];
|
|
174
|
+
serializedTx: string;
|
|
175
|
+
}> => {
|
|
176
|
+
const { typedCall, txRequest, refTxs, inputs, outputs, serializedTx, signatures } = props;
|
|
177
|
+
saveTxSignatures(serializedTx, signatures, txRequest.serialized);
|
|
178
|
+
if (txRequest.request_type === 'TXFINISHED') {
|
|
179
|
+
return Promise.resolve({
|
|
180
|
+
signatures,
|
|
181
|
+
serializedTx: serializedTx.join(''),
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
const txAck = requestTxAck(props);
|
|
186
|
+
const { message } = await typedCall('TxAck', 'TxRequest', { tx: txAck });
|
|
187
|
+
return processTxRequest({
|
|
188
|
+
typedCall,
|
|
189
|
+
txRequest: message,
|
|
190
|
+
refTxs,
|
|
191
|
+
inputs,
|
|
192
|
+
outputs,
|
|
193
|
+
serializedTx,
|
|
194
|
+
signatures,
|
|
195
|
+
});
|
|
196
|
+
};
|
|
197
|
+
|
|
198
|
+
export default async (
|
|
199
|
+
typedCall: TypedCall,
|
|
200
|
+
inputs: TxInputType[],
|
|
201
|
+
outputs: TxOutputType[],
|
|
202
|
+
refTxsArray: RefTransaction[],
|
|
203
|
+
options: TransactionOptions,
|
|
204
|
+
coinName: string
|
|
205
|
+
): Promise<SignedTransaction> => {
|
|
206
|
+
const refTxs: RefTxs = {};
|
|
207
|
+
refTxsArray.forEach(tx => {
|
|
208
|
+
refTxs[tx.hash.toLowerCase()] = tx;
|
|
209
|
+
});
|
|
210
|
+
|
|
211
|
+
const { message } = await typedCall('SignTx', 'TxRequest', {
|
|
212
|
+
...options,
|
|
213
|
+
inputs_count: inputs.length,
|
|
214
|
+
outputs_count: outputs.length,
|
|
215
|
+
coin_name: coinName,
|
|
216
|
+
});
|
|
217
|
+
|
|
218
|
+
return processTxRequest({
|
|
219
|
+
typedCall,
|
|
220
|
+
txRequest: message,
|
|
221
|
+
refTxs,
|
|
222
|
+
inputs,
|
|
223
|
+
outputs,
|
|
224
|
+
serializedTx: [],
|
|
225
|
+
signatures: [],
|
|
226
|
+
});
|
|
227
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
function isCoinNameInList(coinName: string, coinNames: (string | undefined)[]) {
|
|
2
|
+
for (let i = 0; i < coinNames.length; i++) {
|
|
3
|
+
const coin_name = coinNames[i];
|
|
4
|
+
if (coin_name?.toLowerCase() === coinName?.toLowerCase()) {
|
|
5
|
+
return true;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
return false;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export function getBitcoinForkVersionRange(params: (string | undefined)[]) {
|
|
12
|
+
if (isCoinNameInList('Neurai', params)) {
|
|
13
|
+
return {
|
|
14
|
+
model_mini: {
|
|
15
|
+
min: '3.7.0',
|
|
16
|
+
},
|
|
17
|
+
model_touch: {
|
|
18
|
+
min: '4.9.0',
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// No version restrictions for other coins
|
|
24
|
+
return {};
|
|
25
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { sha256 } from '@noble/hashes/sha256';
|
|
2
|
+
|
|
3
|
+
import type { HDNodeType, InputScriptType } from '@onetokenfe/hd-transport';
|
|
4
|
+
|
|
5
|
+
// 定义版本字节常量
|
|
6
|
+
const VERSION_BYTES = {
|
|
7
|
+
// xpub - (SPENDADDRESS, SPENDMULTISIG)
|
|
8
|
+
XPUB: 0x0488b21e,
|
|
9
|
+
// ypub - (SPENDP2SHWITNESS)
|
|
10
|
+
YPUB: 0x049d7cb2,
|
|
11
|
+
// zpub - (SPENDWITNESS)
|
|
12
|
+
ZPUB: 0x04b24746,
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export function getVersionBytes(
|
|
16
|
+
coinName: string,
|
|
17
|
+
scriptType?: InputScriptType
|
|
18
|
+
): number | undefined {
|
|
19
|
+
if (coinName.toLowerCase() === 'bitcoin') {
|
|
20
|
+
switch (scriptType) {
|
|
21
|
+
case 'SPENDADDRESS':
|
|
22
|
+
case 'SPENDMULTISIG':
|
|
23
|
+
// 44、48
|
|
24
|
+
return VERSION_BYTES.XPUB;
|
|
25
|
+
case 'SPENDP2SHWITNESS':
|
|
26
|
+
// 49
|
|
27
|
+
return VERSION_BYTES.YPUB;
|
|
28
|
+
case 'SPENDWITNESS':
|
|
29
|
+
// 84
|
|
30
|
+
return VERSION_BYTES.ZPUB;
|
|
31
|
+
default:
|
|
32
|
+
// 86、10025
|
|
33
|
+
return VERSION_BYTES.XPUB;
|
|
34
|
+
}
|
|
35
|
+
} else if (coinName.toLowerCase() === 'litecoin') {
|
|
36
|
+
switch (scriptType) {
|
|
37
|
+
case 'SPENDADDRESS':
|
|
38
|
+
case 'SPENDMULTISIG':
|
|
39
|
+
// 44、48
|
|
40
|
+
return 0x019da462;
|
|
41
|
+
case 'SPENDP2SHWITNESS':
|
|
42
|
+
// 49
|
|
43
|
+
return 0x01b26ef6;
|
|
44
|
+
case 'SPENDWITNESS':
|
|
45
|
+
// 84
|
|
46
|
+
return 0x04b24746;
|
|
47
|
+
default:
|
|
48
|
+
// not support 86、10025 path
|
|
49
|
+
return undefined;
|
|
50
|
+
}
|
|
51
|
+
} else if (coinName.toLowerCase() === 'dogecoin') {
|
|
52
|
+
if (scriptType === 'SPENDADDRESS') {
|
|
53
|
+
// 44
|
|
54
|
+
return 0x02facafd;
|
|
55
|
+
}
|
|
56
|
+
if (scriptType === 'SPENDMULTISIG') {
|
|
57
|
+
// 48
|
|
58
|
+
return 0x0488b21e;
|
|
59
|
+
}
|
|
60
|
+
return undefined;
|
|
61
|
+
}
|
|
62
|
+
return undefined;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
function base58Check(data: Buffer): string {
|
|
66
|
+
const checksum = sha256(sha256(new Uint8Array(data))).slice(0, 4);
|
|
67
|
+
const withChecksum = Buffer.concat([new Uint8Array(data), new Uint8Array(checksum)]);
|
|
68
|
+
const ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz';
|
|
69
|
+
|
|
70
|
+
let result = '';
|
|
71
|
+
let num = BigInt(`0x${withChecksum.toString('hex')}`);
|
|
72
|
+
const base = BigInt(58);
|
|
73
|
+
|
|
74
|
+
while (num > 0) {
|
|
75
|
+
const mod = Number(num % base);
|
|
76
|
+
num /= base;
|
|
77
|
+
result = ALPHABET[mod] + result;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// 处理前导零字节
|
|
81
|
+
for (let i = 0; i < withChecksum.length; i++) {
|
|
82
|
+
if (withChecksum[i] === 0) {
|
|
83
|
+
result = `1${result}`;
|
|
84
|
+
} else {
|
|
85
|
+
break;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return result;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
function generateExtendedPublicKey(
|
|
93
|
+
coinName: string,
|
|
94
|
+
depth: number,
|
|
95
|
+
fingerprint: number,
|
|
96
|
+
childNum: number,
|
|
97
|
+
chainCode: string,
|
|
98
|
+
publicKey: string,
|
|
99
|
+
scriptType?: InputScriptType
|
|
100
|
+
): string {
|
|
101
|
+
const versionBytes = getVersionBytes(coinName, scriptType);
|
|
102
|
+
|
|
103
|
+
if (!versionBytes) {
|
|
104
|
+
throw new Error(`Invalid coinName, not support generate xpub for scriptType: ${scriptType}`);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
const buffer = Buffer.alloc(78);
|
|
108
|
+
buffer.writeUInt32BE(versionBytes, 0);
|
|
109
|
+
buffer.writeUInt8(depth, 4);
|
|
110
|
+
buffer.writeUInt32BE(fingerprint, 5);
|
|
111
|
+
buffer.writeUInt32BE(childNum, 9);
|
|
112
|
+
buffer.write(chainCode, 13, 'hex');
|
|
113
|
+
buffer.write(publicKey, 45, 'hex');
|
|
114
|
+
|
|
115
|
+
return base58Check(buffer);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export function createExtendedPublicKey(
|
|
119
|
+
node: HDNodeType,
|
|
120
|
+
coinName: string,
|
|
121
|
+
scriptType?: InputScriptType
|
|
122
|
+
): string {
|
|
123
|
+
return generateExtendedPublicKey(
|
|
124
|
+
coinName,
|
|
125
|
+
node.depth,
|
|
126
|
+
node.fingerprint,
|
|
127
|
+
node.child_num,
|
|
128
|
+
node.chain_code,
|
|
129
|
+
node.public_key,
|
|
130
|
+
scriptType
|
|
131
|
+
);
|
|
132
|
+
}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { BaseMethod } from '../BaseMethod';
|
|
2
|
+
import { PROTO } from '../../constants';
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
5
|
+
import {
|
|
6
|
+
addressParametersFromProto,
|
|
7
|
+
addressParametersToProto,
|
|
8
|
+
validateAddressParameters,
|
|
9
|
+
} from './helper/addressParameters';
|
|
10
|
+
import { serializedPath } from '../helpers/pathUtils';
|
|
11
|
+
|
|
12
|
+
import type { CardanoAddress, CardanoGetAddressParams } from '../../types/api/cardanoGetAddress';
|
|
13
|
+
import type { CardanoGetAddressMethodParams } from '../../types';
|
|
14
|
+
|
|
15
|
+
export default class CardanoGetAddress extends BaseMethod<CardanoGetAddressParams[]> {
|
|
16
|
+
hasBundle?: boolean;
|
|
17
|
+
|
|
18
|
+
isCheck?: boolean;
|
|
19
|
+
|
|
20
|
+
init() {
|
|
21
|
+
this.checkDeviceId = true;
|
|
22
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
23
|
+
|
|
24
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
25
|
+
this.isCheck = this.hasBundle
|
|
26
|
+
? !!this.payload?.bundle.every((i: CardanoGetAddressMethodParams) => !!i.isCheck)
|
|
27
|
+
: !!this.payload?.isCheck;
|
|
28
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
29
|
+
|
|
30
|
+
this.params = payload.bundle.map((batch: any) => {
|
|
31
|
+
// validate incoming parameters for each batch
|
|
32
|
+
validateParams(batch, [
|
|
33
|
+
{ name: 'addressParameters', type: 'object', required: true },
|
|
34
|
+
{ name: 'networkId', type: 'number', required: true },
|
|
35
|
+
{ name: 'protocolMagic', type: 'number', required: true },
|
|
36
|
+
{ name: 'derivationType', type: 'number' },
|
|
37
|
+
{ name: 'address', type: 'string' },
|
|
38
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
39
|
+
]);
|
|
40
|
+
|
|
41
|
+
validateAddressParameters(batch.addressParameters);
|
|
42
|
+
|
|
43
|
+
return {
|
|
44
|
+
address_parameters: addressParametersToProto(batch.addressParameters),
|
|
45
|
+
address: batch.address,
|
|
46
|
+
protocol_magic: batch.protocolMagic,
|
|
47
|
+
network_id: batch.networkId,
|
|
48
|
+
derivation_type:
|
|
49
|
+
typeof batch.derivationType !== 'undefined'
|
|
50
|
+
? batch.derivationType
|
|
51
|
+
: PROTO.CardanoDerivationType.ICARUS,
|
|
52
|
+
show_display: typeof batch.showOnOneToken === 'boolean' ? !!batch.showOnOneToken : true,
|
|
53
|
+
};
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
getVersionRange() {
|
|
58
|
+
return {
|
|
59
|
+
model_mini: {
|
|
60
|
+
min: '3.0.0',
|
|
61
|
+
},
|
|
62
|
+
model_touch: {
|
|
63
|
+
min: '4.1.0',
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
async run() {
|
|
69
|
+
const responses: CardanoAddress[] = [];
|
|
70
|
+
|
|
71
|
+
for (const batch of this.params) {
|
|
72
|
+
const { address_parameters, protocol_magic, network_id, derivation_type, show_display } =
|
|
73
|
+
batch;
|
|
74
|
+
const response = await this.device.commands.typedCall('CardanoGetAddress', 'CardanoAddress', {
|
|
75
|
+
address_parameters,
|
|
76
|
+
protocol_magic,
|
|
77
|
+
network_id,
|
|
78
|
+
derivation_type,
|
|
79
|
+
show_display,
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
let xpub;
|
|
83
|
+
let stakeAddress;
|
|
84
|
+
if (address_parameters.address_type === PROTO.CardanoAddressType.BASE && !this.isCheck) {
|
|
85
|
+
const publicKeyRes = await this.device.commands.typedCall(
|
|
86
|
+
'CardanoGetPublicKey',
|
|
87
|
+
'CardanoPublicKey',
|
|
88
|
+
{
|
|
89
|
+
address_n: address_parameters.address_n.slice(0, 3),
|
|
90
|
+
derivation_type,
|
|
91
|
+
show_display: false,
|
|
92
|
+
}
|
|
93
|
+
);
|
|
94
|
+
xpub = publicKeyRes.message.xpub;
|
|
95
|
+
|
|
96
|
+
const stakeAddressRes = await this.device.commands.typedCall(
|
|
97
|
+
'CardanoGetAddress',
|
|
98
|
+
'CardanoAddress',
|
|
99
|
+
{
|
|
100
|
+
address_parameters: {
|
|
101
|
+
address_type: PROTO.CardanoAddressType.REWARD,
|
|
102
|
+
address_n: [],
|
|
103
|
+
address_n_staking: address_parameters.address_n_staking,
|
|
104
|
+
},
|
|
105
|
+
protocol_magic,
|
|
106
|
+
network_id,
|
|
107
|
+
derivation_type,
|
|
108
|
+
show_display: false,
|
|
109
|
+
}
|
|
110
|
+
);
|
|
111
|
+
|
|
112
|
+
stakeAddress = stakeAddressRes.message.address;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
const path = serializedPath(batch.address_parameters.address_n);
|
|
116
|
+
responses.push({
|
|
117
|
+
addressParameters: addressParametersFromProto(batch.address_parameters),
|
|
118
|
+
protocolMagic: batch.protocol_magic,
|
|
119
|
+
networkId: batch.network_id,
|
|
120
|
+
serializedPath: path,
|
|
121
|
+
serializedStakingPath: serializedPath(batch.address_parameters.address_n_staking),
|
|
122
|
+
address: response.message.address,
|
|
123
|
+
xpub,
|
|
124
|
+
stakeAddress,
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
this.postPreviousAddressMessage({
|
|
128
|
+
path,
|
|
129
|
+
address: response.message.address,
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
validateResult(responses, ['serializedPath', 'serializedStakingPath', 'address'], {
|
|
134
|
+
expectedLength: this.params.length,
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
return this.hasBundle ? responses : responses[0];
|
|
138
|
+
}
|
|
139
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { BaseMethod } from '../BaseMethod';
|
|
2
|
+
import { PROTO } from '../../constants';
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
5
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
6
|
+
|
|
7
|
+
import type { CardanoPublicKey, CardanoPublicKeyParams } from '../../types/api/cardanoGetPublicKey';
|
|
8
|
+
|
|
9
|
+
export default class CardanoGetPublicKey extends BaseMethod<CardanoPublicKeyParams[]> {
|
|
10
|
+
hasBundle?: boolean;
|
|
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
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
20
|
+
|
|
21
|
+
this.params = payload.bundle.map((batch: any) => {
|
|
22
|
+
// validate incoming parameters for each batch
|
|
23
|
+
validateParams(batch, [
|
|
24
|
+
{ name: 'path', required: true },
|
|
25
|
+
{ name: 'derivationType', type: 'number' },
|
|
26
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
27
|
+
]);
|
|
28
|
+
|
|
29
|
+
const path = validatePath(batch.path, 3);
|
|
30
|
+
return {
|
|
31
|
+
address_n: path,
|
|
32
|
+
derivation_type:
|
|
33
|
+
typeof batch.derivationType !== 'undefined'
|
|
34
|
+
? batch.derivationType
|
|
35
|
+
: PROTO.CardanoDerivationType.ICARUS,
|
|
36
|
+
show_display: typeof batch.showOnOneToken === 'boolean' ? batch.showOnOneToken : false,
|
|
37
|
+
};
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
getVersionRange() {
|
|
42
|
+
return {
|
|
43
|
+
model_mini: {
|
|
44
|
+
min: '3.0.0',
|
|
45
|
+
},
|
|
46
|
+
model_touch: {
|
|
47
|
+
min: '4.1.0',
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
async run() {
|
|
53
|
+
const responses: CardanoPublicKey[] = [];
|
|
54
|
+
const cmd = this.device.getCommands();
|
|
55
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
56
|
+
const batch = this.params[i];
|
|
57
|
+
const { message } = await cmd.typedCall('CardanoGetPublicKey', 'CardanoPublicKey', batch);
|
|
58
|
+
responses.push({
|
|
59
|
+
path: batch.address_n,
|
|
60
|
+
serializedPath: serializedPath(batch.address_n),
|
|
61
|
+
xpub: message.xpub,
|
|
62
|
+
node: message.node,
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
validateResult(responses, ['xpub'], {
|
|
67
|
+
expectedLength: this.params.length,
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
return this.hasBundle ? responses : responses[0];
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { BaseMethod } from '../BaseMethod';
|
|
2
|
+
import { PROTO } from '../../constants';
|
|
3
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
4
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
5
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
6
|
+
|
|
7
|
+
import type { CardanoSignMessageParams } from '../../types/api/cardanoSignMessage';
|
|
8
|
+
|
|
9
|
+
export default class CardanoSignMessage extends BaseMethod<CardanoSignMessageParams> {
|
|
10
|
+
hasBundle?: boolean;
|
|
11
|
+
|
|
12
|
+
isCheck?: boolean;
|
|
13
|
+
|
|
14
|
+
init() {
|
|
15
|
+
this.checkDeviceId = true;
|
|
16
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
17
|
+
|
|
18
|
+
const { payload } = this;
|
|
19
|
+
validateParams(payload, [
|
|
20
|
+
{ name: 'path', type: 'string', required: true },
|
|
21
|
+
{ name: 'message', type: 'string', required: true },
|
|
22
|
+
{ name: 'derivationType', type: 'number' },
|
|
23
|
+
{ name: 'networkId', type: 'number', required: true },
|
|
24
|
+
{ name: 'addressType', type: 'number' },
|
|
25
|
+
{ name: 'protocolMagic', type: 'number' },
|
|
26
|
+
]);
|
|
27
|
+
|
|
28
|
+
const addressN = validatePath(payload.path, 3);
|
|
29
|
+
|
|
30
|
+
this.params = {
|
|
31
|
+
address_n: addressN,
|
|
32
|
+
message: payload.message,
|
|
33
|
+
derivation_type:
|
|
34
|
+
typeof payload.derivationType !== 'undefined'
|
|
35
|
+
? payload.derivationType
|
|
36
|
+
: PROTO.CardanoDerivationType.ICARUS,
|
|
37
|
+
network_id: payload.networkId,
|
|
38
|
+
address_type: payload.addressType,
|
|
39
|
+
protocol_magic: payload.protocolMagic,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
getVersionRange() {
|
|
44
|
+
return {
|
|
45
|
+
model_touch: {
|
|
46
|
+
min: '4.10.0',
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
getAddressTypeVersionRange() {
|
|
52
|
+
return {
|
|
53
|
+
pro: {
|
|
54
|
+
min: '4.9.3',
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
async run() {
|
|
60
|
+
this.checkFeatureVersionLimit(
|
|
61
|
+
() => this.params.address_type !== null && this.params.address_type !== undefined,
|
|
62
|
+
() => this.getAddressTypeVersionRange()
|
|
63
|
+
);
|
|
64
|
+
|
|
65
|
+
const res = await this.device.commands.typedCall(
|
|
66
|
+
'CardanoSignMessage',
|
|
67
|
+
'CardanoMessageSignature',
|
|
68
|
+
this.params
|
|
69
|
+
);
|
|
70
|
+
|
|
71
|
+
return res.message;
|
|
72
|
+
}
|
|
73
|
+
}
|