@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,194 @@
|
|
|
1
|
+
export type { BTCAddress, BTCGetAddressParams } from './btcGetAddress';
|
|
2
|
+
export type { BTCPublicKey, BTCGetPublicKeyParams } from './btcGetPublicKey';
|
|
3
|
+
export type { BTCSignMessageParams } from './btcSignMessage';
|
|
4
|
+
export type { BTCVerifyMessageParams } from './btcVerifyMessage';
|
|
5
|
+
export type {
|
|
6
|
+
RefTransaction,
|
|
7
|
+
AccountAddress,
|
|
8
|
+
AccountAddresses,
|
|
9
|
+
BTCSignTransactionParams,
|
|
10
|
+
SignedTransaction,
|
|
11
|
+
TransactionOptions,
|
|
12
|
+
} from './btcSignTransaction';
|
|
13
|
+
|
|
14
|
+
export type { CipheredKeyValue, CipheredKeyValueParams } from './cipherKeyValue';
|
|
15
|
+
|
|
16
|
+
export type { DeviceChangePinParams } from './deviceChangePin';
|
|
17
|
+
export type { DeviceFlagsParams } from './deviceFlags';
|
|
18
|
+
export type { DeviceRecoveryParams } from './deviceRecovery';
|
|
19
|
+
export type { DeviceResetParams } from './deviceReset';
|
|
20
|
+
export type { DeviceSettingsParams } from './deviceSettings';
|
|
21
|
+
export type { DeviceVerifyParams, DeviceVerifySignature } from './deviceVerify';
|
|
22
|
+
export type { DeviceSupportFeatures } from './deviceSupportFeatures';
|
|
23
|
+
export type {
|
|
24
|
+
DeviceUploadResourceParams,
|
|
25
|
+
DeviceUploadResourceResponse,
|
|
26
|
+
} from './deviceUploadResource';
|
|
27
|
+
export type {
|
|
28
|
+
FirmwareUpdateParams,
|
|
29
|
+
FirmwareUpdateBinaryParams,
|
|
30
|
+
FirmwareUpdateV3Params,
|
|
31
|
+
} from './firmwareUpdate';
|
|
32
|
+
export type { AllFirmwareRelease } from './checkAllFirmwareRelease';
|
|
33
|
+
|
|
34
|
+
export type { AllNetworkAddressParams, AllNetworkGetAddressParams } from './allNetworkGetAddress';
|
|
35
|
+
|
|
36
|
+
export type { EVMAddress, EVMGetAddressParams } from './evmGetAddress';
|
|
37
|
+
export type { EVMPublicKey, EVMGetPublicKeyParams } from './evmGetPublicKey';
|
|
38
|
+
export type { EVMSignMessageParams } from './evmSignMessage';
|
|
39
|
+
export type { EVMSignMessageEIP712Params } from './evmSignMessageEIP712';
|
|
40
|
+
export type {
|
|
41
|
+
EVMTransaction,
|
|
42
|
+
EVMTransactionEIP1559,
|
|
43
|
+
EVMTransactionEIP7702,
|
|
44
|
+
EVMAuthorization,
|
|
45
|
+
EVMAuthorizationSignature,
|
|
46
|
+
EVMSignedTx,
|
|
47
|
+
EVMSignTransactionParams,
|
|
48
|
+
EVMAccessList,
|
|
49
|
+
} from './evmSignTransaction';
|
|
50
|
+
export type {
|
|
51
|
+
EthereumSignTypedDataTypes,
|
|
52
|
+
EthereumSignTypedDataTypeProperty,
|
|
53
|
+
EthereumSignTypedDataMessage,
|
|
54
|
+
EVMSignTypedDataParams,
|
|
55
|
+
} from './evmSignTypedData';
|
|
56
|
+
export type { EVMVerifyMessageParams } from './evmVerifyMessage';
|
|
57
|
+
|
|
58
|
+
export type { StarcoinAddress, StarcoinGetAddressParams } from './starcoinGetAddress';
|
|
59
|
+
export type { StarcoinPublicKey, StarcoinGetPublicKeyParams } from './starcoinGetPublicKey';
|
|
60
|
+
export type { StarcoinSignMessageParams } from './starcoinSignMessage';
|
|
61
|
+
export type { StarcoinSignTransactionParams } from './starcoinSignTransaction';
|
|
62
|
+
export type { StarcoinVerifyMessageParams } from './starcoinVerifyMessage';
|
|
63
|
+
|
|
64
|
+
export type { NEMAddress, NEMGetAddressParams } from './nemGetAddress';
|
|
65
|
+
export type {
|
|
66
|
+
NEMAggregateModificationTransaction,
|
|
67
|
+
NEMImportanceTransaction,
|
|
68
|
+
NEMMosaic,
|
|
69
|
+
NEMMosaicCreationTransaction,
|
|
70
|
+
NEMMultisigTransaction,
|
|
71
|
+
NEMProvisionNamespaceTransaction,
|
|
72
|
+
NEMSupplyChangeTransaction,
|
|
73
|
+
NEMTransferTransaction,
|
|
74
|
+
NEMTransaction,
|
|
75
|
+
NEMSignTransactionParams,
|
|
76
|
+
} from './nemSignTransaction';
|
|
77
|
+
|
|
78
|
+
export type { SolanaAddress, SolanaGetAddressParams } from './solGetAddress';
|
|
79
|
+
export type { SolanaSignedTx, SolanaSignTransactionParams } from './solSignTransaction';
|
|
80
|
+
export type {
|
|
81
|
+
SolSignOffchainMessageResponse,
|
|
82
|
+
SolSignOffchainMessageParams,
|
|
83
|
+
} from './solSignOffchainMessage';
|
|
84
|
+
export type { SolSignMessageResponse, SolSignMessageParams } from './solSignMessage';
|
|
85
|
+
|
|
86
|
+
export type { StellarAddress, StellarGetAddressParams } from './stellarGetAddress';
|
|
87
|
+
export type {
|
|
88
|
+
StellarAsset,
|
|
89
|
+
StellarOperation,
|
|
90
|
+
StellarTransaction,
|
|
91
|
+
StellarSignTransactionParams,
|
|
92
|
+
} from './stellarSignTransaction';
|
|
93
|
+
|
|
94
|
+
export type { TronAddress, TronGetAddressParams } from './tronGetAddress';
|
|
95
|
+
export type { TronSignMessageParams } from './tronSignMessage';
|
|
96
|
+
export type {
|
|
97
|
+
TronTransaction,
|
|
98
|
+
TronSignTransactionParams,
|
|
99
|
+
TronTransactionContract,
|
|
100
|
+
TronTransferContract,
|
|
101
|
+
TronTriggerSmartContract,
|
|
102
|
+
TronFreezeBalanceV2Contract,
|
|
103
|
+
TronUnfreezeBalanceV2Contract,
|
|
104
|
+
TronDelegateResourceContract,
|
|
105
|
+
TronUnDelegateResourceContract,
|
|
106
|
+
TronWithdrawBalanceContract,
|
|
107
|
+
TronWithdrawExpireUnfreezeContract,
|
|
108
|
+
} from './tronSignTransaction';
|
|
109
|
+
|
|
110
|
+
export type { ConfluxAddress, ConfluxGetAddressParams } from './confluxGetAddress';
|
|
111
|
+
export type { ConfluxSignMessageParams } from './confluxSignMessage';
|
|
112
|
+
export type { ConfluxSignMessageCIP23Params } from './confluxSignMessageCIP23';
|
|
113
|
+
export type {
|
|
114
|
+
ConfluxSignTransactionParams,
|
|
115
|
+
ConfluxSignedTx,
|
|
116
|
+
ConfluxTransaction,
|
|
117
|
+
} from './confluxSignTransaction';
|
|
118
|
+
|
|
119
|
+
export type { NearAddress, NearGetAddressParams } from './nearGetAddress';
|
|
120
|
+
export type { NearSignTransactionParams } from './nearSignTransaction';
|
|
121
|
+
|
|
122
|
+
export type { AptosAddress, AptosGetAddressParams } from './aptosGetAddress';
|
|
123
|
+
export type { AptosPublicKey, AptosGetPublicKeyParams } from './aptosGetPublicKey';
|
|
124
|
+
export type { AptosMessageSignature, AptosSignMessageParams } from './aptosSignMessage';
|
|
125
|
+
export type { AptosSignInMessageSignature, AptosSignInMessageParams } from './aptosSignInMessage';
|
|
126
|
+
export type { AptosSignedTx, AptosSignTransactionParams } from './aptosSignTransaction';
|
|
127
|
+
|
|
128
|
+
export type { AlgoAddress, AlgoGetAddressParams } from './algoGetAddress';
|
|
129
|
+
export type { AlgoSignedTx, AlgoSignTransactionParams } from './algoSignTransaction';
|
|
130
|
+
|
|
131
|
+
export type { CosmosAddress, CosmosGetAddressParams } from './cosmosGetAddress';
|
|
132
|
+
export type { CosmosPublicKey, CosmosGetPublicKeyParams } from './cosmosGetPublicKey';
|
|
133
|
+
export type { CosmosSignedTx, CosmosSignTransactionParams } from './cosmosSignTransaction';
|
|
134
|
+
|
|
135
|
+
export type { SuiAddress, SuiGetAddressParams } from './suiGetAddress';
|
|
136
|
+
export type { SuiPublicKey, SuiGetPublicKeyParams } from './suiGetPublicKey';
|
|
137
|
+
export type { SuiSignMessageParams } from './suiSignMessage';
|
|
138
|
+
export type { SuiSignedTx, SuiSignTransactionParams } from './suiSignTransaction';
|
|
139
|
+
|
|
140
|
+
export type {
|
|
141
|
+
CardanoGetAddressMethodParams,
|
|
142
|
+
CardanoAddress,
|
|
143
|
+
CardanoGetAddressParams,
|
|
144
|
+
} from './cardanoGetAddress';
|
|
145
|
+
export type {
|
|
146
|
+
CardanoSignMessageMethodParams,
|
|
147
|
+
CardanoSignMessageParams,
|
|
148
|
+
} from './cardanoSignMessage';
|
|
149
|
+
export type { CardanoSignTransaction, CardanoSignedTxData } from './cardano';
|
|
150
|
+
|
|
151
|
+
export type { FilecoinAddress, FilecoinGetAddressParams } from './filecoinGetAddress';
|
|
152
|
+
export type { FilecoinSignTransactionParams, FilecoinSignedTx } from './filecoinSignTransaction';
|
|
153
|
+
|
|
154
|
+
export type { PolkadotAddress, PolkadotGetAddressParams } from './polkadotGetAddress';
|
|
155
|
+
export type { PolkadotSignedTx, PolkadotSignTransactionParams } from './polkadotSignTransaction';
|
|
156
|
+
|
|
157
|
+
export type { KaspaAddress, KaspaGetAddressParams } from './kaspaGetAddress';
|
|
158
|
+
export type {
|
|
159
|
+
KaspaSignature,
|
|
160
|
+
KaspaSignTransactionParams,
|
|
161
|
+
KaspaSignInputParams,
|
|
162
|
+
KaspaSignOutputParams,
|
|
163
|
+
} from './kaspaSignTransaction';
|
|
164
|
+
|
|
165
|
+
export type { NexaAddress, NexaGetAddressParams } from './nexaGetAddress';
|
|
166
|
+
export type {
|
|
167
|
+
NexaSignature,
|
|
168
|
+
NexaSignTransactionParams,
|
|
169
|
+
NexaSignInputParams,
|
|
170
|
+
NexaSignOutputParams,
|
|
171
|
+
} from './nexaSignTransaction';
|
|
172
|
+
|
|
173
|
+
export type { NervosAddress, NervosGetAddressParams } from './nervosGetAddress';
|
|
174
|
+
export type { NervosSignedTx, NervosSignTransactionParams } from './nervosSignTransaction';
|
|
175
|
+
|
|
176
|
+
export type { DnxAddress, DnxGetAddressParams } from './dnxGetAddress';
|
|
177
|
+
export type { DnxTxKey, DnxSignTransactionParams, DnxSignature } from './dnxSignTransaction';
|
|
178
|
+
|
|
179
|
+
export type { TonAddress, TonGetAddressParams } from './tonGetAddress';
|
|
180
|
+
export type { TonSignMessageParams } from './tonSignMessage';
|
|
181
|
+
export type { TonSignProofParams } from './tonSignProof';
|
|
182
|
+
|
|
183
|
+
export type { ScdoAddress, ScdoGetAddressParams } from './scdoGetAddress';
|
|
184
|
+
export type { ScdoSignMessageParams } from './scdoSignMessage';
|
|
185
|
+
export type { ScdoSignTransactionParams, ScdoSignedTx } from './scdoSignTransaction';
|
|
186
|
+
|
|
187
|
+
export type { AlephiumAddress, AlephiumGetAddressParams } from './alephiumGetAddress';
|
|
188
|
+
export type { AlephiumSignMessageParams } from './alephiumSignMessage';
|
|
189
|
+
export type { AlephiumSignTransactionParams, AlephiumSignedTx } from './alephiumSignTransaction';
|
|
190
|
+
|
|
191
|
+
export type { BenfenAddress, BenfenGetAddressParams } from './benfenGetAddress';
|
|
192
|
+
export type { BenfenPublicKey, BenfenGetPublicKeyParams } from './benfenGetPublicKey';
|
|
193
|
+
export type { BenfenSignMessageParams } from './benfenSignMessage';
|
|
194
|
+
export type { BenfenSignedTx, BenfenSignTransactionParams } from './benfenSignTransaction';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { FilecoinAddress as HardwareFilecoinAddress } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type FilecoinAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareFilecoinAddress;
|
|
7
|
+
|
|
8
|
+
export type FilecoinGetAddressParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
showOnOneToken?: boolean;
|
|
11
|
+
isTestnet?: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export declare function filecoinGetAddress(
|
|
15
|
+
connectId: string,
|
|
16
|
+
deviceId: string,
|
|
17
|
+
params: CommonParams & FilecoinGetAddressParams
|
|
18
|
+
): Response<FilecoinAddress>;
|
|
19
|
+
|
|
20
|
+
export declare function filecoinGetAddress(
|
|
21
|
+
connectId: string,
|
|
22
|
+
deviceId: string,
|
|
23
|
+
params: CommonParams & { bundle?: FilecoinGetAddressParams[] }
|
|
24
|
+
): Response<Array<FilecoinAddress>>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { FilecoinSignedTx as HardwareFilecoinSignedTx } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type FilecoinSignedTx = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareFilecoinSignedTx;
|
|
7
|
+
|
|
8
|
+
export type FilecoinSignTransactionParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
rawTx?: string;
|
|
11
|
+
isTestnet?: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export declare function filecoinSignTransaction(
|
|
15
|
+
connectId: string,
|
|
16
|
+
deviceId: string,
|
|
17
|
+
params: CommonParams & FilecoinSignTransactionParams
|
|
18
|
+
): Response<FilecoinSignedTx>;
|
|
19
|
+
|
|
20
|
+
export declare function filecoinSignTransaction(
|
|
21
|
+
connectId: string,
|
|
22
|
+
deviceId: string,
|
|
23
|
+
params: CommonParams & { bundle?: FilecoinSignTransactionParams[] }
|
|
24
|
+
): Response<Array<FilecoinSignedTx>>;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import type { EFirmwareType } from '@onetokenfe/hd-shared';
|
|
2
|
+
import type { PROTO } from '../../constants';
|
|
3
|
+
import type { Params, Response } from '../params';
|
|
4
|
+
|
|
5
|
+
type IUpdateType = 'firmware' | 'ble';
|
|
6
|
+
|
|
7
|
+
export interface FirmwareUpdateBinaryParams {
|
|
8
|
+
binary: ArrayBuffer;
|
|
9
|
+
updateType: IUpdateType;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface FirmwareUpdateParams {
|
|
13
|
+
version?: number[];
|
|
14
|
+
updateType: IUpdateType;
|
|
15
|
+
forcedUpdateRes?: boolean;
|
|
16
|
+
isUpdateBootloader?: boolean;
|
|
17
|
+
firmwareType?: EFirmwareType;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export declare function firmwareUpdate(
|
|
21
|
+
connectId: string | undefined,
|
|
22
|
+
params: Params<FirmwareUpdateParams> & { rebootOnSuccess?: boolean }
|
|
23
|
+
): Response<PROTO.Success>;
|
|
24
|
+
export declare function firmwareUpdate(
|
|
25
|
+
connectId: string | undefined,
|
|
26
|
+
params: Params<FirmwareUpdateBinaryParams> & { rebootOnSuccess?: boolean }
|
|
27
|
+
): Response<PROTO.Success>;
|
|
28
|
+
|
|
29
|
+
type IPlatform = 'native' | 'desktop' | 'ext' | 'web' | 'web-embed';
|
|
30
|
+
type Platform = { platform: IPlatform };
|
|
31
|
+
|
|
32
|
+
export declare function firmwareUpdateV2(
|
|
33
|
+
connectId: string | undefined,
|
|
34
|
+
params: Params<FirmwareUpdateParams & Platform>
|
|
35
|
+
): Response<PROTO.Success>;
|
|
36
|
+
export declare function firmwareUpdateV2(
|
|
37
|
+
connectId: string | undefined,
|
|
38
|
+
params: Params<FirmwareUpdateBinaryParams & Platform>
|
|
39
|
+
): Response<PROTO.Success>;
|
|
40
|
+
|
|
41
|
+
export interface FirmwareUpdateV3Params {
|
|
42
|
+
bleVersion?: number[];
|
|
43
|
+
bleBinary?: ArrayBuffer;
|
|
44
|
+
|
|
45
|
+
firmwareVersion?: number[];
|
|
46
|
+
firmwareBinary?: ArrayBuffer;
|
|
47
|
+
|
|
48
|
+
bootloaderVersion?: number[];
|
|
49
|
+
bootloaderBinary?: ArrayBuffer;
|
|
50
|
+
|
|
51
|
+
resourceBinary?: ArrayBuffer;
|
|
52
|
+
forcedUpdateRes?: boolean;
|
|
53
|
+
|
|
54
|
+
firmwareType?: EFirmwareType;
|
|
55
|
+
|
|
56
|
+
platform: IPlatform;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export declare function firmwareUpdateV3(
|
|
60
|
+
connectId: string | undefined,
|
|
61
|
+
params: Params<FirmwareUpdateV3Params>
|
|
62
|
+
): Response<{
|
|
63
|
+
bleVersion: string;
|
|
64
|
+
firmwareVersion: string;
|
|
65
|
+
bootloaderVersion: string;
|
|
66
|
+
}>;
|