@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,212 @@
|
|
|
1
|
+
import type { UintType } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { PROTO } from '../../constants';
|
|
3
|
+
|
|
4
|
+
export interface CardanoAddressParameters {
|
|
5
|
+
addressType: PROTO.CardanoAddressType;
|
|
6
|
+
path?: string | number[];
|
|
7
|
+
stakingPath?: string | number[];
|
|
8
|
+
stakingKeyHash?: string;
|
|
9
|
+
certificatePointer?: CardanoCertificatePointer;
|
|
10
|
+
paymentScriptHash?: string;
|
|
11
|
+
stakingScriptHash?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface CardanoCertificatePointer {
|
|
15
|
+
blockIndex: number;
|
|
16
|
+
txIndex: number;
|
|
17
|
+
certificateIndex: number;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface CardanoToken {
|
|
21
|
+
assetNameBytes: string;
|
|
22
|
+
amount?: string;
|
|
23
|
+
mintAmount?: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface CardanoAssetGroup {
|
|
27
|
+
policyId: string;
|
|
28
|
+
tokenAmounts: CardanoToken[];
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export type AssetGroupWithTokens = {
|
|
32
|
+
policyId: string;
|
|
33
|
+
tokens: PROTO.CardanoToken[];
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export interface CardanoDRep {
|
|
37
|
+
type: PROTO.CardanoDRepType;
|
|
38
|
+
keyHash?: string;
|
|
39
|
+
scriptHash?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface CardanoCertificate {
|
|
43
|
+
type: PROTO.CardanoCertificateType;
|
|
44
|
+
path?: string | number[];
|
|
45
|
+
pool?: string;
|
|
46
|
+
poolParameters?: CardanoPoolParameters;
|
|
47
|
+
scriptHash?: string;
|
|
48
|
+
keyHash?: string;
|
|
49
|
+
deposit?: UintType;
|
|
50
|
+
dRep?: CardanoDRep;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export type CertificateWithPoolOwnersAndRelays = {
|
|
54
|
+
certificate: PROTO.CardanoTxCertificate;
|
|
55
|
+
poolOwners: PROTO.CardanoPoolOwner[];
|
|
56
|
+
poolRelays: PROTO.CardanoPoolRelayParameters[];
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
export interface CardanoPoolOwner {
|
|
60
|
+
stakingKeyPath?: string | number[];
|
|
61
|
+
stakingKeyHash?: string;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export interface CardanoPoolRelay {
|
|
65
|
+
type: PROTO.CardanoPoolRelayType;
|
|
66
|
+
ipv4Address?: string;
|
|
67
|
+
ipv6Address?: string;
|
|
68
|
+
port?: number;
|
|
69
|
+
hostName?: string;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface CardanoPoolMetadata {
|
|
73
|
+
url: string;
|
|
74
|
+
hash: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface CardanoPoolMargin {
|
|
78
|
+
numerator: string;
|
|
79
|
+
denominator: string;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface CardanoPoolParameters {
|
|
83
|
+
poolId: string;
|
|
84
|
+
vrfKeyHash: string;
|
|
85
|
+
pledge: string;
|
|
86
|
+
cost: string;
|
|
87
|
+
margin: CardanoPoolMargin;
|
|
88
|
+
rewardAccount: string;
|
|
89
|
+
owners: CardanoPoolOwner[];
|
|
90
|
+
relays: CardanoPoolRelay[];
|
|
91
|
+
metadata: CardanoPoolMetadata;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export interface CardanoInput {
|
|
95
|
+
path?: string | number[];
|
|
96
|
+
prev_hash: string;
|
|
97
|
+
prev_index: number;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export type CardanoOutput = (
|
|
101
|
+
| {
|
|
102
|
+
addressParameters: CardanoAddressParameters;
|
|
103
|
+
}
|
|
104
|
+
| {
|
|
105
|
+
address: string;
|
|
106
|
+
}
|
|
107
|
+
) & {
|
|
108
|
+
amount: string;
|
|
109
|
+
tokenBundle?: CardanoAssetGroup[];
|
|
110
|
+
datumHash?: string;
|
|
111
|
+
format?: PROTO.CardanoTxOutputSerializationFormat;
|
|
112
|
+
inlineDatum?: string;
|
|
113
|
+
referenceScript?: string;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export interface CardanoWithdrawal {
|
|
117
|
+
path?: string | number[];
|
|
118
|
+
amount: string;
|
|
119
|
+
scriptHash?: string;
|
|
120
|
+
keyHash?: string;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export type CardanoMint = CardanoAssetGroup[];
|
|
124
|
+
|
|
125
|
+
export interface CardanoCollateralInput {
|
|
126
|
+
path?: string | number[];
|
|
127
|
+
prev_hash: string;
|
|
128
|
+
prev_index: number;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export interface CardanoRequiredSigner {
|
|
132
|
+
keyPath?: string | number[];
|
|
133
|
+
keyHash?: string;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export interface CardanoReferenceInput {
|
|
137
|
+
prev_hash: string;
|
|
138
|
+
prev_index: number;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export interface CardanoCVoteRegistrationDelegation {
|
|
142
|
+
votePublicKey: string;
|
|
143
|
+
weight: number;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export interface CardanoCatalystRegistrationParameters {
|
|
147
|
+
votingPublicKey: string;
|
|
148
|
+
stakingPath: string | number[];
|
|
149
|
+
rewardAddressParameters: CardanoAddressParameters;
|
|
150
|
+
nonce: string;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export interface CardanoCVoteRegistrationParameters {
|
|
154
|
+
votePublicKey?: string;
|
|
155
|
+
stakingPath: string | number[];
|
|
156
|
+
paymentAddressParameters: CardanoAddressParameters;
|
|
157
|
+
nonce: string;
|
|
158
|
+
format?: PROTO.CardanoCVoteRegistrationFormat;
|
|
159
|
+
delegations?: CardanoCVoteRegistrationDelegation[];
|
|
160
|
+
votingPurpose?: number;
|
|
161
|
+
paymentAddress?: string;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export interface CardanoAuxiliaryData {
|
|
165
|
+
hash?: string;
|
|
166
|
+
cVoteRegistrationParameters?: CardanoCVoteRegistrationParameters;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface CardanoSignTransaction {
|
|
170
|
+
inputs: CardanoInput[];
|
|
171
|
+
outputs: CardanoOutput[];
|
|
172
|
+
fee: string;
|
|
173
|
+
ttl?: string;
|
|
174
|
+
certificates?: CardanoCertificate[];
|
|
175
|
+
withdrawals?: CardanoWithdrawal[];
|
|
176
|
+
validityIntervalStart?: string;
|
|
177
|
+
auxiliaryData?: CardanoAuxiliaryData;
|
|
178
|
+
mint?: CardanoMint;
|
|
179
|
+
scriptDataHash?: string;
|
|
180
|
+
collateralInputs?: CardanoCollateralInput[];
|
|
181
|
+
requiredSigners?: CardanoRequiredSigner[];
|
|
182
|
+
collateralReturn?: CardanoOutput;
|
|
183
|
+
totalCollateral?: string;
|
|
184
|
+
referenceInputs?: CardanoReferenceInput[];
|
|
185
|
+
additionalWitnessRequests?: (string | number[])[];
|
|
186
|
+
protocolMagic: number;
|
|
187
|
+
networkId: number;
|
|
188
|
+
signingMode: PROTO.CardanoTxSigningMode;
|
|
189
|
+
derivationType?: PROTO.CardanoDerivationType;
|
|
190
|
+
includeNetworkId?: boolean;
|
|
191
|
+
chunkify?: boolean;
|
|
192
|
+
tagCborSets?: boolean;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export interface CardanoSignedTxWitness {
|
|
196
|
+
type: PROTO.CardanoTxWitnessType;
|
|
197
|
+
pubKey: string;
|
|
198
|
+
signature: string;
|
|
199
|
+
chainCode?: string;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export interface CardanoAuxiliaryDataSupplement {
|
|
203
|
+
type: PROTO.CardanoTxAuxiliaryDataSupplementType;
|
|
204
|
+
auxiliaryDataHash: string;
|
|
205
|
+
cVoteRegistrationSignature?: string;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export interface CardanoSignedTxData {
|
|
209
|
+
hash: string;
|
|
210
|
+
witnesses: CardanoSignedTxWitness[];
|
|
211
|
+
auxiliaryDataSupplement?: CardanoAuxiliaryDataSupplement;
|
|
212
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { CardanoAddressParametersType } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
import type { CardanoAddressParameters } from './cardano';
|
|
4
|
+
|
|
5
|
+
export type CardanoGetAddressMethodParams = {
|
|
6
|
+
addressParameters: CardanoAddressParameters;
|
|
7
|
+
networkId: number;
|
|
8
|
+
/**
|
|
9
|
+
* Testnet cip34:0-1097911063
|
|
10
|
+
* Mainnet cip34:1-764824073
|
|
11
|
+
*/
|
|
12
|
+
protocolMagic: number;
|
|
13
|
+
derivationType: number;
|
|
14
|
+
address?: string;
|
|
15
|
+
isCheck?: boolean;
|
|
16
|
+
showOnOneToken: boolean;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export type CardanoGetAddressParams = {
|
|
20
|
+
address_parameters: CardanoAddressParametersType;
|
|
21
|
+
network_id: number;
|
|
22
|
+
protocol_magic: number;
|
|
23
|
+
derivation_type: number;
|
|
24
|
+
address: string;
|
|
25
|
+
show_display: boolean;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export type CardanoAddress = {
|
|
29
|
+
addressParameters: CardanoAddressParameters;
|
|
30
|
+
protocolMagic: number;
|
|
31
|
+
networkId: number;
|
|
32
|
+
serializedPath: string;
|
|
33
|
+
serializedStakingPath: string;
|
|
34
|
+
address: string;
|
|
35
|
+
xpub?: string;
|
|
36
|
+
stakeAddress?: string;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export declare function cardanoGetAddress(
|
|
40
|
+
connectId: string,
|
|
41
|
+
deviceId: string,
|
|
42
|
+
params: CommonParams & CardanoGetAddressMethodParams
|
|
43
|
+
): Response<CardanoAddress>;
|
|
44
|
+
|
|
45
|
+
export declare function cardanoGetAddress(
|
|
46
|
+
connectId: string,
|
|
47
|
+
deviceId: string,
|
|
48
|
+
params: CommonParams & { bundle?: CardanoGetAddressMethodParams[] }
|
|
49
|
+
): Response<CardanoAddress[]>;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { PROTO } from '../../constants';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type CardanoPublicKey = {
|
|
5
|
+
path: number[];
|
|
6
|
+
serializedPath: string;
|
|
7
|
+
xpub: string;
|
|
8
|
+
node: PROTO.HDNodeType;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export type CardanoPublicKeyParams = {
|
|
12
|
+
address_n: number[];
|
|
13
|
+
derivation_type: number;
|
|
14
|
+
show_display: boolean;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export type CardanoPublicKeyMethodParams = {
|
|
18
|
+
path: string | number[];
|
|
19
|
+
derivationType?: number;
|
|
20
|
+
showOnOneToken?: boolean;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export declare function cardanoGetPublicKey(
|
|
24
|
+
connectId: string,
|
|
25
|
+
deviceId: string,
|
|
26
|
+
params: CommonParams & CardanoPublicKeyMethodParams
|
|
27
|
+
): Response<CardanoPublicKey>;
|
|
28
|
+
|
|
29
|
+
export declare function cardanoGetPublicKey(
|
|
30
|
+
connectId: string,
|
|
31
|
+
deviceId: string,
|
|
32
|
+
params: CommonParams & { bundle?: CardanoPublicKeyMethodParams[] }
|
|
33
|
+
): Response<CardanoPublicKey[]>;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { PROTO } from '../../constants';
|
|
2
|
+
import type { CardanoMessageSignature } from '@onetokenfe/hd-transport';
|
|
3
|
+
import type { CommonParams, Response } from '../params';
|
|
4
|
+
|
|
5
|
+
export type CardanoSignMessageParams = {
|
|
6
|
+
address_n: number[];
|
|
7
|
+
message: string;
|
|
8
|
+
derivation_type: number;
|
|
9
|
+
network_id: number;
|
|
10
|
+
address_type: number;
|
|
11
|
+
protocol_magic?: number;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export type CardanoSignMessageMethodParams = {
|
|
15
|
+
path: string;
|
|
16
|
+
message: string;
|
|
17
|
+
derivationType: number;
|
|
18
|
+
networkId: number;
|
|
19
|
+
addressType?: PROTO.CardanoAddressType;
|
|
20
|
+
/**
|
|
21
|
+
* Testnet cip34:0-1097911063
|
|
22
|
+
* Mainnet cip34:1-764824073
|
|
23
|
+
*/
|
|
24
|
+
protocolMagic?: number;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export declare function cardanoSignMessage(
|
|
28
|
+
connectId: string,
|
|
29
|
+
deviceId: string,
|
|
30
|
+
params: CommonParams & CardanoSignMessageMethodParams
|
|
31
|
+
): Response<CardanoMessageSignature>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { CommonParams, Response } from '../params';
|
|
2
|
+
import type { CardanoSignTransaction, CardanoSignedTxData } from './cardano';
|
|
3
|
+
|
|
4
|
+
export declare function cardanoSignTransaction(
|
|
5
|
+
connectId: string,
|
|
6
|
+
deviceId: string,
|
|
7
|
+
params: CommonParams & CardanoSignTransaction
|
|
8
|
+
): Response<CardanoSignedTxData>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { IBLEFirmwareReleaseInfo } from '../settings';
|
|
2
|
+
import type { EFirmwareType } from '@onetokenfe/hd-shared';
|
|
3
|
+
import type { Features } from '@onetokenfe/hd-transport';
|
|
4
|
+
import type { CommonParams, Response } from '../params';
|
|
5
|
+
import type { IDeviceBLEFirmwareStatus, IDeviceFirmwareStatus } from '../device';
|
|
6
|
+
|
|
7
|
+
export type FirmwareRelease = {
|
|
8
|
+
shouldUpdate?: boolean;
|
|
9
|
+
status: IDeviceFirmwareStatus;
|
|
10
|
+
changelog?: {
|
|
11
|
+
'zh-CN': string;
|
|
12
|
+
'en-US': string;
|
|
13
|
+
}[];
|
|
14
|
+
release: IDeviceBLEFirmwareStatus | IBLEFirmwareReleaseInfo;
|
|
15
|
+
bootloaderMode?: boolean;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export type AllFirmwareRelease = {
|
|
19
|
+
firmware: FirmwareRelease;
|
|
20
|
+
ble: FirmwareRelease;
|
|
21
|
+
bootloader?: FirmwareRelease;
|
|
22
|
+
bridge?: FirmwareRelease;
|
|
23
|
+
features?: Features;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export type CheckAllFirmwareReleaseParams = {
|
|
27
|
+
checkBridgeRelease?: boolean;
|
|
28
|
+
firmwareType?: EFirmwareType;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export declare function checkAllFirmwareRelease(
|
|
32
|
+
connectId?: string,
|
|
33
|
+
params?: CommonParams & CheckAllFirmwareReleaseParams
|
|
34
|
+
): Response<AllFirmwareRelease>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { IBLEFirmwareReleaseInfo } from '../settings';
|
|
2
|
+
import type { Response } from '../params';
|
|
3
|
+
import type { IDeviceBLEFirmwareStatus } from '../device';
|
|
4
|
+
|
|
5
|
+
type BleFirmwareRelease = {
|
|
6
|
+
status: IDeviceBLEFirmwareStatus;
|
|
7
|
+
changelog: {
|
|
8
|
+
'zh-CN': string;
|
|
9
|
+
'en-US': string;
|
|
10
|
+
}[];
|
|
11
|
+
release: IBLEFirmwareReleaseInfo;
|
|
12
|
+
bootloaderMode: boolean;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export declare function checkBLEFirmwareRelease(connectId?: string): Response<BleFirmwareRelease>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { EFirmwareType } from '@onetokenfe/hd-shared';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type CheckBootloaderReleaseResponse = {
|
|
5
|
+
shouldUpdate: boolean;
|
|
6
|
+
status: 'outdated' | 'valid';
|
|
7
|
+
release: string | undefined;
|
|
8
|
+
bootloaderMode: boolean;
|
|
9
|
+
} | null;
|
|
10
|
+
|
|
11
|
+
export type CheckBootloaderReleaseParams = {
|
|
12
|
+
willUpdateFirmwareVersion?: string;
|
|
13
|
+
firmwareType?: EFirmwareType;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export declare function checkBootloaderRelease(
|
|
17
|
+
connectId?: string,
|
|
18
|
+
params?: CommonParams & CheckBootloaderReleaseParams
|
|
19
|
+
): Response<CheckBootloaderReleaseResponse>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { CommonParams, Response } from '../params';
|
|
2
|
+
|
|
3
|
+
export type CheckBridgeReleaseResponse = {
|
|
4
|
+
shouldUpdate: boolean;
|
|
5
|
+
status: 'outdated' | 'valid';
|
|
6
|
+
releaseVersion: string;
|
|
7
|
+
} | null;
|
|
8
|
+
|
|
9
|
+
export declare function checkBridgeRelease(
|
|
10
|
+
connectId?: string,
|
|
11
|
+
params?: CommonParams & {
|
|
12
|
+
willUpdateFirmwareVersion?: string;
|
|
13
|
+
}
|
|
14
|
+
): Response<CheckBridgeReleaseResponse>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { IFirmwareReleaseInfo } from '../settings';
|
|
2
|
+
import type { EFirmwareType } from '@onetokenfe/hd-shared';
|
|
3
|
+
import type { Response } from '../params';
|
|
4
|
+
import type { IDeviceFirmwareStatus } from '../device';
|
|
5
|
+
|
|
6
|
+
type FirmwareRelease = {
|
|
7
|
+
status: IDeviceFirmwareStatus;
|
|
8
|
+
changelog: {
|
|
9
|
+
'en-US': string;
|
|
10
|
+
'zh-CN': string;
|
|
11
|
+
}[];
|
|
12
|
+
release: IFirmwareReleaseInfo;
|
|
13
|
+
bootloaderMode: boolean;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export type CheckFirmwareReleaseParams = {
|
|
17
|
+
firmwareType?: EFirmwareType;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export declare function checkFirmwareRelease(
|
|
21
|
+
connectId?: string,
|
|
22
|
+
params?: CheckFirmwareReleaseParams
|
|
23
|
+
): Response<FirmwareRelease>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { EDeviceType, EFirmwareType } from '@onetokenfe/hd-shared';
|
|
2
|
+
import type { Response } from '../params';
|
|
3
|
+
import type { FirmwareRelease } from './checkAllFirmwareRelease';
|
|
4
|
+
|
|
5
|
+
export type CheckFirmwareTypeAvailableParams = {
|
|
6
|
+
deviceType: EDeviceType;
|
|
7
|
+
firmwareType: EFirmwareType;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare function checkFirmwareTypeAvailable(
|
|
11
|
+
params: CheckFirmwareTypeAvailableParams
|
|
12
|
+
): Response<FirmwareRelease | undefined>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { CipheredKeyValue as HardwareCipheredKeyValue } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type CipheredKeyValue = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareCipheredKeyValue;
|
|
7
|
+
|
|
8
|
+
export type CipheredKeyValueParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
key: string;
|
|
11
|
+
value: string;
|
|
12
|
+
encrypt?: boolean;
|
|
13
|
+
askOnEncrypt?: boolean;
|
|
14
|
+
askOnDecrypt?: boolean;
|
|
15
|
+
iv?: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export declare function cipherKeyValue(
|
|
19
|
+
connectId: string,
|
|
20
|
+
deviceId: string,
|
|
21
|
+
params: CommonParams & CipheredKeyValueParams
|
|
22
|
+
): Response<CipheredKeyValue>;
|
|
23
|
+
|
|
24
|
+
export declare function cipherKeyValue(
|
|
25
|
+
connectId: string,
|
|
26
|
+
deviceId: string,
|
|
27
|
+
params: CommonParams & { bundle?: CipheredKeyValueParams[] }
|
|
28
|
+
): Response<Array<CipheredKeyValue>>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ConfluxAddress as HardwareConfluxAddress } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type ConfluxAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareConfluxAddress;
|
|
7
|
+
|
|
8
|
+
export type ConfluxGetAddressParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
chainId?: number;
|
|
11
|
+
showOnOneToken?: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export declare function confluxGetAddress(
|
|
15
|
+
connectId: string,
|
|
16
|
+
deviceId: string,
|
|
17
|
+
params: CommonParams & ConfluxGetAddressParams
|
|
18
|
+
): Response<ConfluxAddress>;
|
|
19
|
+
|
|
20
|
+
export declare function confluxGetAddress(
|
|
21
|
+
connectId: string,
|
|
22
|
+
deviceId: string,
|
|
23
|
+
params: CommonParams & { bundle?: ConfluxGetAddressParams[] }
|
|
24
|
+
): Response<Array<ConfluxAddress>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ConfluxMessageSignature } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type ConfluxSignMessageParams = {
|
|
5
|
+
path: string | number[];
|
|
6
|
+
messageHex: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export declare function confluxSignMessage(
|
|
10
|
+
connectId: string,
|
|
11
|
+
deviceId: string,
|
|
12
|
+
params: CommonParams & ConfluxSignMessageParams
|
|
13
|
+
): Response<ConfluxMessageSignature>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ConfluxMessageSignature } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type ConfluxSignMessageCIP23Params = {
|
|
5
|
+
path: string | number[];
|
|
6
|
+
domainHash: string;
|
|
7
|
+
messageHash: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare function confluxSignMessageCIP23(
|
|
11
|
+
connectId: string,
|
|
12
|
+
deviceId: string,
|
|
13
|
+
params: CommonParams & ConfluxSignMessageCIP23Params
|
|
14
|
+
): Response<ConfluxMessageSignature>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { CommonParams, Response } from '../params';
|
|
2
|
+
|
|
3
|
+
export type ConfluxSignedTx = {
|
|
4
|
+
v: string;
|
|
5
|
+
r: string;
|
|
6
|
+
s: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export type ConfluxTransaction = {
|
|
10
|
+
to: string;
|
|
11
|
+
value: string;
|
|
12
|
+
gasLimit: string;
|
|
13
|
+
gasPrice: string;
|
|
14
|
+
nonce: string;
|
|
15
|
+
epochHeight: string;
|
|
16
|
+
storageLimit: string;
|
|
17
|
+
chainId?: number;
|
|
18
|
+
data?: string;
|
|
19
|
+
data_initial_chunk?: string;
|
|
20
|
+
data_length?: string;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export type ConfluxSignTransactionParams = {
|
|
24
|
+
path: string | number[];
|
|
25
|
+
transaction: ConfluxTransaction;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export declare function confluxSignTransaction(
|
|
29
|
+
connectId: string,
|
|
30
|
+
deviceId: string,
|
|
31
|
+
params: CommonParams & ConfluxSignTransactionParams
|
|
32
|
+
): Response<ConfluxSignedTx>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { CosmosAddress as HardwareCosmosAddress } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type CosmosAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareCosmosAddress;
|
|
7
|
+
|
|
8
|
+
export type CosmosGetAddressParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
hrp?: string;
|
|
11
|
+
showOnOneToken?: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export declare function cosmosGetAddress(
|
|
15
|
+
connectId: string,
|
|
16
|
+
deviceId: string,
|
|
17
|
+
params: CommonParams & CosmosGetAddressParams
|
|
18
|
+
): Response<CosmosAddress>;
|
|
19
|
+
|
|
20
|
+
export declare function cosmosGetAddress(
|
|
21
|
+
connectId: string,
|
|
22
|
+
deviceId: string,
|
|
23
|
+
params: CommonParams & { bundle?: CosmosGetAddressParams[] }
|
|
24
|
+
): Response<Array<CosmosAddress>>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { CommonParams, Response } from '../params';
|
|
2
|
+
|
|
3
|
+
export type CosmosPublicKey = {
|
|
4
|
+
path: string;
|
|
5
|
+
pub: string;
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use `pub` instead.
|
|
8
|
+
*/
|
|
9
|
+
publicKey?: string;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export type CosmosGetPublicKeyParams = {
|
|
13
|
+
path: string | number[];
|
|
14
|
+
curve?: string;
|
|
15
|
+
showOnOneToken?: boolean;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export declare function cosmosGetPublicKey(
|
|
19
|
+
connectId: string,
|
|
20
|
+
deviceId: string,
|
|
21
|
+
params: CommonParams & CosmosGetPublicKeyParams
|
|
22
|
+
): Response<CosmosPublicKey>;
|
|
23
|
+
|
|
24
|
+
export declare function cosmosGetPublicKey(
|
|
25
|
+
connectId: string,
|
|
26
|
+
deviceId: string,
|
|
27
|
+
params: CommonParams & { bundle?: CosmosGetPublicKeyParams[] }
|
|
28
|
+
): Response<Array<CosmosPublicKey>>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { CosmosSignedTx as HardwareCosmosSignedTx } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type CosmosSignedTx = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareCosmosSignedTx;
|
|
7
|
+
|
|
8
|
+
export type CosmosSignTransactionParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
rawTx?: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export declare function cosmosSignTransaction(
|
|
14
|
+
connectId: string,
|
|
15
|
+
deviceId: string,
|
|
16
|
+
params: CommonParams & CosmosSignTransactionParams
|
|
17
|
+
): Response<CosmosSignedTx>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Success } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type DeviceChangePinParams = {
|
|
5
|
+
remove?: boolean;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export declare function deviceChangePin(
|
|
9
|
+
connectId: string,
|
|
10
|
+
params: CommonParams & DeviceChangePinParams
|
|
11
|
+
): Response<Success>;
|