@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,89 @@
|
|
|
1
|
+
import { TronMessageType } from '@onetokenfe/hd-transport';
|
|
2
|
+
import { createDeviceNotSupportMethodError } from '@onetokenfe/hd-shared';
|
|
3
|
+
|
|
4
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
5
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
6
|
+
import { BaseMethod } from '../BaseMethod';
|
|
7
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
8
|
+
import { stripHexPrefix } from '../helpers/hexUtils';
|
|
9
|
+
import { getFirmwareType } from '../../utils';
|
|
10
|
+
|
|
11
|
+
import type { TronSignMessage as HardwareTronSignMessage } from '@onetokenfe/hd-transport';
|
|
12
|
+
|
|
13
|
+
export default class TronSignMessage extends BaseMethod<HardwareTronSignMessage> {
|
|
14
|
+
init() {
|
|
15
|
+
this.checkDeviceId = true;
|
|
16
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
17
|
+
|
|
18
|
+
// check payload
|
|
19
|
+
validateParams(this.payload, [
|
|
20
|
+
{ name: 'path', required: true },
|
|
21
|
+
{ name: 'messageHex', type: 'hexString', required: true },
|
|
22
|
+
{ name: 'messageType', type: 'string' },
|
|
23
|
+
]);
|
|
24
|
+
|
|
25
|
+
const { path, messageHex } = this.payload;
|
|
26
|
+
const addressN = validatePath(path, 3);
|
|
27
|
+
|
|
28
|
+
if (this.payload.messageType === 'V1' || this.payload.messageType == null) {
|
|
29
|
+
throw createDeviceNotSupportMethodError(
|
|
30
|
+
'TronSignMessage',
|
|
31
|
+
getFirmwareType(this.device.features)
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const messageType = TronMessageType.V2;
|
|
36
|
+
|
|
37
|
+
// init params
|
|
38
|
+
this.params = {
|
|
39
|
+
address_n: addressN,
|
|
40
|
+
message: stripHexPrefix(messageHex),
|
|
41
|
+
message_type: messageType,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
getVersionRange() {
|
|
46
|
+
return {
|
|
47
|
+
model_mini: {
|
|
48
|
+
min: '2.5.0',
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
getMessageV2VersionRange() {
|
|
54
|
+
return {
|
|
55
|
+
pro: {
|
|
56
|
+
min: '4.16.0',
|
|
57
|
+
},
|
|
58
|
+
touch: {
|
|
59
|
+
min: '4.12.0',
|
|
60
|
+
},
|
|
61
|
+
classic1s: {
|
|
62
|
+
min: '3.13.0',
|
|
63
|
+
},
|
|
64
|
+
classic: {
|
|
65
|
+
min: '3.12.0',
|
|
66
|
+
},
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
async run() {
|
|
71
|
+
this.checkFeatureVersionLimit(
|
|
72
|
+
() => this.params.message_type === TronMessageType.V2,
|
|
73
|
+
() => this.getMessageV2VersionRange(),
|
|
74
|
+
{
|
|
75
|
+
strictCheckDeviceSupport: true,
|
|
76
|
+
}
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
const response = await this.device.commands.typedCall(
|
|
80
|
+
'TronSignMessage',
|
|
81
|
+
'TronMessageSignature',
|
|
82
|
+
{
|
|
83
|
+
...this.params,
|
|
84
|
+
}
|
|
85
|
+
);
|
|
86
|
+
|
|
87
|
+
return Promise.resolve(response.message);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
import { isEmpty } from 'lodash';
|
|
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
|
+
|
|
9
|
+
import type { TronTransaction } from '../../types/api/tronSignTransaction';
|
|
10
|
+
import type { TronSignTx } from '@onetokenfe/hd-transport';
|
|
11
|
+
import type { DeviceFirmwareRange } from '../../types';
|
|
12
|
+
|
|
13
|
+
export default class TronSignTransaction extends BaseMethod<TronSignTx> {
|
|
14
|
+
parseTx(tx: TronTransaction, address_n: number[]): TronSignTx {
|
|
15
|
+
const unSignTx = {
|
|
16
|
+
address_n,
|
|
17
|
+
data: tx.data,
|
|
18
|
+
timestamp: tx.timestamp,
|
|
19
|
+
fee_limit: tx.feeLimit,
|
|
20
|
+
ref_block_bytes: tx.refBlockBytes,
|
|
21
|
+
ref_block_hash: tx.refBlockHash,
|
|
22
|
+
expiration: tx.expiration,
|
|
23
|
+
contract: {},
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
if (tx.contract) {
|
|
27
|
+
if (tx.contract.transferContract) {
|
|
28
|
+
unSignTx.contract = {
|
|
29
|
+
transfer_contract: {
|
|
30
|
+
to_address: tx.contract.transferContract.toAddress,
|
|
31
|
+
amount: tx.contract.transferContract.amount,
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
if (tx.contract.triggerSmartContract) {
|
|
36
|
+
unSignTx.contract = {
|
|
37
|
+
trigger_smart_contract: {
|
|
38
|
+
contract_address: tx.contract.triggerSmartContract.contractAddress,
|
|
39
|
+
call_value: tx.contract.triggerSmartContract.callValue,
|
|
40
|
+
data: tx.contract.triggerSmartContract.data,
|
|
41
|
+
call_token_value: tx.contract.triggerSmartContract.callTokenValue,
|
|
42
|
+
asset_id: tx.contract.triggerSmartContract.assetId,
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if (tx.contract.freezeBalanceV2Contract) {
|
|
48
|
+
unSignTx.contract = {
|
|
49
|
+
freeze_balance_v2_contract: {
|
|
50
|
+
frozen_balance: tx.contract.freezeBalanceV2Contract.frozenBalance,
|
|
51
|
+
resource: tx.contract.freezeBalanceV2Contract.resource,
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (tx.contract.unfreezeBalanceV2Contract) {
|
|
57
|
+
unSignTx.contract = {
|
|
58
|
+
unfreeze_balance_v2_contract: {
|
|
59
|
+
unfreeze_balance: tx.contract.unfreezeBalanceV2Contract.unfreezeBalance,
|
|
60
|
+
resource: tx.contract.unfreezeBalanceV2Contract.resource,
|
|
61
|
+
},
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if (tx.contract.delegateResourceContract) {
|
|
66
|
+
unSignTx.contract = {
|
|
67
|
+
delegate_resource_contract: {
|
|
68
|
+
resource: tx.contract.delegateResourceContract.resource,
|
|
69
|
+
balance: tx.contract.delegateResourceContract.balance,
|
|
70
|
+
receiver_address: tx.contract.delegateResourceContract.receiverAddress,
|
|
71
|
+
lock: tx.contract.delegateResourceContract.lock,
|
|
72
|
+
lock_period: tx.contract.delegateResourceContract.lockPeriod,
|
|
73
|
+
},
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if (tx.contract.unDelegateResourceContract) {
|
|
78
|
+
unSignTx.contract = {
|
|
79
|
+
undelegate_resource_contract: {
|
|
80
|
+
resource: tx.contract.unDelegateResourceContract.resource,
|
|
81
|
+
balance: tx.contract.unDelegateResourceContract.balance,
|
|
82
|
+
receiver_address: tx.contract.unDelegateResourceContract.receiverAddress,
|
|
83
|
+
},
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (tx.contract.withdrawExpireUnfreezeContract) {
|
|
88
|
+
unSignTx.contract = {
|
|
89
|
+
withdraw_expire_unfreeze_contract: {},
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (tx.contract.withdrawBalanceContract) {
|
|
94
|
+
unSignTx.contract = {
|
|
95
|
+
withdraw_balance_contract: {
|
|
96
|
+
owner_address: tx.contract.withdrawBalanceContract.ownerAddress,
|
|
97
|
+
},
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
if (tx.contract.voteWitnessContract) {
|
|
102
|
+
unSignTx.contract = {
|
|
103
|
+
vote_witness_contract: {
|
|
104
|
+
votes: tx.contract.voteWitnessContract.votes?.map(vote => ({
|
|
105
|
+
vote_address: vote.voteAddress,
|
|
106
|
+
vote_count: vote.voteCount,
|
|
107
|
+
})),
|
|
108
|
+
support: tx.contract.voteWitnessContract.support,
|
|
109
|
+
},
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
if (tx.contract.cancelAllUnfreezeV2Contract) {
|
|
114
|
+
unSignTx.contract = {
|
|
115
|
+
cancel_all_unfreeze_v2_contract: {},
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
return unSignTx;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
init() {
|
|
124
|
+
this.checkDeviceId = true;
|
|
125
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
126
|
+
|
|
127
|
+
// check payload
|
|
128
|
+
validateParams(this.payload, [
|
|
129
|
+
{ name: 'path', required: true },
|
|
130
|
+
{ name: 'transaction', type: 'object', required: true },
|
|
131
|
+
]);
|
|
132
|
+
|
|
133
|
+
const { path, transaction } = this.payload;
|
|
134
|
+
const addressN = validatePath(path, 3);
|
|
135
|
+
|
|
136
|
+
validateParams(transaction, [
|
|
137
|
+
{ name: 'refBlockBytes', type: 'hexString', required: true },
|
|
138
|
+
{ name: 'refBlockHash', type: 'hexString', required: true },
|
|
139
|
+
{ name: 'expiration', type: 'number', required: true },
|
|
140
|
+
{ name: 'timestamp', type: 'number', required: true },
|
|
141
|
+
{ name: 'contract', type: 'object', required: true },
|
|
142
|
+
]);
|
|
143
|
+
|
|
144
|
+
// init params
|
|
145
|
+
this.params = this.parseTx(formatAnyHex(transaction), addressN);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
getVersionRange() {
|
|
149
|
+
return {
|
|
150
|
+
model_mini: {
|
|
151
|
+
min: '2.5.0',
|
|
152
|
+
},
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
getFixDataTypeVersionRange(): DeviceFirmwareRange {
|
|
157
|
+
return {
|
|
158
|
+
pro: {
|
|
159
|
+
min: '4.13.0',
|
|
160
|
+
},
|
|
161
|
+
touch: {
|
|
162
|
+
min: '4.12.0',
|
|
163
|
+
},
|
|
164
|
+
model_classic1s: {
|
|
165
|
+
min: '3.12.0',
|
|
166
|
+
},
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
checkFixDataTypeSupportVoteWitnessError() {
|
|
171
|
+
const { data } = this.payload;
|
|
172
|
+
const { cancel_all_unfreeze_v2_contract, vote_witness_contract } = this.params.contract;
|
|
173
|
+
this.checkFeatureVersionLimit(
|
|
174
|
+
() => !isEmpty(data) || !!cancel_all_unfreeze_v2_contract || !!vote_witness_contract,
|
|
175
|
+
() => this.getFixDataTypeVersionRange()
|
|
176
|
+
);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
supportDelegateResourceLockPeriodVersionRange(): DeviceFirmwareRange {
|
|
180
|
+
return {
|
|
181
|
+
pro: {
|
|
182
|
+
min: '4.15.0',
|
|
183
|
+
},
|
|
184
|
+
touch: {
|
|
185
|
+
min: '4.12.0',
|
|
186
|
+
},
|
|
187
|
+
model_classic1s: {
|
|
188
|
+
min: '3.13.0',
|
|
189
|
+
},
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
checkSupportDelegateContractLockPeriod() {
|
|
194
|
+
const { delegate_resource_contract } = this.params.contract;
|
|
195
|
+
this.checkFeatureVersionLimit(
|
|
196
|
+
() =>
|
|
197
|
+
!!delegate_resource_contract &&
|
|
198
|
+
delegate_resource_contract.lock_period !== undefined &&
|
|
199
|
+
delegate_resource_contract.lock_period !== null,
|
|
200
|
+
() => this.supportDelegateResourceLockPeriodVersionRange()
|
|
201
|
+
);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
async run() {
|
|
205
|
+
this.checkFixDataTypeSupportVoteWitnessError();
|
|
206
|
+
this.checkSupportDelegateContractLockPeriod();
|
|
207
|
+
|
|
208
|
+
const response = await this.device.commands.typedCall('TronSignTx', 'TronSignedTx', {
|
|
209
|
+
...this.params,
|
|
210
|
+
});
|
|
211
|
+
|
|
212
|
+
return Promise.resolve(response.message);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BaseMethod } from '../BaseMethod';
|
|
2
|
+
|
|
3
|
+
import type { GetNextU2FCounter as HardwareGetNextU2FCounter } from '@onetokenfe/hd-transport';
|
|
4
|
+
|
|
5
|
+
export default class GetNextU2FCounter extends BaseMethod<HardwareGetNextU2FCounter> {
|
|
6
|
+
init() {
|
|
7
|
+
this.useDevicePassphraseState = false;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
async run() {
|
|
11
|
+
const res = await this.device.commands.typedCall('GetNextU2FCounter', 'NextU2FCounter');
|
|
12
|
+
|
|
13
|
+
return Promise.resolve(res.message);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { BaseMethod } from '../BaseMethod';
|
|
2
|
+
|
|
3
|
+
import type { SetU2FCounter as HardwareSetU2FCounter } from '@onetokenfe/hd-transport';
|
|
4
|
+
|
|
5
|
+
export default class SetU2FCounter extends BaseMethod<HardwareSetU2FCounter> {
|
|
6
|
+
init() {
|
|
7
|
+
this.useDevicePassphraseState = false;
|
|
8
|
+
|
|
9
|
+
this.params = {
|
|
10
|
+
u2f_counter: this.payload.u2f_counter,
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
async run() {
|
|
15
|
+
const res = await this.device.commands.typedCall('SetU2FCounter', 'Success', this.params);
|
|
16
|
+
|
|
17
|
+
return Promise.resolve(res.message);
|
|
18
|
+
}
|
|
19
|
+
}
|
package/src/api/utils.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ERRORS, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import * as ApiMethods from './index';
|
|
4
|
+
|
|
5
|
+
import type { IFrameCallMessage } from '../events';
|
|
6
|
+
|
|
7
|
+
export function findMethod(message: IFrameCallMessage & { id?: number }) {
|
|
8
|
+
const { method } = message.payload;
|
|
9
|
+
if (typeof method !== 'string') {
|
|
10
|
+
throw ERRORS.TypedError(HardwareErrorCode.CallMethodInvalidParameter, 'Method is not set');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// @ts-expect-error
|
|
14
|
+
const MethodConstructor = ApiMethods[method];
|
|
15
|
+
if (MethodConstructor) {
|
|
16
|
+
return new MethodConstructor(message);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
throw ERRORS.TypedError(
|
|
20
|
+
HardwareErrorCode.CallMethodInvalidParameter,
|
|
21
|
+
`Method ${method} is not set`
|
|
22
|
+
);
|
|
23
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { BaseMethod } from '../BaseMethod';
|
|
3
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
4
|
+
import { serializedPath, validatePath } from '../helpers/pathUtils';
|
|
5
|
+
|
|
6
|
+
import type { XrpAddress, XrpGetAddressParams } from '../../types/api/xrpGetAddress';
|
|
7
|
+
|
|
8
|
+
export default class XrpGetAddress extends BaseMethod<
|
|
9
|
+
{
|
|
10
|
+
address_n: number[];
|
|
11
|
+
show_display: boolean;
|
|
12
|
+
}[]
|
|
13
|
+
> {
|
|
14
|
+
hasBundle = false;
|
|
15
|
+
|
|
16
|
+
shouldConfirm = false;
|
|
17
|
+
|
|
18
|
+
init() {
|
|
19
|
+
this.checkDeviceId = true;
|
|
20
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
21
|
+
|
|
22
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
23
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
24
|
+
|
|
25
|
+
this.shouldConfirm = this.hasBundle
|
|
26
|
+
? this.payload.bundle.some((i: any) => !!i.showOnOneToken)
|
|
27
|
+
: false;
|
|
28
|
+
|
|
29
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
30
|
+
|
|
31
|
+
this.params = [];
|
|
32
|
+
payload.bundle.forEach((batch: XrpGetAddressParams) => {
|
|
33
|
+
const addressN = validatePath(batch.path, 3);
|
|
34
|
+
|
|
35
|
+
validateParams(batch, [
|
|
36
|
+
{ name: 'path', required: true },
|
|
37
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
38
|
+
]);
|
|
39
|
+
|
|
40
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
41
|
+
|
|
42
|
+
this.params.push({
|
|
43
|
+
address_n: addressN,
|
|
44
|
+
show_display: showOnOneToken,
|
|
45
|
+
});
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
getVersionRange() {
|
|
50
|
+
return {
|
|
51
|
+
model_mini: {
|
|
52
|
+
min: '2.9.0',
|
|
53
|
+
},
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
async run() {
|
|
58
|
+
const responses: XrpAddress[] = [];
|
|
59
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
60
|
+
const param = this.params[i];
|
|
61
|
+
|
|
62
|
+
const res = await this.device.commands.typedCall('RippleGetAddress', 'RippleAddress', {
|
|
63
|
+
...param,
|
|
64
|
+
});
|
|
65
|
+
const publicKey = await this.device.commands.typedCall(
|
|
66
|
+
'BatchGetPublickeys',
|
|
67
|
+
'EcdsaPublicKeys',
|
|
68
|
+
{
|
|
69
|
+
paths: [{ address_n: param.address_n }],
|
|
70
|
+
ecdsa_curve_name: 'secp256k1',
|
|
71
|
+
}
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
const { address } = res.message;
|
|
75
|
+
|
|
76
|
+
const path = serializedPath(param.address_n);
|
|
77
|
+
responses.push({
|
|
78
|
+
path,
|
|
79
|
+
address,
|
|
80
|
+
publicKey: publicKey.message?.public_keys?.[0],
|
|
81
|
+
pub: publicKey.message?.public_keys?.[0],
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
this.postPreviousAddressMessage({
|
|
85
|
+
path,
|
|
86
|
+
address,
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
validateResult(responses, ['address', 'pub'], {
|
|
91
|
+
expectedLength: this.params.length,
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { BaseMethod } from '../BaseMethod';
|
|
3
|
+
import { validateParams } from '../helpers/paramsValidator';
|
|
4
|
+
import { validatePath } from '../helpers/pathUtils';
|
|
5
|
+
|
|
6
|
+
import type { XrpSignTransactionParams } from '../../types/api/xrpSignTransaction';
|
|
7
|
+
|
|
8
|
+
export default class XrpGetAddress extends BaseMethod<XrpSignTransactionParams> {
|
|
9
|
+
hasBundle = false;
|
|
10
|
+
|
|
11
|
+
init() {
|
|
12
|
+
this.checkDeviceId = true;
|
|
13
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
14
|
+
|
|
15
|
+
const { payload } = this;
|
|
16
|
+
validateParams(payload, [
|
|
17
|
+
{ name: 'path', required: true },
|
|
18
|
+
{ name: 'transaction', required: true },
|
|
19
|
+
]);
|
|
20
|
+
|
|
21
|
+
const path = validatePath(payload.path, 5);
|
|
22
|
+
|
|
23
|
+
const { transaction } = payload;
|
|
24
|
+
validateParams(transaction, [
|
|
25
|
+
{ name: 'fee', type: 'string' },
|
|
26
|
+
{ name: 'flags', type: 'number' },
|
|
27
|
+
{ name: 'sequence', type: 'number' },
|
|
28
|
+
{ name: 'maxLedgerVersion', type: 'number' },
|
|
29
|
+
{ name: 'payment', type: 'object' },
|
|
30
|
+
]);
|
|
31
|
+
validateParams(transaction.payment, [
|
|
32
|
+
{ name: 'amount', type: 'number', required: true },
|
|
33
|
+
{ name: 'destination', type: 'string', required: true },
|
|
34
|
+
{ name: 'destinationTag', type: 'number' },
|
|
35
|
+
]);
|
|
36
|
+
|
|
37
|
+
this.params = {
|
|
38
|
+
address_n: path,
|
|
39
|
+
fee: transaction.fee,
|
|
40
|
+
flags: transaction.flags,
|
|
41
|
+
sequence: transaction.sequence,
|
|
42
|
+
last_ledger_sequence: transaction.maxLedgerVersion,
|
|
43
|
+
payment: {
|
|
44
|
+
amount: transaction.payment.amount,
|
|
45
|
+
destination: transaction.payment.destination,
|
|
46
|
+
destination_tag: transaction.payment.destinationTag,
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
getVersionRange() {
|
|
52
|
+
return {
|
|
53
|
+
model_mini: {
|
|
54
|
+
min: '2.9.0',
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
async run() {
|
|
60
|
+
const { message } = await this.device.commands.typedCall(
|
|
61
|
+
'RippleSignTx',
|
|
62
|
+
'RippleSignedTx',
|
|
63
|
+
this.params
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
return {
|
|
67
|
+
serializedTx: message.serialized_tx,
|
|
68
|
+
signature: message.signature,
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ERRORS, HardwareError, HardwareErrorCode } from '@onetokenfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
export const safeThrowError = (error: any) => {
|
|
4
|
+
if (error instanceof HardwareError) {
|
|
5
|
+
throw error;
|
|
6
|
+
} else if (error.code === 'ERR_NETWORK') {
|
|
7
|
+
throw ERRORS.TypedError(HardwareErrorCode.BridgeNotInstalled);
|
|
8
|
+
} else if (error.code === 'ECONNABORTED') {
|
|
9
|
+
throw ERRORS.TypedError(HardwareErrorCode.BridgeTimeoutError);
|
|
10
|
+
} else if (error.code === 'ERR_BAD_REQUEST') {
|
|
11
|
+
throw ERRORS.TypedError(HardwareErrorCode.BridgeNetworkError);
|
|
12
|
+
} else {
|
|
13
|
+
throw ERRORS.TypedError(error);
|
|
14
|
+
}
|
|
15
|
+
};
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { LoggerNames, getLogger } from '../utils';
|
|
2
|
+
|
|
3
|
+
import type { Deferred } from '@onetokenfe/hd-shared';
|
|
4
|
+
import type { BaseMethod } from '../api/BaseMethod';
|
|
5
|
+
|
|
6
|
+
const Log = getLogger(LoggerNames.Core);
|
|
7
|
+
export type RequestTask = {
|
|
8
|
+
id: number;
|
|
9
|
+
method: BaseMethod;
|
|
10
|
+
callPromise?: Deferred<any> | undefined;
|
|
11
|
+
abortController?: AbortController;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export default class RequestQueue {
|
|
15
|
+
private requestQueue = new Map<number, RequestTask>();
|
|
16
|
+
|
|
17
|
+
private pendingCallbackTasks = new Map<string, Deferred<void>>();
|
|
18
|
+
|
|
19
|
+
// 生成唯一请求ID
|
|
20
|
+
public generateRequestId = (method?: BaseMethod) => {
|
|
21
|
+
if (method && method.responseID != null) {
|
|
22
|
+
return method.responseID;
|
|
23
|
+
}
|
|
24
|
+
return Date.now();
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
public createTask(method: BaseMethod): RequestTask {
|
|
28
|
+
const requestId = this.generateRequestId(method);
|
|
29
|
+
if (method && method.responseID !== requestId) {
|
|
30
|
+
method.responseID = requestId;
|
|
31
|
+
}
|
|
32
|
+
const abortController = new AbortController();
|
|
33
|
+
const task = { id: requestId, method, abortController };
|
|
34
|
+
this.requestQueue.set(requestId, task);
|
|
35
|
+
return task;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
public getTask(requestId: number): RequestTask | undefined {
|
|
39
|
+
return this.requestQueue.get(requestId);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// 获取请求的AbortController
|
|
43
|
+
public getAbortController(requestId: number) {
|
|
44
|
+
return this.requestQueue.get(requestId)?.abortController;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// 取消特定请求
|
|
48
|
+
public abortRequest(requestId: number) {
|
|
49
|
+
const request = this.requestQueue.get(requestId);
|
|
50
|
+
if (request?.abortController) {
|
|
51
|
+
Log.debug(`Aborting request ${requestId}`);
|
|
52
|
+
request.abortController.abort();
|
|
53
|
+
return true;
|
|
54
|
+
}
|
|
55
|
+
return false;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// 取消与指定connectId相关的所有请求
|
|
59
|
+
public abortRequestsByConnectId(connectId: string) {
|
|
60
|
+
let count = 0;
|
|
61
|
+
this.requestQueue.forEach((request, _) => {
|
|
62
|
+
if (request.abortController && request.method.connectId === connectId) {
|
|
63
|
+
request.abortController.abort();
|
|
64
|
+
request.abortController = undefined;
|
|
65
|
+
count++;
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
return count;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// 取消所有请求
|
|
72
|
+
public abortAllRequests() {
|
|
73
|
+
let count = 0;
|
|
74
|
+
this.requestQueue.forEach(request => {
|
|
75
|
+
if (request.abortController) {
|
|
76
|
+
request.abortController.abort();
|
|
77
|
+
count++;
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
return count;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// 迭代所有请求
|
|
84
|
+
public getRequestTasksId() {
|
|
85
|
+
return Array.from(this.requestQueue.keys());
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// 解析请求
|
|
89
|
+
public resolveRequest(requestId: number, response: any) {
|
|
90
|
+
const request = this.requestQueue.get(requestId);
|
|
91
|
+
if (request) {
|
|
92
|
+
request.callPromise?.resolve(response);
|
|
93
|
+
}
|
|
94
|
+
this.releaseTask(requestId);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// 拒绝请求
|
|
98
|
+
public rejectRequest(requestId: number, error: any) {
|
|
99
|
+
const request = this.requestQueue.get(requestId);
|
|
100
|
+
if (request) {
|
|
101
|
+
request.callPromise?.reject(error);
|
|
102
|
+
}
|
|
103
|
+
this.releaseTask(requestId);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// 删除请求
|
|
107
|
+
public releaseTask(requestId: number) {
|
|
108
|
+
this.requestQueue.delete(requestId);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
public registerPendingCallbackTask(connectId: string, callbackPromise: Deferred<void>) {
|
|
112
|
+
this.pendingCallbackTasks.set(connectId, callbackPromise);
|
|
113
|
+
|
|
114
|
+
callbackPromise.promise.finally(() => {
|
|
115
|
+
Log.debug(`Callback task completed for connectId: ${connectId}`);
|
|
116
|
+
this.pendingCallbackTasks.delete(connectId);
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
public async waitForPendingCallbackTasks(connectId: string): Promise<void> {
|
|
121
|
+
const pendingTask = this.pendingCallbackTasks.get(connectId);
|
|
122
|
+
if (pendingTask) {
|
|
123
|
+
Log.debug(`Waiting for pending callback task to complete for connectId: ${connectId}`);
|
|
124
|
+
await pendingTask.promise;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
public cancelCallbackTasks(connectId: string) {
|
|
129
|
+
const pendingTask = this.pendingCallbackTasks.get(connectId);
|
|
130
|
+
if (pendingTask) {
|
|
131
|
+
pendingTask.resolve();
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|