@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,404 @@
|
|
|
1
|
+
import type { off, on, removeAllListeners } from './event';
|
|
2
|
+
import type { uiResponse } from './uiResponse';
|
|
3
|
+
import type { init, updateSettings } from './init';
|
|
4
|
+
import type { testInitializeDeviceDuration } from './testInitializeDeviceDuration';
|
|
5
|
+
import type { getLogs } from './getLogs';
|
|
6
|
+
import type { checkBridgeStatus } from './checkBridgeStatus';
|
|
7
|
+
import type { checkBridgeRelease } from './checkBridgeRelease';
|
|
8
|
+
import type { checkBootloaderRelease } from './checkBootloaderRelease';
|
|
9
|
+
import type { checkAllFirmwareRelease } from './checkAllFirmwareRelease';
|
|
10
|
+
import type { checkFirmwareTypeAvailable } from './checkFirmwareTypeAvailable';
|
|
11
|
+
import type { searchDevices } from './searchDevices';
|
|
12
|
+
import type { getFeatures } from './getFeatures';
|
|
13
|
+
import type { getonetokenfeatures } from './getonetokenfeatures';
|
|
14
|
+
import type { getPassphraseState } from './getPassphraseState';
|
|
15
|
+
import type { checkFirmwareRelease } from './checkFirmwareRelease';
|
|
16
|
+
import type { checkBLEFirmwareRelease } from './checkBLEFirmwareRelease';
|
|
17
|
+
import type { firmwareUpdate, firmwareUpdateV2, firmwareUpdateV3 } from './firmwareUpdate';
|
|
18
|
+
import type { promptWebDeviceAccess } from './promptWebDeviceAccess';
|
|
19
|
+
import type { deviceReset } from './deviceReset';
|
|
20
|
+
import type { deviceRecovery } from './deviceRecovery';
|
|
21
|
+
import type { deviceVerify } from './deviceVerify';
|
|
22
|
+
import type { deviceWipe } from './deviceWipe';
|
|
23
|
+
import type { deviceRebootToBootloader } from './deviceRebootToBootloader';
|
|
24
|
+
import type { deviceRebootToBoardloader } from './deviceRebootToBoardloader';
|
|
25
|
+
import type { deviceBackup } from './deviceBackup';
|
|
26
|
+
import type { deviceChangePin } from './deviceChangePin';
|
|
27
|
+
import type { deviceSettings } from './deviceSettings';
|
|
28
|
+
import type { deviceFlags } from './deviceFlags';
|
|
29
|
+
import type { deviceUpdateReboot } from './deviceUpdateReboot';
|
|
30
|
+
import type { deviceUploadResource } from './deviceUploadResource';
|
|
31
|
+
import type { deviceSupportFeatures } from './deviceSupportFeatures';
|
|
32
|
+
import type { deviceFullyUploadResource } from './deviceFullyUploadResource';
|
|
33
|
+
import type { deviceUpdateBootloader } from './deviceUpdateBootloader';
|
|
34
|
+
import type { deviceLock } from './deviceLock';
|
|
35
|
+
import type { deviceUnlock } from './deviceUnlock';
|
|
36
|
+
import type { deviceCancel } from './deviceCancel';
|
|
37
|
+
import type { getNextU2FCounter } from './getNextU2FCounter';
|
|
38
|
+
import type { setU2FCounter } from './setU2FCounter';
|
|
39
|
+
import type { cipherKeyValue } from './cipherKeyValue';
|
|
40
|
+
import type { allNetworkGetAddress, allNetworkGetAddressByLoop } from './allNetworkGetAddress';
|
|
41
|
+
import type { evmGetAddress } from './evmGetAddress';
|
|
42
|
+
import type { evmGetPublicKey } from './evmGetPublicKey';
|
|
43
|
+
import type { evmSignMessage } from './evmSignMessage';
|
|
44
|
+
import type { evmSignMessageEIP712 } from './evmSignMessageEIP712';
|
|
45
|
+
import type { evmSignTransaction } from './evmSignTransaction';
|
|
46
|
+
import type { evmSignTypedData } from './evmSignTypedData';
|
|
47
|
+
import type { evmVerifyMessage } from './evmVerifyMessage';
|
|
48
|
+
import type { btcGetAddress } from './btcGetAddress';
|
|
49
|
+
import type { btcGetPublicKey } from './btcGetPublicKey';
|
|
50
|
+
import type { btcSignMessage } from './btcSignMessage';
|
|
51
|
+
import type { btcSignPsbt } from './btcSignPsbt';
|
|
52
|
+
import type { btcSignTransaction } from './btcSignTransaction';
|
|
53
|
+
import type { btcVerifyMessage } from './btcVerifyMessage';
|
|
54
|
+
import type { starcoinGetAddress } from './starcoinGetAddress';
|
|
55
|
+
import type { starcoinGetPublicKey } from './starcoinGetPublicKey';
|
|
56
|
+
import type { starcoinSignMessage } from './starcoinSignMessage';
|
|
57
|
+
import type { starcoinSignTransaction } from './starcoinSignTransaction';
|
|
58
|
+
import type { starcoinVerifyMessage } from './starcoinVerifyMessage';
|
|
59
|
+
import type { nemGetAddress } from './nemGetAddress';
|
|
60
|
+
import type { nemSignTransaction } from './nemSignTransaction';
|
|
61
|
+
import type { solGetAddress } from './solGetAddress';
|
|
62
|
+
import type { solSignTransaction } from './solSignTransaction';
|
|
63
|
+
import type { solSignOffchainMessage } from './solSignOffchainMessage';
|
|
64
|
+
import type { solSignMessage } from './solSignMessage';
|
|
65
|
+
import type { stellarGetAddress } from './stellarGetAddress';
|
|
66
|
+
import type { stellarSignTransaction } from './stellarSignTransaction';
|
|
67
|
+
import type { tronGetAddress } from './tronGetAddress';
|
|
68
|
+
import type { tronSignTransaction } from './tronSignTransaction';
|
|
69
|
+
import type { tronSignMessage } from './tronSignMessage';
|
|
70
|
+
import type { confluxGetAddress } from './confluxGetAddress';
|
|
71
|
+
import type { confluxSignMessage } from './confluxSignMessage';
|
|
72
|
+
import type { confluxSignMessageCIP23 } from './confluxSignMessageCIP23';
|
|
73
|
+
import type { confluxSignTransaction } from './confluxSignTransaction';
|
|
74
|
+
import type { nearGetAddress } from './nearGetAddress';
|
|
75
|
+
import type { nearSignTransaction } from './nearSignTransaction';
|
|
76
|
+
import type { aptosGetAddress } from './aptosGetAddress';
|
|
77
|
+
import type { aptosGetPublicKey } from './aptosGetPublicKey';
|
|
78
|
+
import type { aptosSignMessage } from './aptosSignMessage';
|
|
79
|
+
import type { aptosSignInMessage } from './aptosSignInMessage';
|
|
80
|
+
import type { aptosSignTransaction } from './aptosSignTransaction';
|
|
81
|
+
import type { algoGetAddress } from './algoGetAddress';
|
|
82
|
+
import type { algoSignTransaction } from './algoSignTransaction';
|
|
83
|
+
import type { cosmosGetAddress } from './cosmosGetAddress';
|
|
84
|
+
import type { cosmosGetPublicKey } from './cosmosGetPublicKey';
|
|
85
|
+
import type { cosmosSignTransaction } from './cosmosSignTransaction';
|
|
86
|
+
import type { xrpGetAddress } from './xrpGetAddress';
|
|
87
|
+
import type { xrpSignTransaction } from './xrpSignTransaction';
|
|
88
|
+
import type { suiGetAddress } from './suiGetAddress';
|
|
89
|
+
import type { suiGetPublicKey } from './suiGetPublicKey';
|
|
90
|
+
import type { suiSignMessage } from './suiSignMessage';
|
|
91
|
+
import type { suiSignTransaction } from './suiSignTransaction';
|
|
92
|
+
import type { cardanoGetAddress } from './cardanoGetAddress';
|
|
93
|
+
import type { cardanoGetPublicKey } from './cardanoGetPublicKey';
|
|
94
|
+
import type { cardanoSignTransaction } from './cardanoSignTransaction';
|
|
95
|
+
import type { cardanoSignMessage } from './cardanoSignMessage';
|
|
96
|
+
import type { filecoinGetAddress } from './filecoinGetAddress';
|
|
97
|
+
import type { filecoinSignTransaction } from './filecoinSignTransaction';
|
|
98
|
+
import type { polkadotGetAddress } from './polkadotGetAddress';
|
|
99
|
+
import type { polkadotSignTransaction } from './polkadotSignTransaction';
|
|
100
|
+
import type { kaspaGetAddress } from './kaspaGetAddress';
|
|
101
|
+
import type { kaspaSignTransaction } from './kaspaSignTransaction';
|
|
102
|
+
import type { nexaGetAddress } from './nexaGetAddress';
|
|
103
|
+
import type { nexaSignTransaction } from './nexaSignTransaction';
|
|
104
|
+
import type { nostrGetPublicKey } from './nostrGetPublicKey';
|
|
105
|
+
import type { nostrSignEvent } from './nostrSignEvent';
|
|
106
|
+
import type { nostrEncryptMessage } from './nostrEncryptMessage';
|
|
107
|
+
import type { nostrDecryptMessage } from './nostrDecryptMessage';
|
|
108
|
+
import type { nostrSignSchnorr } from './nostrSignSchnorr';
|
|
109
|
+
import type { lnurlAuth } from './lnurlAuth';
|
|
110
|
+
import type { nervosGetAddress } from './nervosGetAddress';
|
|
111
|
+
import type { nervosSignTransaction } from './nervosSignTransaction';
|
|
112
|
+
import type { dnxGetAddress } from './dnxGetAddress';
|
|
113
|
+
import type { dnxSignTransaction } from './dnxSignTransaction';
|
|
114
|
+
import type { tonGetAddress } from './tonGetAddress';
|
|
115
|
+
import type { tonSignMessage } from './tonSignMessage';
|
|
116
|
+
import type { tonSignProof } from './tonSignProof';
|
|
117
|
+
import type { scdoGetAddress } from './scdoGetAddress';
|
|
118
|
+
import type { scdoSignMessage } from './scdoSignMessage';
|
|
119
|
+
import type { scdoSignTransaction } from './scdoSignTransaction';
|
|
120
|
+
import type { alephiumGetAddress } from './alephiumGetAddress';
|
|
121
|
+
import type { alephiumSignMessage } from './alephiumSignMessage';
|
|
122
|
+
import type { alephiumSignTransaction } from './alephiumSignTransaction';
|
|
123
|
+
import type { benfenGetAddress } from './benfenGetAddress';
|
|
124
|
+
import type { benfenGetPublicKey } from './benfenGetPublicKey';
|
|
125
|
+
import type { benfenSignTransaction } from './benfenSignTransaction';
|
|
126
|
+
import type { benfenSignMessage } from './benfenSignMessage';
|
|
127
|
+
import type { neoGetAddress } from './neoGetAddress';
|
|
128
|
+
import type { neoSignTransaction } from './neoSignTransaction';
|
|
129
|
+
import type { ConnectSettings } from '../settings';
|
|
130
|
+
|
|
131
|
+
export * from './export';
|
|
132
|
+
|
|
133
|
+
export type CoreApi = {
|
|
134
|
+
/**
|
|
135
|
+
* Inject function
|
|
136
|
+
*/
|
|
137
|
+
init: typeof init;
|
|
138
|
+
on: typeof on;
|
|
139
|
+
off: typeof off;
|
|
140
|
+
emit: (event: string, ...args: any[]) => void;
|
|
141
|
+
removeAllListeners: typeof removeAllListeners;
|
|
142
|
+
dispose: () => void;
|
|
143
|
+
call: (params: any) => Promise<any>;
|
|
144
|
+
uiResponse: typeof uiResponse;
|
|
145
|
+
cancel: (connectId?: string) => void;
|
|
146
|
+
updateSettings: typeof updateSettings;
|
|
147
|
+
switchTransport: (env: ConnectSettings['env']) => Promise<{ success: boolean }>;
|
|
148
|
+
getLogs: typeof getLogs;
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Test function
|
|
152
|
+
*/
|
|
153
|
+
testInitializeDeviceDuration: typeof testInitializeDeviceDuration;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Core function
|
|
157
|
+
*/
|
|
158
|
+
checkAllFirmwareRelease: typeof checkAllFirmwareRelease;
|
|
159
|
+
checkBridgeStatus: typeof checkBridgeStatus;
|
|
160
|
+
checkBridgeRelease: typeof checkBridgeRelease;
|
|
161
|
+
checkBootloaderRelease: typeof checkBootloaderRelease;
|
|
162
|
+
checkFirmwareTypeAvailable: typeof checkFirmwareTypeAvailable;
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Device function
|
|
166
|
+
*/
|
|
167
|
+
searchDevices: typeof searchDevices;
|
|
168
|
+
promptWebDeviceAccess: typeof promptWebDeviceAccess;
|
|
169
|
+
getFeatures: typeof getFeatures;
|
|
170
|
+
getonetokenfeatures: typeof getonetokenfeatures;
|
|
171
|
+
getPassphraseState: typeof getPassphraseState;
|
|
172
|
+
deviceBackup: typeof deviceBackup;
|
|
173
|
+
deviceChangePin: typeof deviceChangePin;
|
|
174
|
+
deviceFlags: typeof deviceFlags;
|
|
175
|
+
deviceRebootToBoardloader: typeof deviceRebootToBoardloader;
|
|
176
|
+
deviceRebootToBootloader: typeof deviceRebootToBootloader;
|
|
177
|
+
deviceRecovery: typeof deviceRecovery;
|
|
178
|
+
deviceReset: typeof deviceReset;
|
|
179
|
+
deviceSettings: typeof deviceSettings;
|
|
180
|
+
deviceUpdateReboot: typeof deviceUpdateReboot;
|
|
181
|
+
deviceUploadResource: typeof deviceUploadResource;
|
|
182
|
+
deviceSupportFeatures: typeof deviceSupportFeatures;
|
|
183
|
+
deviceVerify: typeof deviceVerify;
|
|
184
|
+
deviceWipe: typeof deviceWipe;
|
|
185
|
+
deviceFullyUploadResource: typeof deviceFullyUploadResource;
|
|
186
|
+
deviceUpdateBootloader: typeof deviceUpdateBootloader;
|
|
187
|
+
deviceLock: typeof deviceLock;
|
|
188
|
+
deviceUnlock: typeof deviceUnlock;
|
|
189
|
+
deviceCancel: typeof deviceCancel;
|
|
190
|
+
getNextU2FCounter: typeof getNextU2FCounter;
|
|
191
|
+
setU2FCounter: typeof setU2FCounter;
|
|
192
|
+
checkFirmwareRelease: typeof checkFirmwareRelease;
|
|
193
|
+
checkBLEFirmwareRelease: typeof checkBLEFirmwareRelease;
|
|
194
|
+
firmwareUpdate: typeof firmwareUpdate;
|
|
195
|
+
firmwareUpdateV2: typeof firmwareUpdateV2;
|
|
196
|
+
firmwareUpdateV3: typeof firmwareUpdateV3;
|
|
197
|
+
cipherKeyValue: typeof cipherKeyValue;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* All network function
|
|
201
|
+
*/
|
|
202
|
+
allNetworkGetAddress: typeof allNetworkGetAddress;
|
|
203
|
+
allNetworkGetAddressByLoop: typeof allNetworkGetAddressByLoop;
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* EVM function
|
|
207
|
+
*/
|
|
208
|
+
evmGetAddress: typeof evmGetAddress;
|
|
209
|
+
evmGetPublicKey: typeof evmGetPublicKey;
|
|
210
|
+
evmSignMessage: typeof evmSignMessage;
|
|
211
|
+
evmSignMessageEIP712: typeof evmSignMessageEIP712;
|
|
212
|
+
evmSignTransaction: typeof evmSignTransaction;
|
|
213
|
+
evmSignTypedData: typeof evmSignTypedData;
|
|
214
|
+
evmVerifyMessage: typeof evmVerifyMessage;
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* BTC function
|
|
218
|
+
*/
|
|
219
|
+
btcGetAddress: typeof btcGetAddress;
|
|
220
|
+
btcGetPublicKey: typeof btcGetPublicKey;
|
|
221
|
+
btcSignMessage: typeof btcSignMessage;
|
|
222
|
+
btcSignPsbt: typeof btcSignPsbt;
|
|
223
|
+
btcSignTransaction: typeof btcSignTransaction;
|
|
224
|
+
btcVerifyMessage: typeof btcVerifyMessage;
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* Starcoin function
|
|
228
|
+
*/
|
|
229
|
+
starcoinGetAddress: typeof starcoinGetAddress;
|
|
230
|
+
starcoinGetPublicKey: typeof starcoinGetPublicKey;
|
|
231
|
+
starcoinSignMessage: typeof starcoinSignMessage;
|
|
232
|
+
starcoinSignTransaction: typeof starcoinSignTransaction;
|
|
233
|
+
starcoinVerifyMessage: typeof starcoinVerifyMessage;
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Nem function
|
|
237
|
+
*/
|
|
238
|
+
nemGetAddress: typeof nemGetAddress;
|
|
239
|
+
nemSignTransaction: typeof nemSignTransaction;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Solana function
|
|
243
|
+
*/
|
|
244
|
+
solGetAddress: typeof solGetAddress;
|
|
245
|
+
solSignTransaction: typeof solSignTransaction;
|
|
246
|
+
solSignOffchainMessage: typeof solSignOffchainMessage;
|
|
247
|
+
solSignMessage: typeof solSignMessage;
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* Stellar function
|
|
251
|
+
*/
|
|
252
|
+
stellarGetAddress: typeof stellarGetAddress;
|
|
253
|
+
stellarSignTransaction: typeof stellarSignTransaction;
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Tron function
|
|
257
|
+
*/
|
|
258
|
+
tronGetAddress: typeof tronGetAddress;
|
|
259
|
+
tronSignMessage: typeof tronSignMessage;
|
|
260
|
+
tronSignTransaction: typeof tronSignTransaction;
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Conflux function
|
|
264
|
+
*/
|
|
265
|
+
confluxGetAddress: typeof confluxGetAddress;
|
|
266
|
+
confluxSignMessage: typeof confluxSignMessage;
|
|
267
|
+
confluxSignMessageCIP23: typeof confluxSignMessageCIP23;
|
|
268
|
+
confluxSignTransaction: typeof confluxSignTransaction;
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* Near function
|
|
272
|
+
*/
|
|
273
|
+
nearGetAddress: typeof nearGetAddress;
|
|
274
|
+
nearSignTransaction: typeof nearSignTransaction;
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* Aptos function
|
|
278
|
+
*/
|
|
279
|
+
aptosGetAddress: typeof aptosGetAddress;
|
|
280
|
+
aptosGetPublicKey: typeof aptosGetPublicKey;
|
|
281
|
+
aptosSignMessage: typeof aptosSignMessage;
|
|
282
|
+
aptosSignInMessage: typeof aptosSignInMessage;
|
|
283
|
+
aptosSignTransaction: typeof aptosSignTransaction;
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Algo function
|
|
287
|
+
*/
|
|
288
|
+
algoGetAddress: typeof algoGetAddress;
|
|
289
|
+
algoSignTransaction: typeof algoSignTransaction;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* Cosmos function
|
|
293
|
+
*/
|
|
294
|
+
cosmosGetAddress: typeof cosmosGetAddress;
|
|
295
|
+
cosmosGetPublicKey: typeof cosmosGetPublicKey;
|
|
296
|
+
cosmosSignTransaction: typeof cosmosSignTransaction;
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* XRP function
|
|
300
|
+
*/
|
|
301
|
+
xrpGetAddress: typeof xrpGetAddress;
|
|
302
|
+
xrpSignTransaction: typeof xrpSignTransaction;
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* SUI function
|
|
306
|
+
*/
|
|
307
|
+
suiGetAddress: typeof suiGetAddress;
|
|
308
|
+
suiGetPublicKey: typeof suiGetPublicKey;
|
|
309
|
+
suiSignMessage: typeof suiSignMessage;
|
|
310
|
+
suiSignTransaction: typeof suiSignTransaction;
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* Cardano function
|
|
314
|
+
*/
|
|
315
|
+
cardanoGetAddress: typeof cardanoGetAddress;
|
|
316
|
+
cardanoGetPublicKey: typeof cardanoGetPublicKey;
|
|
317
|
+
cardanoSignTransaction: typeof cardanoSignTransaction;
|
|
318
|
+
cardanoSignMessage: typeof cardanoSignMessage;
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* Filecoin function
|
|
322
|
+
*/
|
|
323
|
+
filecoinGetAddress: typeof filecoinGetAddress;
|
|
324
|
+
filecoinSignTransaction: typeof filecoinSignTransaction;
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* Polkadot function
|
|
328
|
+
*/
|
|
329
|
+
polkadotGetAddress: typeof polkadotGetAddress;
|
|
330
|
+
polkadotSignTransaction: typeof polkadotSignTransaction;
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* Kaspa function
|
|
334
|
+
*/
|
|
335
|
+
kaspaGetAddress: typeof kaspaGetAddress;
|
|
336
|
+
kaspaSignTransaction: typeof kaspaSignTransaction;
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* nexa function
|
|
340
|
+
*/
|
|
341
|
+
nexaGetAddress: typeof nexaGetAddress;
|
|
342
|
+
nexaSignTransaction: typeof nexaSignTransaction;
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* Nostr function
|
|
346
|
+
*/
|
|
347
|
+
nostrGetPublicKey: typeof nostrGetPublicKey;
|
|
348
|
+
nostrSignEvent: typeof nostrSignEvent;
|
|
349
|
+
nostrEncryptMessage: typeof nostrEncryptMessage;
|
|
350
|
+
nostrDecryptMessage: typeof nostrDecryptMessage;
|
|
351
|
+
nostrSignSchnorr: typeof nostrSignSchnorr;
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* Lightning Network
|
|
355
|
+
*/
|
|
356
|
+
lnurlAuth: typeof lnurlAuth;
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* Nervos Network
|
|
360
|
+
*/
|
|
361
|
+
nervosGetAddress: typeof nervosGetAddress;
|
|
362
|
+
nervosSignTransaction: typeof nervosSignTransaction;
|
|
363
|
+
|
|
364
|
+
/**
|
|
365
|
+
* Dnx Network
|
|
366
|
+
*/
|
|
367
|
+
dnxGetAddress: typeof dnxGetAddress;
|
|
368
|
+
dnxSignTransaction: typeof dnxSignTransaction;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* TON Network
|
|
372
|
+
*/
|
|
373
|
+
tonGetAddress: typeof tonGetAddress;
|
|
374
|
+
tonSignMessage: typeof tonSignMessage;
|
|
375
|
+
tonSignProof: typeof tonSignProof;
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* SCDO Network
|
|
379
|
+
*/
|
|
380
|
+
scdoGetAddress: typeof scdoGetAddress;
|
|
381
|
+
scdoSignMessage: typeof scdoSignMessage;
|
|
382
|
+
scdoSignTransaction: typeof scdoSignTransaction;
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* Alephium Network
|
|
386
|
+
*/
|
|
387
|
+
alephiumGetAddress: typeof alephiumGetAddress;
|
|
388
|
+
alephiumSignMessage: typeof alephiumSignMessage;
|
|
389
|
+
alephiumSignTransaction: typeof alephiumSignTransaction;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* Benfen Network
|
|
393
|
+
*/
|
|
394
|
+
benfenGetAddress: typeof benfenGetAddress;
|
|
395
|
+
benfenGetPublicKey: typeof benfenGetPublicKey;
|
|
396
|
+
benfenSignTransaction: typeof benfenSignTransaction;
|
|
397
|
+
benfenSignMessage: typeof benfenSignMessage;
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* Neo Network
|
|
401
|
+
*/
|
|
402
|
+
neoGetAddress: typeof neoGetAddress;
|
|
403
|
+
neoSignTransaction: typeof neoSignTransaction;
|
|
404
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { LowLevelCoreApi } from '../../lowLevelInject';
|
|
2
|
+
import type { LowlevelTransportSharedPlugin } from '@onetokenfe/hd-transport';
|
|
3
|
+
import type { ConnectSettings } from '../settings';
|
|
4
|
+
|
|
5
|
+
export declare function init(
|
|
6
|
+
settings: Partial<ConnectSettings>,
|
|
7
|
+
lowLevelApi?: LowLevelCoreApi,
|
|
8
|
+
pulgin?: LowlevelTransportSharedPlugin
|
|
9
|
+
): Promise<boolean>;
|
|
10
|
+
|
|
11
|
+
export declare function updateSettings(settings: Partial<ConnectSettings>): Promise<boolean>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { KaspaAddress as HardwareKaspaAddress } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type KaspaAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareKaspaAddress;
|
|
7
|
+
|
|
8
|
+
export type KaspaGetAddressParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
prefix?: string;
|
|
11
|
+
scheme?: string;
|
|
12
|
+
showOnOneToken?: boolean;
|
|
13
|
+
useTweak?: boolean;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export declare function kaspaGetAddress(
|
|
17
|
+
connectId: string,
|
|
18
|
+
deviceId: string,
|
|
19
|
+
params: CommonParams & KaspaGetAddressParams
|
|
20
|
+
): Response<KaspaAddress>;
|
|
21
|
+
|
|
22
|
+
export declare function kaspaGetAddress(
|
|
23
|
+
connectId: string,
|
|
24
|
+
deviceId: string,
|
|
25
|
+
params: CommonParams & { bundle?: KaspaGetAddressParams[] }
|
|
26
|
+
): Response<Array<KaspaAddress>>;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { SignatureType } from '../../api/kaspa/helpers/SignatureType';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type KaspaSignature = {
|
|
5
|
+
index: number;
|
|
6
|
+
signature: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export type KaspaSignInputParams = {
|
|
10
|
+
path: string | number[];
|
|
11
|
+
prevTxId: string;
|
|
12
|
+
outputIndex: number;
|
|
13
|
+
sequenceNumber: number | string;
|
|
14
|
+
output: {
|
|
15
|
+
satoshis: number | string;
|
|
16
|
+
script: string;
|
|
17
|
+
};
|
|
18
|
+
sigOpCount?: number;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export type KaspaSignOutputParams = {
|
|
22
|
+
satoshis: number | string;
|
|
23
|
+
script: string;
|
|
24
|
+
scriptVersion: number;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export type KaspaSignTransactionParams = {
|
|
28
|
+
version: number;
|
|
29
|
+
inputs: KaspaSignInputParams[];
|
|
30
|
+
outputs: KaspaSignOutputParams[];
|
|
31
|
+
lockTime: number | string;
|
|
32
|
+
sigHashType?: SignatureType;
|
|
33
|
+
sigOpCount?: number;
|
|
34
|
+
subNetworkID?: string;
|
|
35
|
+
scheme?: string;
|
|
36
|
+
prefix?: string;
|
|
37
|
+
useTweak?: boolean; // default is true
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export declare function kaspaSignTransaction(
|
|
41
|
+
connectId: string,
|
|
42
|
+
deviceId: string,
|
|
43
|
+
params: CommonParams & KaspaSignTransactionParams
|
|
44
|
+
): Response<KaspaSignature[]>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { CommonParams, Response } from '../params';
|
|
2
|
+
|
|
3
|
+
export interface LnurlAuth {
|
|
4
|
+
pub?: string;
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Use `pub` instead.
|
|
7
|
+
*/
|
|
8
|
+
publickey?: string;
|
|
9
|
+
path?: string;
|
|
10
|
+
signature?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface LnurlAuthParams {
|
|
14
|
+
domain: string;
|
|
15
|
+
k1: string;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export declare function lnurlAuth(
|
|
19
|
+
connectId: string,
|
|
20
|
+
deviceId: string,
|
|
21
|
+
params: CommonParams & LnurlAuthParams
|
|
22
|
+
): Response<LnurlAuth>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { NearAddress as HardwareNearAddress } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type NearAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareNearAddress;
|
|
7
|
+
|
|
8
|
+
export type NearGetAddressParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
showOnOneToken?: boolean;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export declare function nearGetAddress(
|
|
14
|
+
connectId: string,
|
|
15
|
+
deviceId: string,
|
|
16
|
+
params: CommonParams & NearGetAddressParams
|
|
17
|
+
): Response<NearAddress>;
|
|
18
|
+
|
|
19
|
+
export declare function nearGetAddress(
|
|
20
|
+
connectId: string,
|
|
21
|
+
deviceId: string,
|
|
22
|
+
params: CommonParams & { bundle?: NearGetAddressParams[] }
|
|
23
|
+
): Response<Array<NearAddress>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NearSignedTx } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type NearSignTransactionParams = {
|
|
5
|
+
path: string | number[];
|
|
6
|
+
rawTx: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export declare function nearSignTransaction(
|
|
10
|
+
connectId: string,
|
|
11
|
+
deviceId: string,
|
|
12
|
+
params: CommonParams & NearSignTransactionParams
|
|
13
|
+
): Response<NearSignedTx>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { NEMAddress as HardwareNEMAddress } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type NEMAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareNEMAddress;
|
|
7
|
+
|
|
8
|
+
export type NEMGetAddressParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
network?: number;
|
|
11
|
+
showOnOneToken?: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export declare function nemGetAddress(
|
|
15
|
+
connectId: string,
|
|
16
|
+
deviceId: string,
|
|
17
|
+
params: CommonParams & NEMGetAddressParams
|
|
18
|
+
): Response<NEMAddress>;
|
|
19
|
+
|
|
20
|
+
export declare function nemGetAddress(
|
|
21
|
+
connectId: string,
|
|
22
|
+
deviceId: string,
|
|
23
|
+
params: CommonParams & { bundle?: NEMGetAddressParams[] }
|
|
24
|
+
): Response<Array<NEMAddress>>;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import type { NEMSignedTx } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
type MosaicID = {
|
|
5
|
+
namespaceId: string;
|
|
6
|
+
name: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
type MosaicDefinition = {
|
|
10
|
+
levy?: {
|
|
11
|
+
type?: number;
|
|
12
|
+
fee?: number;
|
|
13
|
+
recipient?: string;
|
|
14
|
+
mosaicId?: MosaicID;
|
|
15
|
+
};
|
|
16
|
+
id: MosaicID;
|
|
17
|
+
description: string;
|
|
18
|
+
properties?: Array<{
|
|
19
|
+
name: 'divisibility' | 'initialSupply' | 'supplyMutable' | 'transferable';
|
|
20
|
+
value: string;
|
|
21
|
+
}>;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export type NEMMosaic = {
|
|
25
|
+
mosaicId: MosaicID;
|
|
26
|
+
quantity: number;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
type Modification = {
|
|
30
|
+
modificationType: number;
|
|
31
|
+
cosignatoryAccount: string;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
type Message = {
|
|
35
|
+
payload?: string;
|
|
36
|
+
type?: number;
|
|
37
|
+
publicKey?: string;
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
type TransactionCommon = {
|
|
41
|
+
version: number;
|
|
42
|
+
timeStamp: number;
|
|
43
|
+
fee: number;
|
|
44
|
+
deadline?: number;
|
|
45
|
+
signer?: string;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export type NEMTransferTransaction = TransactionCommon & {
|
|
49
|
+
type: 0x0101;
|
|
50
|
+
recipient: string;
|
|
51
|
+
amount: number | string;
|
|
52
|
+
mosaics?: NEMMosaic[];
|
|
53
|
+
message?: Message;
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export type NEMImportanceTransaction = TransactionCommon & {
|
|
57
|
+
type: 0x0801;
|
|
58
|
+
importanceTransfer: {
|
|
59
|
+
mode: number;
|
|
60
|
+
publicKey: string;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export type NEMAggregateModificationTransaction = TransactionCommon & {
|
|
65
|
+
type: 0x1001;
|
|
66
|
+
modifications?: Modification[];
|
|
67
|
+
minCosignatories: {
|
|
68
|
+
relativeChange: number;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export type NEMProvisionNamespaceTransaction = TransactionCommon & {
|
|
73
|
+
type: 0x2001;
|
|
74
|
+
newPart?: string;
|
|
75
|
+
parent?: string;
|
|
76
|
+
rentalFeeSink?: string;
|
|
77
|
+
rentalFee?: number;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export type NEMMosaicCreationTransaction = TransactionCommon & {
|
|
81
|
+
type: 0x4001;
|
|
82
|
+
mosaicDefinition: MosaicDefinition;
|
|
83
|
+
creationFeeSink?: string;
|
|
84
|
+
creationFee?: number;
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
export type NEMSupplyChangeTransaction = TransactionCommon & {
|
|
88
|
+
type: 0x4002;
|
|
89
|
+
mosaicId: MosaicID;
|
|
90
|
+
supplyType: number;
|
|
91
|
+
delta?: number;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
type Transaction =
|
|
95
|
+
| NEMTransferTransaction
|
|
96
|
+
| NEMImportanceTransaction
|
|
97
|
+
| NEMAggregateModificationTransaction
|
|
98
|
+
| NEMProvisionNamespaceTransaction
|
|
99
|
+
| NEMMosaicCreationTransaction
|
|
100
|
+
| NEMSupplyChangeTransaction;
|
|
101
|
+
|
|
102
|
+
export type NEMMultisigTransaction = TransactionCommon & {
|
|
103
|
+
type: 0x0102 | 0x1002 | 0x1004;
|
|
104
|
+
otherTrans: Transaction;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
export type NEMTransaction = Transaction | NEMMultisigTransaction;
|
|
108
|
+
|
|
109
|
+
export type NEMSignTransactionParams = {
|
|
110
|
+
path: string | number[];
|
|
111
|
+
transaction: NEMTransaction;
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
export declare function nemSignTransaction(
|
|
115
|
+
connectId: string,
|
|
116
|
+
deviceId: string,
|
|
117
|
+
params: CommonParams & NEMSignTransactionParams
|
|
118
|
+
): Response<NEMSignedTx>;
|