@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,177 @@
|
|
|
1
|
+
import BigNumber from 'bignumber.js';
|
|
2
|
+
import { Buffer } from 'buffer';
|
|
3
|
+
|
|
4
|
+
function isBuffer(arg: any) {
|
|
5
|
+
return Buffer.isBuffer(arg) || arg instanceof Uint8Array;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
function bigNumberToBuffer(bn: BigNumber, options: { size: number }): Buffer {
|
|
9
|
+
const hex = bn.toString(16);
|
|
10
|
+
const paddedHex = hex.padStart(options.size * 2, '0');
|
|
11
|
+
return Buffer.from(paddedHex, 'hex');
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
class BufferWriter {
|
|
15
|
+
bufLen: number;
|
|
16
|
+
|
|
17
|
+
// @ts-expect-error
|
|
18
|
+
bufs: Buffer[];
|
|
19
|
+
|
|
20
|
+
constructor(obj?: Partial<BufferWriter>) {
|
|
21
|
+
this.bufLen = 0;
|
|
22
|
+
if (obj) {
|
|
23
|
+
this.set(obj);
|
|
24
|
+
} else {
|
|
25
|
+
this.bufs = [];
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
public set(obj: Partial<BufferWriter>): this {
|
|
30
|
+
this.bufs = obj.bufs || this.bufs || [];
|
|
31
|
+
this.bufLen = this.bufs.reduce((prev, buf) => prev + buf.length, 0);
|
|
32
|
+
return this;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
public toBuffer(): Buffer {
|
|
36
|
+
return this.concat();
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
public concat(): Buffer {
|
|
40
|
+
return Buffer.concat(this.bufs, this.bufLen);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
public write(buf: Buffer): this {
|
|
44
|
+
if (!isBuffer(buf)) throw new Error('BufferWriter.write: Invalid type');
|
|
45
|
+
this.bufs.push(buf);
|
|
46
|
+
this.bufLen += buf.length;
|
|
47
|
+
return this;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
public writeReverse(buf: Buffer): this {
|
|
51
|
+
if (!isBuffer(buf)) throw new Error('BufferWriter.write: Invalid type');
|
|
52
|
+
this.bufs.push(buf.reverse());
|
|
53
|
+
this.bufLen += buf.length;
|
|
54
|
+
return this;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
public writeVarBytes(buf: Buffer): this {
|
|
58
|
+
if (!isBuffer(buf)) throw new Error('BufferWriter.write: Invalid type');
|
|
59
|
+
this.writeUInt64LE(new BigNumber(buf.length));
|
|
60
|
+
this.write(buf);
|
|
61
|
+
return this;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
public writeUInt8(n: number): this {
|
|
65
|
+
const buf = Buffer.alloc(1);
|
|
66
|
+
buf.writeUInt8(n, 0);
|
|
67
|
+
this.write(buf);
|
|
68
|
+
return this;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
public writeUInt16BE(n: number): this {
|
|
72
|
+
const buf = Buffer.alloc(2);
|
|
73
|
+
buf.writeUInt16BE(n, 0);
|
|
74
|
+
this.write(buf);
|
|
75
|
+
return this;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
public writeUInt16LE(n: number): this {
|
|
79
|
+
const buf = Buffer.alloc(2);
|
|
80
|
+
buf.writeUInt16LE(n, 0);
|
|
81
|
+
this.write(buf);
|
|
82
|
+
return this;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
public writeUInt32BE(n: number): this {
|
|
86
|
+
const buf = Buffer.alloc(4);
|
|
87
|
+
buf.writeUInt32BE(n, 0);
|
|
88
|
+
this.write(buf);
|
|
89
|
+
return this;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
public writeInt32LE(n: number): this {
|
|
93
|
+
const buf = Buffer.alloc(4);
|
|
94
|
+
buf.writeInt32LE(n, 0);
|
|
95
|
+
this.write(buf);
|
|
96
|
+
return this;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
public writeUInt32LE(n: number): this {
|
|
100
|
+
const buf = Buffer.alloc(4);
|
|
101
|
+
buf.writeUInt32LE(n, 0);
|
|
102
|
+
this.write(buf);
|
|
103
|
+
return this;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
public writeUInt64BEBN(bn: BigNumber): this {
|
|
107
|
+
const buf = bigNumberToBuffer(bn, { size: 8 });
|
|
108
|
+
this.write(buf);
|
|
109
|
+
return this;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
public writeUInt64LE(bn: BigNumber): this {
|
|
113
|
+
const buf = bigNumberToBuffer(bn, { size: 8 });
|
|
114
|
+
this.writeReverse(buf);
|
|
115
|
+
return this;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
public writeVarintNum(n: number): this {
|
|
119
|
+
const buf = BufferWriter.varintBufNum(n);
|
|
120
|
+
this.write(buf);
|
|
121
|
+
return this;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
public writeVarintBN(bn: BigNumber): this {
|
|
125
|
+
const buf = BufferWriter.varintBufBN(bn);
|
|
126
|
+
this.write(buf);
|
|
127
|
+
return this;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
public static varintBufNum(n: number): Buffer {
|
|
131
|
+
let buf: Buffer;
|
|
132
|
+
if (n < 253) {
|
|
133
|
+
buf = Buffer.alloc(1);
|
|
134
|
+
buf.writeUInt8(n, 0);
|
|
135
|
+
} else if (n < 0x10000) {
|
|
136
|
+
buf = Buffer.alloc(1 + 2);
|
|
137
|
+
buf.writeUInt8(253, 0);
|
|
138
|
+
buf.writeUInt16LE(n, 1);
|
|
139
|
+
} else if (n < 0x100000000) {
|
|
140
|
+
buf = Buffer.alloc(1 + 4);
|
|
141
|
+
buf.writeUInt8(254, 0);
|
|
142
|
+
buf.writeUInt32LE(n, 1);
|
|
143
|
+
} else {
|
|
144
|
+
buf = Buffer.alloc(1 + 8);
|
|
145
|
+
buf.writeUInt8(255, 0);
|
|
146
|
+
// eslint-disable-next-line no-bitwise
|
|
147
|
+
buf.writeInt32LE(n & -1, 1);
|
|
148
|
+
buf.writeUInt32LE(Math.floor(n / 0x100000000), 5);
|
|
149
|
+
}
|
|
150
|
+
return buf;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
public static varintBufBN(bn: BigNumber): Buffer {
|
|
154
|
+
let buf: Buffer;
|
|
155
|
+
const n = bn.toNumber();
|
|
156
|
+
if (n < 253) {
|
|
157
|
+
buf = Buffer.alloc(1);
|
|
158
|
+
buf.writeUInt8(n, 0);
|
|
159
|
+
} else if (n < 0x10000) {
|
|
160
|
+
buf = Buffer.alloc(1 + 2);
|
|
161
|
+
buf.writeUInt8(253, 0);
|
|
162
|
+
buf.writeUInt16LE(n, 1);
|
|
163
|
+
} else if (n < 0x100000000) {
|
|
164
|
+
buf = Buffer.alloc(1 + 4);
|
|
165
|
+
buf.writeUInt8(254, 0);
|
|
166
|
+
buf.writeUInt32LE(n, 1);
|
|
167
|
+
} else {
|
|
168
|
+
const bw = new BufferWriter();
|
|
169
|
+
bw.writeUInt8(255);
|
|
170
|
+
bw.writeUInt64LE(bn);
|
|
171
|
+
buf = bw.concat();
|
|
172
|
+
}
|
|
173
|
+
return buf;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export default BufferWriter;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { blake2b } from '@noble/hashes/blake2b';
|
|
2
|
+
import BigNumber from 'bignumber.js';
|
|
3
|
+
|
|
4
|
+
import BufferWriter from './BufferWriter';
|
|
5
|
+
|
|
6
|
+
import type { Hash } from '@noble/hashes/utils';
|
|
7
|
+
|
|
8
|
+
const TransactionSigningHashKey = Buffer.from('TransactionSigningHash');
|
|
9
|
+
|
|
10
|
+
class HashWriter {
|
|
11
|
+
private blake2b: Hash<any>;
|
|
12
|
+
|
|
13
|
+
bw: BufferWriter;
|
|
14
|
+
|
|
15
|
+
hash: {
|
|
16
|
+
update: (buf: Buffer) => void;
|
|
17
|
+
digest: () => Buffer;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
constructor() {
|
|
21
|
+
this.bw = new BufferWriter();
|
|
22
|
+
this.blake2b = blake2b.create({ dkLen: 32, key: TransactionSigningHashKey });
|
|
23
|
+
this.hash = {
|
|
24
|
+
update: (buf: Buffer) => {
|
|
25
|
+
this.bw.write(buf);
|
|
26
|
+
this.blake2b.update(buf);
|
|
27
|
+
},
|
|
28
|
+
digest: () => Buffer.from(this.blake2b.digest()),
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
writeUInt8(value: number): void {
|
|
33
|
+
const buf = new BufferWriter();
|
|
34
|
+
buf.writeUInt8(value);
|
|
35
|
+
this.hash.update(buf.toBuffer());
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
writeUInt16LE(value: number): void {
|
|
39
|
+
const buf = new BufferWriter();
|
|
40
|
+
buf.writeUInt16LE(value);
|
|
41
|
+
this.hash.update(buf.toBuffer());
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
writeUInt32LE(value: number): void {
|
|
45
|
+
const buf = new BufferWriter();
|
|
46
|
+
buf.writeUInt32LE(value);
|
|
47
|
+
this.hash.update(buf.toBuffer());
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
writeUInt64LE(value: BigNumber.Value): void {
|
|
51
|
+
const buf = new BufferWriter();
|
|
52
|
+
buf.writeUInt64LE(new BigNumber(value));
|
|
53
|
+
this.hash.update(buf.toBuffer());
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
writeVarBytes(buf: Buffer): void {
|
|
57
|
+
this.writeUInt64LE(buf.length);
|
|
58
|
+
this.hash.update(buf);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
writeHash(buf: Buffer): void {
|
|
62
|
+
this.hash.update(buf);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
finalize(): Buffer {
|
|
66
|
+
return this.hash.digest();
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
toBuffer(): Buffer {
|
|
70
|
+
return this.bw.toBuffer();
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export { HashWriter };
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
|
2
|
+
import { SignatureType } from './SignatureType';
|
|
3
|
+
import { HashWriter } from './HashWriter';
|
|
4
|
+
|
|
5
|
+
import type {
|
|
6
|
+
KaspaSignInputParams,
|
|
7
|
+
KaspaSignOutputParams,
|
|
8
|
+
KaspaSignTransactionParams,
|
|
9
|
+
} from '../../../types';
|
|
10
|
+
|
|
11
|
+
export function zeroHash() {
|
|
12
|
+
return Buffer.alloc(32);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export function zeroSubnetworkID() {
|
|
16
|
+
return Buffer.alloc(20);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function isSighashAnyoneCanPay(sighashType: number) {
|
|
20
|
+
// eslint-disable-next-line no-bitwise
|
|
21
|
+
return (sighashType & SignatureType.SIGHASH_ANYONECANPAY) === SignatureType.SIGHASH_ANYONECANPAY;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function isSighashSingle(sighashType: number) {
|
|
25
|
+
// eslint-disable-next-line no-bitwise
|
|
26
|
+
return (sighashType & 31) === SignatureType.SIGHASH_SINGLE;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
function isSighashNone(sighashType: number) {
|
|
30
|
+
// eslint-disable-next-line no-bitwise
|
|
31
|
+
return (sighashType & 31) === SignatureType.SIGHASH_NONE;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
function hashOutpoint(hashWriter: HashWriter, input: KaspaSignInputParams) {
|
|
35
|
+
hashWriter.writeHash(Buffer.from(input.prevTxId, 'hex'));
|
|
36
|
+
hashWriter.writeUInt32LE(input.outputIndex);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function getPreviousOutputsHash(
|
|
40
|
+
transaction: KaspaSignTransactionParams,
|
|
41
|
+
sighashType: SignatureType
|
|
42
|
+
) {
|
|
43
|
+
if (isSighashAnyoneCanPay(sighashType)) {
|
|
44
|
+
return zeroHash();
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const hashWriter = new HashWriter();
|
|
48
|
+
transaction.inputs.forEach(input => hashOutpoint(hashWriter, input));
|
|
49
|
+
return hashWriter.finalize();
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function getSequencesHash(transaction: KaspaSignTransactionParams, sighashType: SignatureType) {
|
|
53
|
+
if (
|
|
54
|
+
isSighashSingle(sighashType) ||
|
|
55
|
+
isSighashAnyoneCanPay(sighashType) ||
|
|
56
|
+
isSighashNone(sighashType)
|
|
57
|
+
) {
|
|
58
|
+
return zeroHash();
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const hashWriter = new HashWriter();
|
|
62
|
+
transaction.inputs.forEach(input => hashWriter.writeUInt64LE(input.sequenceNumber));
|
|
63
|
+
return hashWriter.finalize();
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function getSigOpCountsHash(transaction: KaspaSignTransactionParams, sighashType: SignatureType) {
|
|
67
|
+
if (isSighashAnyoneCanPay(sighashType)) {
|
|
68
|
+
return zeroHash();
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
const hashWriter = new HashWriter();
|
|
72
|
+
transaction.inputs.forEach(input => hashWriter.writeUInt8(input.sigOpCount!));
|
|
73
|
+
return hashWriter.finalize();
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
function hashTxOut(hashWriter: HashWriter, output: KaspaSignOutputParams) {
|
|
77
|
+
hashWriter.writeUInt64LE(output.satoshis);
|
|
78
|
+
hashWriter.writeUInt16LE(0); // TODO: USE REAL SCRIPT VERSION
|
|
79
|
+
hashWriter.writeVarBytes(Buffer.from(output.script, 'hex'));
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
function getOutputsHash(
|
|
83
|
+
transaction: KaspaSignTransactionParams,
|
|
84
|
+
inputNumber: number,
|
|
85
|
+
sighashType: SignatureType
|
|
86
|
+
) {
|
|
87
|
+
if (isSighashNone(sighashType)) {
|
|
88
|
+
return zeroHash();
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// SigHashSingle: If the relevant output exists - return its hash, otherwise return zero-hash
|
|
92
|
+
if (isSighashSingle(sighashType)) {
|
|
93
|
+
if (inputNumber >= transaction.outputs.length) {
|
|
94
|
+
return zeroHash();
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
const hashWriter = new HashWriter();
|
|
98
|
+
return hashWriter.finalize();
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
const hashWriter = new HashWriter();
|
|
102
|
+
transaction.outputs.forEach(output => hashTxOut(hashWriter, output));
|
|
103
|
+
return hashWriter.finalize();
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Returns a buffer of length 32 bytes with the hash that needs to be signed
|
|
108
|
+
* for OP_CHECKSIG.
|
|
109
|
+
*
|
|
110
|
+
* @name serialize
|
|
111
|
+
* @param {Transaction} transaction the transaction to sign
|
|
112
|
+
* @param {number} sighashType the type of the hash
|
|
113
|
+
* @param {number} inputNumber the input index for the signature
|
|
114
|
+
* @param {Script} subscript the script that will be signed
|
|
115
|
+
* @param {satoshisBN} input's amount (for ForkId signatures)
|
|
116
|
+
*
|
|
117
|
+
*/
|
|
118
|
+
export function serialize(transaction: KaspaSignTransactionParams, inputNumber: number) {
|
|
119
|
+
const hashWriter = new HashWriter();
|
|
120
|
+
|
|
121
|
+
hashWriter.writeUInt16LE(transaction.version);
|
|
122
|
+
hashWriter.writeHash(getPreviousOutputsHash(transaction, transaction.sigHashType!));
|
|
123
|
+
hashWriter.writeHash(getSequencesHash(transaction, transaction.sigHashType!));
|
|
124
|
+
hashWriter.writeHash(getSigOpCountsHash(transaction, transaction.sigHashType!));
|
|
125
|
+
|
|
126
|
+
const input = transaction.inputs[inputNumber];
|
|
127
|
+
hashOutpoint(hashWriter, input);
|
|
128
|
+
hashWriter.writeUInt16LE(0); // TODO: USE REAL SCRIPT VERSION
|
|
129
|
+
hashWriter.writeVarBytes(Buffer.from(input.output.script, 'hex'));
|
|
130
|
+
hashWriter.writeUInt64LE(input.output.satoshis);
|
|
131
|
+
hashWriter.writeUInt64LE(input.sequenceNumber);
|
|
132
|
+
hashWriter.writeUInt8(transaction.sigOpCount ?? 1); // sigOpCount
|
|
133
|
+
hashWriter.writeHash(getOutputsHash(transaction, inputNumber, transaction.sigHashType!));
|
|
134
|
+
hashWriter.writeUInt64LE(transaction.lockTime);
|
|
135
|
+
hashWriter.writeHash(zeroSubnetworkID()); // TODO: USE REAL SUBNETWORK ID
|
|
136
|
+
hashWriter.writeUInt64LE(0); // TODO: USE REAL GAS
|
|
137
|
+
hashWriter.writeHash(zeroHash()); // TODO: USE REAL PAYLOAD HASH
|
|
138
|
+
hashWriter.writeUInt8(transaction.sigHashType!);
|
|
139
|
+
|
|
140
|
+
return {
|
|
141
|
+
hash: hashWriter.finalize(),
|
|
142
|
+
raw: hashWriter.toBuffer(),
|
|
143
|
+
};
|
|
144
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { UI_REQUEST } from '../../constants/ui-request';
|
|
2
|
+
import { BaseMethod } from '../BaseMethod';
|
|
3
|
+
import { validateParams, validateResult } from '../helpers/paramsValidator';
|
|
4
|
+
import { bytesToHex } from '../helpers/hexUtils';
|
|
5
|
+
|
|
6
|
+
import type { LnurlAuth as ILnurlAuth } from '@onetokenfe/hd-transport';
|
|
7
|
+
|
|
8
|
+
export default class LnurlAuth1 extends BaseMethod<ILnurlAuth> {
|
|
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: 'domain', type: 'string', required: true },
|
|
18
|
+
{ name: 'k1', type: 'string', required: true },
|
|
19
|
+
]);
|
|
20
|
+
|
|
21
|
+
this.params = {
|
|
22
|
+
domain: bytesToHex(Buffer.from(payload.domain, 'utf-8')),
|
|
23
|
+
data: bytesToHex(Buffer.from(payload.k1, 'hex')),
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
getVersionRange() {
|
|
28
|
+
return {
|
|
29
|
+
model_mini: {
|
|
30
|
+
min: '3.7.0',
|
|
31
|
+
},
|
|
32
|
+
model_touch: {
|
|
33
|
+
min: '4.8.0',
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
async run() {
|
|
39
|
+
const { message } = await this.device.commands.typedCall(
|
|
40
|
+
'LnurlAuth',
|
|
41
|
+
'LnurlAuthResp',
|
|
42
|
+
this.params
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
validateResult(message, ['publickey', 'path']);
|
|
46
|
+
|
|
47
|
+
return {
|
|
48
|
+
...message,
|
|
49
|
+
pub: message.publickey,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
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 { NearGetAddress as HardwareNearGetAddress } from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { NearAddress, NearGetAddressParams } from '../../types';
|
|
8
|
+
|
|
9
|
+
export default class NearGetAddress extends BaseMethod<HardwareNearGetAddress[]> {
|
|
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: NearGetAddressParams) => {
|
|
25
|
+
const addressN = validatePath(batch.path, 3);
|
|
26
|
+
|
|
27
|
+
validateParams(batch, [
|
|
28
|
+
{ name: 'path', required: true },
|
|
29
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
30
|
+
]);
|
|
31
|
+
|
|
32
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
33
|
+
|
|
34
|
+
this.params.push({
|
|
35
|
+
address_n: addressN,
|
|
36
|
+
show_display: showOnOneToken,
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
getVersionRange() {
|
|
42
|
+
return {
|
|
43
|
+
model_mini: {
|
|
44
|
+
min: '2.5.0',
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
async run() {
|
|
50
|
+
const responses: NearAddress[] = [];
|
|
51
|
+
|
|
52
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
53
|
+
const param = this.params[i];
|
|
54
|
+
|
|
55
|
+
const res = await this.device.commands.typedCall('NearGetAddress', 'NearAddress', {
|
|
56
|
+
...param,
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
const { address } = res.message;
|
|
60
|
+
|
|
61
|
+
const result = {
|
|
62
|
+
path: serializedPath(param.address_n),
|
|
63
|
+
address,
|
|
64
|
+
};
|
|
65
|
+
responses.push(result);
|
|
66
|
+
this.postPreviousAddressMessage(result);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
validateResult(responses, ['address'], {
|
|
70
|
+
expectedLength: this.params.length,
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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 { NearSignTx as HardwareNearSignTx } from '@onetokenfe/hd-transport';
|
|
8
|
+
|
|
9
|
+
export default class NearSignTransaction extends BaseMethod<HardwareNearSignTx> {
|
|
10
|
+
init() {
|
|
11
|
+
this.checkDeviceId = true;
|
|
12
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
13
|
+
|
|
14
|
+
// check payload
|
|
15
|
+
validateParams(this.payload, [
|
|
16
|
+
{ name: 'path', required: true },
|
|
17
|
+
{ name: 'rawTx', type: 'hexString', required: true },
|
|
18
|
+
]);
|
|
19
|
+
|
|
20
|
+
const { path, rawTx } = this.payload;
|
|
21
|
+
|
|
22
|
+
const addressN = validatePath(path, 3);
|
|
23
|
+
|
|
24
|
+
// init params
|
|
25
|
+
this.params = {
|
|
26
|
+
address_n: addressN,
|
|
27
|
+
raw_tx: formatAnyHex(rawTx),
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
getVersionRange() {
|
|
32
|
+
return {
|
|
33
|
+
model_mini: {
|
|
34
|
+
min: '2.5.0',
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
async run() {
|
|
40
|
+
const res = await this.device.commands.typedCall('NearSignTx', 'NearSignedTx', {
|
|
41
|
+
...this.params,
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
return Promise.resolve(res.message);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
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 { NEMGetAddress as HardwareNEMGetAddress } from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { NEMAddress, NEMGetAddressParams } from '../../types';
|
|
8
|
+
|
|
9
|
+
const MAINNET = 0x68; // 104
|
|
10
|
+
|
|
11
|
+
export default class NEMGetAddress extends BaseMethod<HardwareNEMGetAddress[]> {
|
|
12
|
+
hasBundle = false;
|
|
13
|
+
|
|
14
|
+
init() {
|
|
15
|
+
this.checkDeviceId = true;
|
|
16
|
+
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
|
|
17
|
+
|
|
18
|
+
this.hasBundle = !!this.payload?.bundle;
|
|
19
|
+
const payload = this.hasBundle ? this.payload : { bundle: [this.payload] };
|
|
20
|
+
|
|
21
|
+
// check payload
|
|
22
|
+
validateParams(payload, [{ name: 'bundle', type: 'array' }]);
|
|
23
|
+
|
|
24
|
+
// init params
|
|
25
|
+
this.params = [];
|
|
26
|
+
payload.bundle.forEach((batch: NEMGetAddressParams) => {
|
|
27
|
+
const addressN = validatePath(batch.path, 3);
|
|
28
|
+
|
|
29
|
+
validateParams(batch, [
|
|
30
|
+
{ name: 'path', required: true },
|
|
31
|
+
{ name: 'network', type: 'number' },
|
|
32
|
+
{ name: 'showOnOneToken', type: 'boolean' },
|
|
33
|
+
]);
|
|
34
|
+
|
|
35
|
+
const showOnOneToken = batch.showOnOneToken ?? true;
|
|
36
|
+
|
|
37
|
+
this.params.push({
|
|
38
|
+
address_n: addressN,
|
|
39
|
+
network: batch.network || MAINNET,
|
|
40
|
+
show_display: showOnOneToken,
|
|
41
|
+
});
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
async run() {
|
|
46
|
+
const responses: NEMAddress[] = [];
|
|
47
|
+
|
|
48
|
+
for (let i = 0; i < this.params.length; i++) {
|
|
49
|
+
const param = this.params[i];
|
|
50
|
+
|
|
51
|
+
const res = await this.device.commands.typedCall('NEMGetAddress', 'NEMAddress', {
|
|
52
|
+
...param,
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
const path = serializedPath(param.address_n);
|
|
56
|
+
responses.push({
|
|
57
|
+
path,
|
|
58
|
+
...res.message,
|
|
59
|
+
});
|
|
60
|
+
this.postPreviousAddressMessage({
|
|
61
|
+
path,
|
|
62
|
+
address: res.message.address,
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
validateResult(responses, ['address'], {
|
|
67
|
+
expectedLength: this.params.length,
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
return Promise.resolve(this.hasBundle ? responses : responses[0]);
|
|
71
|
+
}
|
|
72
|
+
}
|