@trezor/connect 9.7.3 → 10.0.0-alpha.1
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/CHANGELOG.md +63 -1378
- package/README.md +9 -45
- package/libESM/api/applyFlags.d.mts +20 -0
- package/libESM/api/applyFlags.mjs +36 -0
- package/libESM/api/applySettings.d.mts +20 -0
- package/libESM/api/applySettings.mjs +55 -0
- package/libESM/api/authenticateDevice.d.mts +9 -0
- package/libESM/api/authenticateDevice.mjs +108 -0
- package/libESM/api/authorizeCoinjoin.d.mts +11 -0
- package/libESM/api/authorizeCoinjoin.mjs +44 -0
- package/libESM/api/backupDevice.d.mts +19 -0
- package/libESM/api/backupDevice.mjs +36 -0
- package/libESM/api/bitcoin/TransactionComposer.d.mts +46 -0
- package/libESM/api/bitcoin/TransactionComposer.mjs +139 -0
- package/libESM/api/bitcoin/createPendingTx.d.mts +33 -0
- package/libESM/api/bitcoin/createPendingTx.mjs +54 -0
- package/libESM/api/bitcoin/enhanceSignTx.d.mts +2 -0
- package/libESM/api/bitcoin/enhanceSignTx.mjs +23 -0
- package/libESM/api/bitcoin/index.d.mts +9 -0
- package/libESM/api/bitcoin/index.mjs +9 -0
- package/libESM/api/bitcoin/inputs.d.mts +6 -0
- package/libESM/api/bitcoin/inputs.mjs +75 -0
- package/libESM/api/bitcoin/outputs.d.mts +5 -0
- package/libESM/api/bitcoin/outputs.mjs +128 -0
- package/libESM/api/bitcoin/refTx.d.mts +17 -0
- package/libESM/api/bitcoin/refTx.mjs +252 -0
- package/libESM/api/bitcoin/signtx.d.mts +22 -0
- package/libESM/api/bitcoin/signtx.mjs +213 -0
- package/libESM/api/bitcoin/signtxLegacy.d.mts +3 -0
- package/libESM/api/bitcoin/signtxLegacy.mjs +179 -0
- package/libESM/api/bitcoin/signtxVerify.d.mts +12 -0
- package/libESM/api/bitcoin/signtxVerify.mjs +86 -0
- package/libESM/api/bitcoin/transactionBytes.d.mts +3 -0
- package/libESM/api/bitcoin/transactionBytes.mjs +65 -0
- package/libESM/api/bleUnpair.d.mts +11 -0
- package/libESM/api/bleUnpair.mjs +35 -0
- package/libESM/api/blockchainDisconnect.d.mts +16 -0
- package/libESM/api/blockchainDisconnect.mjs +39 -0
- package/libESM/api/blockchainEstimateFee.d.mts +14 -0
- package/libESM/api/blockchainEstimateFee.mjs +106 -0
- package/libESM/api/blockchainEvmRpcCall.d.mts +17 -0
- package/libESM/api/blockchainEvmRpcCall.mjs +61 -0
- package/libESM/api/blockchainGetAccountBalanceHistory.d.mts +14 -0
- package/libESM/api/blockchainGetAccountBalanceHistory.mjs +64 -0
- package/libESM/api/blockchainGetContractInfo.d.mts +14 -0
- package/libESM/api/blockchainGetContractInfo.mjs +50 -0
- package/libESM/api/blockchainGetCurrentFiatRates.d.mts +18 -0
- package/libESM/api/blockchainGetCurrentFiatRates.mjs +53 -0
- package/libESM/api/blockchainGetFiatRatesForTimestamps.d.mts +21 -0
- package/libESM/api/blockchainGetFiatRatesForTimestamps.mjs +59 -0
- package/libESM/api/blockchainGetInfo.d.mts +13 -0
- package/libESM/api/blockchainGetInfo.mjs +41 -0
- package/libESM/api/blockchainGetTransactions.d.mts +15 -0
- package/libESM/api/blockchainGetTransactions.mjs +47 -0
- package/libESM/api/blockchainSetCustomBackend.d.mts +13 -0
- package/libESM/api/blockchainSetCustomBackend.mjs +41 -0
- package/libESM/api/blockchainSubscribe.d.mts +17 -0
- package/libESM/api/blockchainSubscribe.mjs +68 -0
- package/libESM/api/blockchainSubscribeFiatRates.d.mts +17 -0
- package/libESM/api/blockchainSubscribeFiatRates.mjs +47 -0
- package/libESM/api/blockchainUnsubscribe.d.mts +17 -0
- package/libESM/api/blockchainUnsubscribe.mjs +68 -0
- package/libESM/api/blockchainUnsubscribeFiatRates.d.mts +15 -0
- package/libESM/api/blockchainUnsubscribeFiatRates.mjs +41 -0
- package/libESM/api/blockchainValidateEvmRpcUrl.d.mts +17 -0
- package/libESM/api/blockchainValidateEvmRpcUrl.mjs +54 -0
- package/libESM/api/cancelCoinjoinAuthorization.d.mts +11 -0
- package/libESM/api/cancelCoinjoinAuthorization.mjs +31 -0
- package/libESM/api/cardano/api/cardanoComposeTransaction.d.mts +10 -0
- package/libESM/api/cardano/api/cardanoComposeTransaction.mjs +79 -0
- package/libESM/api/cardano/api/cardanoGetAddress.d.mts +30 -0
- package/libESM/api/cardano/api/cardanoGetAddress.mjs +116 -0
- package/libESM/api/cardano/api/cardanoGetNativeScriptHash.d.mts +12 -0
- package/libESM/api/cardano/api/cardanoGetNativeScriptHash.mjs +66 -0
- package/libESM/api/cardano/api/cardanoGetPublicKey.d.mts +20 -0
- package/libESM/api/cardano/api/cardanoGetPublicKey.mjs +72 -0
- package/libESM/api/cardano/api/cardanoSignMessage.d.mts +27 -0
- package/libESM/api/cardano/api/cardanoSignMessage.mjs +96 -0
- package/libESM/api/cardano/api/cardanoSignTransaction.d.mts +81 -0
- package/libESM/api/cardano/api/cardanoSignTransaction.mjs +298 -0
- package/libESM/api/cardano/api/index.d.mts +6 -0
- package/libESM/api/cardano/api/index.mjs +6 -0
- package/libESM/api/cardano/cardanoAddressParameters.d.mts +6 -0
- package/libESM/api/cardano/cardanoAddressParameters.mjs +79 -0
- package/libESM/api/cardano/cardanoAuxiliaryData.d.mts +4 -0
- package/libESM/api/cardano/cardanoAuxiliaryData.mjs +74 -0
- package/libESM/api/cardano/cardanoCertificate.d.mts +13 -0
- package/libESM/api/cardano/cardanoCertificate.mjs +142 -0
- package/libESM/api/cardano/cardanoInputs.d.mts +25 -0
- package/libESM/api/cardano/cardanoInputs.mjs +39 -0
- package/libESM/api/cardano/cardanoOutputs.d.mts +40 -0
- package/libESM/api/cardano/cardanoOutputs.mjs +70 -0
- package/libESM/api/cardano/cardanoTokenBundle.d.mts +12 -0
- package/libESM/api/cardano/cardanoTokenBundle.mjs +21 -0
- package/libESM/api/cardano/cardanoUtils.d.mts +9 -0
- package/libESM/api/cardano/cardanoUtils.mjs +101 -0
- package/libESM/api/cardano/cardanoWitnesses.d.mts +4 -0
- package/libESM/api/cardano/cardanoWitnesses.mjs +47 -0
- package/libESM/api/changeLanguage.d.mts +18 -0
- package/libESM/api/changeLanguage.mjs +47 -0
- package/libESM/api/changePin.d.mts +11 -0
- package/libESM/api/changePin.mjs +25 -0
- package/libESM/api/changeWipeCode.d.mts +11 -0
- package/libESM/api/changeWipeCode.mjs +27 -0
- package/libESM/api/cipherKeyValue.d.mts +15 -0
- package/libESM/api/cipherKeyValue.mjs +51 -0
- package/libESM/api/common/AbstractMiscGetAddress.d.mts +35 -0
- package/libESM/api/common/AbstractMiscGetAddress.mjs +102 -0
- package/libESM/api/common/Discovery.d.mts +33 -0
- package/libESM/api/common/Discovery.mjs +116 -0
- package/libESM/api/common/paramsValidator.d.mts +23 -0
- package/libESM/api/common/paramsValidator.mjs +134 -0
- package/libESM/api/common/requestExistingAccounts.d.mts +9 -0
- package/libESM/api/common/requestExistingAccounts.mjs +20 -0
- package/libESM/api/composeTransaction.d.mts +36 -0
- package/libESM/api/composeTransaction.mjs +386 -0
- package/libESM/api/discoverAccounts.d.mts +38 -0
- package/libESM/api/discoverAccounts.mjs +363 -0
- package/libESM/api/ethereum/api/ethereumGetAddress.d.mts +28 -0
- package/libESM/api/ethereum/api/ethereumGetAddress.mjs +135 -0
- package/libESM/api/ethereum/api/ethereumGetPublicKey.d.mts +48 -0
- package/libESM/api/ethereum/api/ethereumGetPublicKey.mjs +90 -0
- package/libESM/api/ethereum/api/ethereumSignMessage.d.mts +27 -0
- package/libESM/api/ethereum/api/ethereumSignMessage.mjs +64 -0
- package/libESM/api/ethereum/api/ethereumSignTransaction.d.mts +83 -0
- package/libESM/api/ethereum/api/ethereumSignTransaction.mjs +148 -0
- package/libESM/api/ethereum/api/ethereumSignTypedData.d.mts +116 -0
- package/libESM/api/ethereum/api/ethereumSignTypedData.mjs +202 -0
- package/libESM/api/ethereum/api/ethereumVerifyMessage.d.mts +12 -0
- package/libESM/api/ethereum/api/ethereumVerifyMessage.mjs +33 -0
- package/libESM/api/ethereum/api/index.d.mts +6 -0
- package/libESM/api/ethereum/api/index.mjs +6 -0
- package/libESM/api/ethereum/ethereumDefinitions.d.mts +46 -0
- package/libESM/api/ethereum/ethereumDefinitions.mjs +103 -0
- package/libESM/api/ethereum/ethereumSignTx.d.mts +20 -0
- package/libESM/api/ethereum/ethereumSignTx.mjs +131 -0
- package/libESM/api/ethereum/ethereumSignTypedData.d.mts +32 -0
- package/libESM/api/ethereum/ethereumSignTypedData.mjs +169 -0
- package/libESM/api/evoluGetDelegatedIdentityKey.d.mts +14 -0
- package/libESM/api/evoluGetDelegatedIdentityKey.mjs +26 -0
- package/libESM/api/evoluGetNode.d.mts +13 -0
- package/libESM/api/evoluGetNode.mjs +27 -0
- package/libESM/api/evoluSignRegistrationRequest.d.mts +15 -0
- package/libESM/api/evoluSignRegistrationRequest.mjs +31 -0
- package/libESM/api/firmware/calculateFirmwareHash.d.mts +13 -0
- package/libESM/api/firmware/calculateFirmwareHash.mjs +56 -0
- package/libESM/api/firmware/calculateXPubHash.d.mts +10 -0
- package/libESM/api/firmware/calculateXPubHash.mjs +14 -0
- package/libESM/api/firmware/getBinary.d.mts +10 -0
- package/libESM/api/firmware/getBinary.mjs +33 -0
- package/libESM/api/firmware/index.d.mts +6 -0
- package/libESM/api/firmware/index.mjs +6 -0
- package/libESM/api/firmware/modifyFirmware.d.mts +3 -0
- package/libESM/api/firmware/modifyFirmware.mjs +13 -0
- package/libESM/api/firmware/parseFirmwareHeaders.d.mts +4 -0
- package/libESM/api/firmware/parseFirmwareHeaders.mjs +26 -0
- package/libESM/api/firmware/uploadFirmware.d.mts +19 -0
- package/libESM/api/firmware/uploadFirmware.mjs +99 -0
- package/libESM/api/firmware/verifyEntropy.d.mts +18 -0
- package/libESM/api/firmware/verifyEntropy.mjs +107 -0
- package/libESM/api/getAccountInfo.d.mts +94 -0
- package/libESM/api/getAccountInfo.mjs +385 -0
- package/libESM/api/getAddress.d.mts +39 -0
- package/libESM/api/getAddress.mjs +142 -0
- package/libESM/api/getCoinInfo.d.mts +148 -0
- package/libESM/api/getCoinInfo.mjs +29 -0
- package/libESM/api/getDeviceState.d.mts +8 -0
- package/libESM/api/getDeviceState.mjs +16 -0
- package/libESM/api/getFeatures.d.mts +70 -0
- package/libESM/api/getFeatures.mjs +20 -0
- package/libESM/api/getFirmwareHash.d.mts +11 -0
- package/libESM/api/getFirmwareHash.mjs +27 -0
- package/libESM/api/getNonce.d.mts +10 -0
- package/libESM/api/getNonce.mjs +16 -0
- package/libESM/api/getOwnershipId.d.mts +15 -0
- package/libESM/api/getOwnershipId.mjs +79 -0
- package/libESM/api/getOwnershipProof.d.mts +15 -0
- package/libESM/api/getOwnershipProof.mjs +86 -0
- package/libESM/api/getPublicKey.d.mts +50 -0
- package/libESM/api/getPublicKey.mjs +88 -0
- package/libESM/api/getSettings.d.mts +8 -0
- package/libESM/api/getSettings.mjs +15 -0
- package/libESM/api/index.d.mts +59 -0
- package/libESM/api/index.mjs +59 -0
- package/libESM/api/loadDevice.d.mts +16 -0
- package/libESM/api/loadDevice.mjs +44 -0
- package/libESM/api/monero/api/index.d.mts +4 -0
- package/libESM/api/monero/api/index.mjs +4 -0
- package/libESM/api/monero/api/moneroGetAddress.d.mts +30 -0
- package/libESM/api/monero/api/moneroGetAddress.mjs +109 -0
- package/libESM/api/monero/api/moneroGetWatchKey.d.mts +14 -0
- package/libESM/api/monero/api/moneroGetWatchKey.mjs +44 -0
- package/libESM/api/monero/api/moneroKeyImageSync.d.mts +17 -0
- package/libESM/api/monero/api/moneroKeyImageSync.mjs +127 -0
- package/libESM/api/monero/api/moneroSignTransaction.d.mts +17 -0
- package/libESM/api/monero/api/moneroSignTransaction.mjs +202 -0
- package/libESM/api/pingDevice.d.mts +11 -0
- package/libESM/api/pingDevice.mjs +27 -0
- package/libESM/api/pushTransaction.d.mts +17 -0
- package/libESM/api/pushTransaction.mjs +42 -0
- package/libESM/api/recoveryDevice.d.mts +20 -0
- package/libESM/api/recoveryDevice.mjs +50 -0
- package/libESM/api/requestLogin.d.mts +14 -0
- package/libESM/api/requestLogin.mjs +48 -0
- package/libESM/api/resetDevice.d.mts +22 -0
- package/libESM/api/resetDevice.mjs +131 -0
- package/libESM/api/ripple/api/index.d.mts +2 -0
- package/libESM/api/ripple/api/index.mjs +2 -0
- package/libESM/api/ripple/api/rippleGetAddress.d.mts +15 -0
- package/libESM/api/ripple/api/rippleGetAddress.mjs +22 -0
- package/libESM/api/ripple/api/rippleSignTransaction.d.mts +13 -0
- package/libESM/api/ripple/api/rippleSignTransaction.mjs +52 -0
- package/libESM/api/setBrightness.d.mts +12 -0
- package/libESM/api/setBrightness.mjs +26 -0
- package/libESM/api/setBusy.d.mts +11 -0
- package/libESM/api/setBusy.mjs +32 -0
- package/libESM/api/showDeviceTutorial.d.mts +11 -0
- package/libESM/api/showDeviceTutorial.mjs +21 -0
- package/libESM/api/signMessage.d.mts +25 -0
- package/libESM/api/signMessage.mjs +71 -0
- package/libESM/api/signTransaction.d.mts +197 -0
- package/libESM/api/signTransaction.mjs +334 -0
- package/libESM/api/solana/api/index.d.mts +4 -0
- package/libESM/api/solana/api/index.mjs +4 -0
- package/libESM/api/solana/api/solanaComposeTransaction.d.mts +31 -0
- package/libESM/api/solana/api/solanaComposeTransaction.mjs +76 -0
- package/libESM/api/solana/api/solanaGetAddress.d.mts +15 -0
- package/libESM/api/solana/api/solanaGetAddress.mjs +22 -0
- package/libESM/api/solana/api/solanaGetPublicKey.d.mts +28 -0
- package/libESM/api/solana/api/solanaGetPublicKey.mjs +67 -0
- package/libESM/api/solana/api/solanaSignTransaction.d.mts +41 -0
- package/libESM/api/solana/api/solanaSignTransaction.mjs +203 -0
- package/libESM/api/solana/solanaDefinitions.d.mts +7 -0
- package/libESM/api/solana/solanaDefinitions.mjs +33 -0
- package/libESM/api/stellar/api/index.d.mts +2 -0
- package/libESM/api/stellar/api/index.mjs +2 -0
- package/libESM/api/stellar/api/stellarGetAddress.d.mts +15 -0
- package/libESM/api/stellar/api/stellarGetAddress.mjs +22 -0
- package/libESM/api/stellar/api/stellarSignTransaction.d.mts +26 -0
- package/libESM/api/stellar/api/stellarSignTransaction.mjs +66 -0
- package/libESM/api/stellar/stellarSignTx.d.mts +7 -0
- package/libESM/api/stellar/stellarSignTx.mjs +191 -0
- package/libESM/api/telemetryGet.d.mts +14 -0
- package/libESM/api/telemetryGet.mjs +24 -0
- package/libESM/api/tezos/api/index.d.mts +3 -0
- package/libESM/api/tezos/api/index.mjs +3 -0
- package/libESM/api/tezos/api/tezosGetAddress.d.mts +15 -0
- package/libESM/api/tezos/api/tezosGetAddress.mjs +22 -0
- package/libESM/api/tezos/api/tezosGetPublicKey.d.mts +24 -0
- package/libESM/api/tezos/api/tezosGetPublicKey.mjs +66 -0
- package/libESM/api/tezos/api/tezosSignTransaction.d.mts +14 -0
- package/libESM/api/tezos/api/tezosSignTransaction.mjs +30 -0
- package/libESM/api/tezos/tezosSignTx.d.mts +71 -0
- package/libESM/api/tezos/tezosSignTx.mjs +204 -0
- package/libESM/api/thpGetCredentials.d.mts +13 -0
- package/libESM/api/thpGetCredentials.mjs +28 -0
- package/libESM/api/thpRemoveCredentials.d.mts +15 -0
- package/libESM/api/thpRemoveCredentials.mjs +42 -0
- package/libESM/api/tron/api/index.d.mts +3 -0
- package/libESM/api/tron/api/index.mjs +3 -0
- package/libESM/api/tron/api/tronComposeTransaction.d.mts +17 -0
- package/libESM/api/tron/api/tronComposeTransaction.mjs +51 -0
- package/libESM/api/tron/api/tronGetAddress.d.mts +15 -0
- package/libESM/api/tron/api/tronGetAddress.mjs +20 -0
- package/libESM/api/tron/api/tronSignTransaction.d.mts +19 -0
- package/libESM/api/tron/api/tronSignTransaction.mjs +129 -0
- package/libESM/api/tron/tronEncode.d.mts +12 -0
- package/libESM/api/tron/tronEncode.mjs +77 -0
- package/libESM/api/tron/tronProtobuf.d.mts +5 -0
- package/libESM/api/tron/tronProtobuf.mjs +28 -0
- package/libESM/api/unlockPath.d.mts +12 -0
- package/libESM/api/unlockPath.mjs +31 -0
- package/libESM/api/verifyMessage.d.mts +16 -0
- package/libESM/api/verifyMessage.mjs +46 -0
- package/libESM/api/wipeDevice.d.mts +21 -0
- package/libESM/api/wipeDevice.mjs +47 -0
- package/libESM/backend/BackendManager.d.mts +24 -0
- package/libESM/backend/BackendManager.mjs +137 -0
- package/libESM/backend/Blockchain.d.mts +81 -0
- package/libESM/backend/Blockchain.mjs +232 -0
- package/libESM/backend/BlockchainLink.d.mts +9 -0
- package/libESM/backend/BlockchainLink.mjs +13 -0
- package/libESM/backend/fees/BitcoinFeeLevels.d.mts +19 -0
- package/libESM/backend/fees/BitcoinFeeLevels.mjs +43 -0
- package/libESM/backend/fees/EthereumFeeLevels.d.mts +17 -0
- package/libESM/backend/fees/EthereumFeeLevels.mjs +52 -0
- package/libESM/backend/fees/MiscFeeLevels.d.mts +18 -0
- package/libESM/backend/fees/MiscFeeLevels.mjs +25 -0
- package/libESM/backend/fees/index.d.mts +5 -0
- package/libESM/backend/fees/index.mjs +30 -0
- package/libESM/core/AbstractMethod.d.mts +65 -0
- package/libESM/core/AbstractMethod.mjs +153 -0
- package/libESM/core/index.d.mts +27 -0
- package/libESM/core/index.mjs +795 -0
- package/libESM/core/method.d.mts +3 -0
- package/libESM/core/method.mjs +19 -0
- package/libESM/core/method.native.d.mts +2 -0
- package/libESM/core/method.native.mjs +29 -0
- package/libESM/core/onCallFirmwareUpdate.d.mts +39 -0
- package/libESM/core/onCallFirmwareUpdate.mjs +436 -0
- package/libESM/data/coinInfo.d.mts +374 -0
- package/libESM/data/coinInfo.mjs +183 -0
- package/libESM/data/config.d.mts +8 -0
- package/libESM/data/config.mjs +265 -0
- package/libESM/data/defaultFeeLevels.d.mts +18 -0
- package/libESM/data/defaultFeeLevels.mjs +174 -0
- package/libESM/data/firmwareInfo.d.mts +41 -0
- package/libESM/data/firmwareInfo.mjs +411 -0
- package/libESM/data/firmwareReleaseStore.d.mts +10 -0
- package/libESM/data/firmwareReleaseStore.mjs +16 -0
- package/libESM/data/localFirmwareStore.d.mts +3 -0
- package/libESM/data/localFirmwareStore.mjs +8 -0
- package/libESM/data/protobufLoader.d.mts +1 -0
- package/libESM/data/protobufLoader.mjs +29 -0
- package/libESM/data/settingsStore.d.mts +6 -0
- package/libESM/data/settingsStore.mjs +21 -0
- package/libESM/device/Device.d.mts +237 -0
- package/libESM/device/Device.mjs +729 -0
- package/libESM/device/DeviceCommands.d.mts +77 -0
- package/libESM/device/DeviceCommands.mjs +245 -0
- package/libESM/device/DeviceCurrentSession.d.mts +3208 -0
- package/libESM/device/DeviceCurrentSession.mjs +240 -0
- package/libESM/device/DeviceList.d.mts +68 -0
- package/libESM/device/DeviceList.mjs +246 -0
- package/libESM/device/TransportList.d.mts +9 -0
- package/libESM/device/TransportList.mjs +41 -0
- package/libESM/device/TransportManager.d.mts +30 -0
- package/libESM/device/TransportManager.mjs +142 -0
- package/libESM/device/calculateRevisionForDevice.d.mts +7 -0
- package/libESM/device/calculateRevisionForDevice.mjs +19 -0
- package/libESM/device/checkFirmwareRevision.d.mts +12 -0
- package/libESM/device/checkFirmwareRevision.mjs +75 -0
- package/libESM/device/resolveDescriptorForTaproot.d.mts +14 -0
- package/libESM/device/resolveDescriptorForTaproot.mjs +25 -0
- package/libESM/device/thp/handshake.d.mts +3 -0
- package/libESM/device/thp/handshake.mjs +100 -0
- package/libESM/device/thp/index.d.mts +5 -0
- package/libESM/device/thp/index.mjs +65 -0
- package/libESM/device/thp/pairing.d.mts +16 -0
- package/libESM/device/thp/pairing.mjs +237 -0
- package/libESM/device/thp/session.d.mts +2 -0
- package/libESM/device/thp/session.mjs +27 -0
- package/libESM/device/thp/thpCall.d.mts +40 -0
- package/libESM/device/thp/thpCall.mjs +58 -0
- package/libESM/device/validateMessageSize.d.mts +2 -0
- package/libESM/device/validateMessageSize.mjs +9 -0
- package/libESM/device/workflow/changeLanguage.d.mts +14 -0
- package/libESM/device/workflow/changeLanguage.mjs +59 -0
- package/libESM/device/workflow/checkFirmwareHash.d.mts +9 -0
- package/libESM/device/workflow/checkFirmwareHash.mjs +86 -0
- package/libESM/device/workflow/checkFirmwareHashWithRetries.d.mts +8 -0
- package/libESM/device/workflow/checkFirmwareHashWithRetries.mjs +36 -0
- package/libESM/device/workflow/handshake.d.mts +9 -0
- package/libESM/device/workflow/handshake.mjs +55 -0
- package/libESM/device/workflow/trezorPushNotification.d.mts +2 -0
- package/libESM/device/workflow/trezorPushNotification.mjs +73 -0
- package/libESM/device/workflow/validateState.d.mts +2 -0
- package/libESM/device/workflow/validateState.mjs +153 -0
- package/libESM/events/ui-promise.d.mts +22 -0
- package/libESM/events/ui-promise.mjs +1 -0
- package/libESM/exports.d.mts +3 -0
- package/libESM/exports.mjs +3 -0
- package/libESM/impl/core-in-module.d.mts +27 -0
- package/libESM/impl/core-in-module.mjs +173 -0
- package/libESM/index.browser.d.mts +9 -0
- package/libESM/index.browser.mjs +50 -0
- package/libESM/index.d.mts +6 -0
- package/libESM/index.mjs +32 -0
- package/libESM/index.renderer.d.mts +6 -0
- package/libESM/index.renderer.mjs +19 -0
- package/libESM/tsconfig.libESM.tsbuildinfo +1 -0
- package/libESM/types/idevice.d.mts +109 -0
- package/libESM/types/idevice.mjs +1 -0
- package/libESM/types/typed-call-provider.d.mts +29 -0
- package/libESM/types/typed-call-provider.mjs +1 -0
- package/libESM/types/workflow.d.mts +16 -0
- package/libESM/types/workflow.mjs +1 -0
- package/libESM/utils/accountUtils.d.mts +10 -0
- package/libESM/utils/accountUtils.mjs +83 -0
- package/libESM/utils/addressUtils.d.mts +2 -0
- package/libESM/utils/addressUtils.mjs +24 -0
- package/libESM/utils/assetUtils.d.mts +13 -0
- package/libESM/utils/assetUtils.mjs +56 -0
- package/libESM/utils/assets.browser.d.mts +1 -0
- package/libESM/utils/assets.browser.mjs +1 -0
- package/libESM/utils/assets.d.mts +2 -0
- package/libESM/utils/assets.mjs +13 -0
- package/libESM/utils/assets.native.d.mts +2 -0
- package/libESM/utils/assets.native.mjs +23 -0
- package/libESM/utils/assetsTypes.d.mts +5 -0
- package/libESM/utils/assetsTypes.mjs +1 -0
- package/libESM/utils/buildOutputDescriptor.d.mts +12 -0
- package/libESM/utils/buildOutputDescriptor.mjs +67 -0
- package/libESM/utils/deviceFeaturesUtils.d.mts +7 -0
- package/libESM/utils/deviceFeaturesUtils.mjs +109 -0
- package/libESM/utils/ethereumUtils.d.mts +3 -0
- package/libESM/utils/ethereumUtils.mjs +7 -0
- package/libESM/utils/firmwareReleaseConfigUtils.d.mts +19 -0
- package/libESM/utils/firmwareReleaseConfigUtils.mjs +131 -0
- package/libESM/utils/firmwareUtils.d.mts +13 -0
- package/libESM/utils/firmwareUtils.mjs +54 -0
- package/libESM/utils/formatUtils.d.mts +15 -0
- package/libESM/utils/formatUtils.mjs +45 -0
- package/libESM/utils/hdnodeUtils.d.mts +6 -0
- package/libESM/utils/hdnodeUtils.mjs +62 -0
- package/libESM/utils/pathUtils.d.mts +17 -0
- package/libESM/utils/pathUtils.mjs +141 -0
- package/libESM/utils/paymentRequest.d.mts +8 -0
- package/libESM/utils/paymentRequest.mjs +25 -0
- package/libESM/utils/uiPromiseManager.d.mts +8 -0
- package/libESM/utils/uiPromiseManager.mjs +51 -0
- package/libESM/workers/workers.browser.d.mts +10 -0
- package/libESM/workers/workers.browser.mjs +16 -0
- package/libESM/workers/workers.d.mts +10 -0
- package/libESM/workers/workers.mjs +8 -0
- package/libESM/workers/workers.native.d.mts +7 -0
- package/libESM/workers/workers.native.mjs +7 -0
- package/package.json +85 -74
- package/lib/api/applyFlags.d.ts +0 -17
- package/lib/api/applyFlags.js +0 -39
- package/lib/api/applySettings.d.ts +0 -17
- package/lib/api/applySettings.js +0 -53
- package/lib/api/authenticateDevice.d.ts +0 -11
- package/lib/api/authenticateDevice.js +0 -95
- package/lib/api/authorizeCoinjoin.d.ts +0 -9
- package/lib/api/authorizeCoinjoin.js +0 -48
- package/lib/api/backupDevice.d.ts +0 -17
- package/lib/api/backupDevice.js +0 -40
- package/lib/api/bitcoin/TransactionComposer.d.ts +0 -48
- package/lib/api/bitcoin/TransactionComposer.js +0 -147
- package/lib/api/bitcoin/createPendingTx.d.ts +0 -35
- package/lib/api/bitcoin/createPendingTx.js +0 -62
- package/lib/api/bitcoin/enhanceSignTx.d.ts +0 -4
- package/lib/api/bitcoin/enhanceSignTx.js +0 -64
- package/lib/api/bitcoin/index.d.ts +0 -10
- package/lib/api/bitcoin/index.js +0 -16
- package/lib/api/bitcoin/inputs.d.ts +0 -8
- package/lib/api/bitcoin/inputs.js +0 -85
- package/lib/api/bitcoin/outputs.d.ts +0 -8
- package/lib/api/bitcoin/outputs.js +0 -127
- package/lib/api/bitcoin/refTx.d.ts +0 -19
- package/lib/api/bitcoin/refTx.js +0 -270
- package/lib/api/bitcoin/signtx.d.ts +0 -25
- package/lib/api/bitcoin/signtx.js +0 -221
- package/lib/api/bitcoin/signtxLegacy.d.ts +0 -4
- package/lib/api/bitcoin/signtxLegacy.js +0 -187
- package/lib/api/bitcoin/signtxVerify.d.ts +0 -14
- package/lib/api/bitcoin/signtxVerify.js +0 -95
- package/lib/api/bitcoin/transactionBytes.d.ts +0 -5
- package/lib/api/bitcoin/transactionBytes.js +0 -76
- package/lib/api/bleUnpair.d.ts +0 -9
- package/lib/api/bleUnpair.js +0 -39
- package/lib/api/blockchainDisconnect.d.ts +0 -15
- package/lib/api/blockchainDisconnect.js +0 -43
- package/lib/api/blockchainEstimateFee.d.ts +0 -13
- package/lib/api/blockchainEstimateFee.js +0 -107
- package/lib/api/blockchainEvmRpcCall.d.ts +0 -16
- package/lib/api/blockchainEvmRpcCall.js +0 -62
- package/lib/api/blockchainGetAccountBalanceHistory.d.ts +0 -13
- package/lib/api/blockchainGetAccountBalanceHistory.js +0 -61
- package/lib/api/blockchainGetCurrentFiatRates.d.ts +0 -17
- package/lib/api/blockchainGetCurrentFiatRates.js +0 -54
- package/lib/api/blockchainGetFiatRatesForTimestamps.d.ts +0 -20
- package/lib/api/blockchainGetFiatRatesForTimestamps.js +0 -60
- package/lib/api/blockchainGetInfo.d.ts +0 -12
- package/lib/api/blockchainGetInfo.js +0 -42
- package/lib/api/blockchainGetTransactions.d.ts +0 -13
- package/lib/api/blockchainGetTransactions.js +0 -47
- package/lib/api/blockchainSetCustomBackend.d.ts +0 -12
- package/lib/api/blockchainSetCustomBackend.js +0 -45
- package/lib/api/blockchainSubscribe.d.ts +0 -16
- package/lib/api/blockchainSubscribe.js +0 -69
- package/lib/api/blockchainSubscribeFiatRates.d.ts +0 -15
- package/lib/api/blockchainSubscribeFiatRates.js +0 -47
- package/lib/api/blockchainUnsubscribe.d.ts +0 -16
- package/lib/api/blockchainUnsubscribe.js +0 -69
- package/lib/api/blockchainUnsubscribeFiatRates.d.ts +0 -14
- package/lib/api/blockchainUnsubscribeFiatRates.js +0 -42
- package/lib/api/cancelCoinjoinAuthorization.d.ts +0 -10
- package/lib/api/cancelCoinjoinAuthorization.js +0 -36
- package/lib/api/cardano/api/cardanoComposeTransaction.d.ts +0 -8
- package/lib/api/cardano/api/cardanoComposeTransaction.js +0 -86
- package/lib/api/cardano/api/cardanoGetAddress.d.ts +0 -27
- package/lib/api/cardano/api/cardanoGetAddress.js +0 -125
- package/lib/api/cardano/api/cardanoGetNativeScriptHash.d.ts +0 -13
- package/lib/api/cardano/api/cardanoGetNativeScriptHash.js +0 -75
- package/lib/api/cardano/api/cardanoGetPublicKey.d.ts +0 -17
- package/lib/api/cardano/api/cardanoGetPublicKey.js +0 -73
- package/lib/api/cardano/api/cardanoSignMessage.d.ts +0 -25
- package/lib/api/cardano/api/cardanoSignMessage.js +0 -100
- package/lib/api/cardano/api/cardanoSignTransaction.d.ts +0 -79
- package/lib/api/cardano/api/cardanoSignTransaction.js +0 -299
- package/lib/api/cardano/api/index.d.ts +0 -7
- package/lib/api/cardano/api/index.js +0 -50
- package/lib/api/cardano/cardanoAddressParameters.d.ts +0 -7
- package/lib/api/cardano/cardanoAddressParameters.js +0 -89
- package/lib/api/cardano/cardanoAuxiliaryData.d.ts +0 -5
- package/lib/api/cardano/cardanoAuxiliaryData.js +0 -83
- package/lib/api/cardano/cardanoCertificate.d.ts +0 -14
- package/lib/api/cardano/cardanoCertificate.js +0 -149
- package/lib/api/cardano/cardanoInputs.d.ts +0 -26
- package/lib/api/cardano/cardanoInputs.js +0 -49
- package/lib/api/cardano/cardanoOutputs.d.ts +0 -40
- package/lib/api/cardano/cardanoOutputs.js +0 -79
- package/lib/api/cardano/cardanoTokenBundle.d.ts +0 -13
- package/lib/api/cardano/cardanoTokenBundle.js +0 -29
- package/lib/api/cardano/cardanoUtils.d.ts +0 -9
- package/lib/api/cardano/cardanoUtils.js +0 -114
- package/lib/api/cardano/cardanoWitnesses.d.ts +0 -5
- package/lib/api/cardano/cardanoWitnesses.js +0 -55
- package/lib/api/changeLanguage.d.ts +0 -17
- package/lib/api/changeLanguage.js +0 -50
- package/lib/api/changePin.d.ts +0 -9
- package/lib/api/changePin.js +0 -29
- package/lib/api/changeWipeCode.d.ts +0 -9
- package/lib/api/changeWipeCode.js +0 -31
- package/lib/api/cipherKeyValue.d.ts +0 -13
- package/lib/api/cipherKeyValue.js +0 -56
- package/lib/api/common/Discovery.d.ts +0 -36
- package/lib/api/common/Discovery.js +0 -127
- package/lib/api/common/paramsValidator.d.ts +0 -14
- package/lib/api/common/paramsValidator.js +0 -130
- package/lib/api/composeTransaction.d.ts +0 -44
- package/lib/api/composeTransaction.js +0 -340
- package/lib/api/discoverAccounts.d.ts +0 -33
- package/lib/api/discoverAccounts.js +0 -316
- package/lib/api/eos/api/eosGetPublicKey.d.ts +0 -23
- package/lib/api/eos/api/eosGetPublicKey.js +0 -69
- package/lib/api/eos/api/eosSignTransaction.d.ts +0 -18
- package/lib/api/eos/api/eosSignTransaction.js +0 -48
- package/lib/api/eos/api/index.d.ts +0 -3
- package/lib/api/eos/api/index.js +0 -22
- package/lib/api/eos/eosSignTx.d.ts +0 -175
- package/lib/api/eos/eosSignTx.js +0 -344
- package/lib/api/ethereum/api/ethereumGetAddress.d.ts +0 -28
- package/lib/api/ethereum/api/ethereumGetAddress.js +0 -132
- package/lib/api/ethereum/api/ethereumGetPublicKey.d.ts +0 -44
- package/lib/api/ethereum/api/ethereumGetPublicKey.js +0 -88
- package/lib/api/ethereum/api/ethereumSignMessage.d.ts +0 -24
- package/lib/api/ethereum/api/ethereumSignMessage.js +0 -70
- package/lib/api/ethereum/api/ethereumSignTransaction.d.ts +0 -82
- package/lib/api/ethereum/api/ethereumSignTransaction.js +0 -162
- package/lib/api/ethereum/api/ethereumSignTypedData.d.ts +0 -116
- package/lib/api/ethereum/api/ethereumSignTypedData.js +0 -211
- package/lib/api/ethereum/api/ethereumVerifyMessage.d.ts +0 -10
- package/lib/api/ethereum/api/ethereumVerifyMessage.js +0 -37
- package/lib/api/ethereum/api/index.d.ts +0 -7
- package/lib/api/ethereum/api/index.js +0 -50
- package/lib/api/ethereum/ethereumDefinitions.d.ts +0 -47
- package/lib/api/ethereum/ethereumDefinitions.js +0 -118
- package/lib/api/ethereum/ethereumSignTx.d.ts +0 -22
- package/lib/api/ethereum/ethereumSignTx.js +0 -142
- package/lib/api/ethereum/ethereumSignTypedData.d.ts +0 -9
- package/lib/api/ethereum/ethereumSignTypedData.js +0 -121
- package/lib/api/evoluGetDelegatedIdentityKey.d.ts +0 -11
- package/lib/api/evoluGetDelegatedIdentityKey.js +0 -41
- package/lib/api/evoluGetNode.d.ts +0 -11
- package/lib/api/evoluGetNode.js +0 -33
- package/lib/api/evoluSignRegistrationRequest.d.ts +0 -12
- package/lib/api/evoluSignRegistrationRequest.js +0 -35
- package/lib/api/firmware/calculateFirmwareHash.d.ts +0 -13
- package/lib/api/firmware/calculateFirmwareHash.js +0 -61
- package/lib/api/firmware/getBinary.d.ts +0 -11
- package/lib/api/firmware/getBinary.js +0 -42
- package/lib/api/firmware/index.d.ts +0 -6
- package/lib/api/firmware/index.js +0 -54
- package/lib/api/firmware/modifyFirmware.d.ts +0 -4
- package/lib/api/firmware/modifyFirmware.js +0 -21
- package/lib/api/firmware/parseFirmwareHeaders.d.ts +0 -5
- package/lib/api/firmware/parseFirmwareHeaders.js +0 -34
- package/lib/api/firmware/uploadFirmware.d.ts +0 -22
- package/lib/api/firmware/uploadFirmware.js +0 -99
- package/lib/api/firmware/verifyEntropy.d.ts +0 -19
- package/lib/api/firmware/verifyEntropy.js +0 -117
- package/lib/api/getAccountDescriptor.d.ts +0 -22
- package/lib/api/getAccountDescriptor.js +0 -139
- package/lib/api/getAccountInfo.d.ts +0 -147
- package/lib/api/getAccountInfo.js +0 -345
- package/lib/api/getAddress.d.ts +0 -38
- package/lib/api/getAddress.js +0 -148
- package/lib/api/getCoinInfo.d.ts +0 -150
- package/lib/api/getCoinInfo.js +0 -33
- package/lib/api/getDeviceState.d.ts +0 -9
- package/lib/api/getDeviceState.js +0 -24
- package/lib/api/getFeatures.d.ts +0 -65
- package/lib/api/getFeatures.js +0 -22
- package/lib/api/getFirmwareHash.d.ts +0 -9
- package/lib/api/getFirmwareHash.js +0 -33
- package/lib/api/getNonce.d.ts +0 -9
- package/lib/api/getNonce.js +0 -18
- package/lib/api/getOwnershipId.d.ts +0 -13
- package/lib/api/getOwnershipId.js +0 -71
- package/lib/api/getOwnershipProof.d.ts +0 -13
- package/lib/api/getOwnershipProof.js +0 -80
- package/lib/api/getPublicKey.d.ts +0 -46
- package/lib/api/getPublicKey.js +0 -87
- package/lib/api/getSettings.d.ts +0 -6
- package/lib/api/getSettings.js +0 -19
- package/lib/api/index.d.ts +0 -58
- package/lib/api/index.js +0 -408
- package/lib/api/loadDevice.d.ts +0 -14
- package/lib/api/loadDevice.js +0 -50
- package/lib/api/monero/api/index.d.ts +0 -5
- package/lib/api/monero/api/index.js +0 -36
- package/lib/api/monero/api/moneroGetAddress.d.ts +0 -27
- package/lib/api/monero/api/moneroGetAddress.js +0 -122
- package/lib/api/monero/api/moneroGetWatchKey.d.ts +0 -13
- package/lib/api/monero/api/moneroGetWatchKey.js +0 -48
- package/lib/api/monero/api/moneroKeyImageSync.d.ts +0 -16
- package/lib/api/monero/api/moneroKeyImageSync.js +0 -131
- package/lib/api/monero/api/moneroSignTransaction.d.ts +0 -16
- package/lib/api/monero/api/moneroSignTransaction.js +0 -207
- package/lib/api/nem/api/index.d.ts +0 -3
- package/lib/api/nem/api/index.js +0 -22
- package/lib/api/nem/api/nemGetAddress.d.ts +0 -26
- package/lib/api/nem/api/nemGetAddress.js +0 -129
- package/lib/api/nem/api/nemSignTransaction.d.ts +0 -11
- package/lib/api/nem/api/nemSignTransaction.js +0 -39
- package/lib/api/nem/nemSignTx.d.ts +0 -78
- package/lib/api/nem/nemSignTx.js +0 -143
- package/lib/api/pushTransaction.d.ts +0 -16
- package/lib/api/pushTransaction.js +0 -44
- package/lib/api/recoveryDevice.d.ts +0 -18
- package/lib/api/recoveryDevice.js +0 -53
- package/lib/api/requestLogin.d.ts +0 -12
- package/lib/api/requestLogin.js +0 -59
- package/lib/api/resetDevice.d.ts +0 -16
- package/lib/api/resetDevice.js +0 -117
- package/lib/api/ripple/api/index.d.ts +0 -3
- package/lib/api/ripple/api/index.js +0 -22
- package/lib/api/ripple/api/rippleGetAddress.d.ts +0 -27
- package/lib/api/ripple/api/rippleGetAddress.js +0 -111
- package/lib/api/ripple/api/rippleSignTransaction.d.ts +0 -11
- package/lib/api/ripple/api/rippleSignTransaction.js +0 -55
- package/lib/api/setBrightness.d.ts +0 -9
- package/lib/api/setBrightness.js +0 -29
- package/lib/api/setBusy.d.ts +0 -9
- package/lib/api/setBusy.js +0 -38
- package/lib/api/setProxy.d.ts +0 -8
- package/lib/api/setProxy.js +0 -32
- package/lib/api/showDeviceTutorial.d.ts +0 -10
- package/lib/api/showDeviceTutorial.js +0 -26
- package/lib/api/signMessage.d.ts +0 -19
- package/lib/api/signMessage.js +0 -64
- package/lib/api/signTransaction.d.ts +0 -231
- package/lib/api/signTransaction.js +0 -348
- package/lib/api/solana/additionalInfo.d.ts +0 -10
- package/lib/api/solana/additionalInfo.js +0 -24
- package/lib/api/solana/api/index.d.ts +0 -5
- package/lib/api/solana/api/index.js +0 -36
- package/lib/api/solana/api/solanaComposeTransaction.d.ts +0 -30
- package/lib/api/solana/api/solanaComposeTransaction.js +0 -62
- package/lib/api/solana/api/solanaGetAddress.d.ts +0 -27
- package/lib/api/solana/api/solanaGetAddress.js +0 -111
- package/lib/api/solana/api/solanaGetPublicKey.d.ts +0 -27
- package/lib/api/solana/api/solanaGetPublicKey.js +0 -71
- package/lib/api/solana/api/solanaSignTransaction.d.ts +0 -39
- package/lib/api/solana/api/solanaSignTransaction.js +0 -203
- package/lib/api/solana/solanaDefinitions.d.ts +0 -8
- package/lib/api/solana/solanaDefinitions.js +0 -46
- package/lib/api/solana/solanaUtils.d.ts +0 -49
- package/lib/api/solana/solanaUtils.js +0 -279
- package/lib/api/stellar/api/index.d.ts +0 -3
- package/lib/api/stellar/api/index.js +0 -22
- package/lib/api/stellar/api/stellarGetAddress.d.ts +0 -27
- package/lib/api/stellar/api/stellarGetAddress.js +0 -111
- package/lib/api/stellar/api/stellarSignTransaction.d.ts +0 -24
- package/lib/api/stellar/api/stellarSignTransaction.js +0 -70
- package/lib/api/stellar/stellarSignTx.d.ts +0 -7
- package/lib/api/stellar/stellarSignTx.js +0 -197
- package/lib/api/tezos/api/index.d.ts +0 -4
- package/lib/api/tezos/api/index.js +0 -29
- package/lib/api/tezos/api/tezosGetAddress.d.ts +0 -27
- package/lib/api/tezos/api/tezosGetAddress.js +0 -111
- package/lib/api/tezos/api/tezosGetPublicKey.d.ts +0 -21
- package/lib/api/tezos/api/tezosGetPublicKey.js +0 -68
- package/lib/api/tezos/api/tezosSignTransaction.d.ts +0 -12
- package/lib/api/tezos/api/tezosSignTransaction.js +0 -36
- package/lib/api/tezos/tezosSignTx.d.ts +0 -72
- package/lib/api/tezos/tezosSignTx.js +0 -211
- package/lib/api/thpGetCredentials.d.ts +0 -10
- package/lib/api/thpGetCredentials.js +0 -34
- package/lib/api/thpRemoveCredentials.d.ts +0 -8
- package/lib/api/thpRemoveCredentials.js +0 -39
- package/lib/api/tron/api/index.d.ts +0 -3
- package/lib/api/tron/api/index.js +0 -22
- package/lib/api/tron/api/tronGetAddress.d.ts +0 -27
- package/lib/api/tron/api/tronGetAddress.js +0 -108
- package/lib/api/tron/api/tronSignTransaction.d.ts +0 -19
- package/lib/api/tron/api/tronSignTransaction.js +0 -63
- package/lib/api/unlockPath.d.ts +0 -10
- package/lib/api/unlockPath.js +0 -38
- package/lib/api/verifyMessage.d.ts +0 -10
- package/lib/api/verifyMessage.js +0 -50
- package/lib/api/wipeDevice.d.ts +0 -17
- package/lib/api/wipeDevice.js +0 -49
- package/lib/backend/BackendManager.d.ts +0 -24
- package/lib/backend/BackendManager.js +0 -145
- package/lib/backend/Blockchain.d.ts +0 -82
- package/lib/backend/Blockchain.js +0 -236
- package/lib/backend/BlockchainLink.d.ts +0 -10
- package/lib/backend/BlockchainLink.js +0 -32
- package/lib/backend/fees/BitcoinFeeLevels.d.ts +0 -20
- package/lib/backend/fees/BitcoinFeeLevels.js +0 -50
- package/lib/backend/fees/EthereumFeeLevels.d.ts +0 -18
- package/lib/backend/fees/EthereumFeeLevels.js +0 -59
- package/lib/backend/fees/MiscFeeLevels.d.ts +0 -19
- package/lib/backend/fees/MiscFeeLevels.js +0 -33
- package/lib/backend/fees/index.d.ts +0 -6
- package/lib/backend/fees/index.js +0 -40
- package/lib/constants/cardano.d.ts +0 -14
- package/lib/constants/cardano.js +0 -23
- package/lib/constants/errors.d.ts +0 -64
- package/lib/constants/errors.js +0 -87
- package/lib/constants/firmware.d.ts +0 -4
- package/lib/constants/firmware.js +0 -10
- package/lib/constants/index.d.ts +0 -8
- package/lib/constants/index.js +0 -27
- package/lib/constants/nem.d.ts +0 -29
- package/lib/constants/nem.js +0 -35
- package/lib/constants/network.d.ts +0 -17
- package/lib/constants/network.js +0 -21
- package/lib/constants/utxo.d.ts +0 -3
- package/lib/constants/utxo.js +0 -8
- package/lib/core/AbstractMethod.d.ts +0 -78
- package/lib/core/AbstractMethod.js +0 -267
- package/lib/core/index.d.ts +0 -32
- package/lib/core/index.js +0 -1006
- package/lib/core/method.d.ts +0 -4
- package/lib/core/method.js +0 -28
- package/lib/core/method.native.d.ts +0 -3
- package/lib/core/method.native.js +0 -40
- package/lib/core/onCallFirmwareUpdate.d.ts +0 -41
- package/lib/core/onCallFirmwareUpdate.js +0 -396
- package/lib/data/DataManager.d.ts +0 -31
- package/lib/data/DataManager.js +0 -100
- package/lib/data/analyticsInfo.d.ts +0 -6
- package/lib/data/analyticsInfo.js +0 -43
- package/lib/data/coinInfo.d.ts +0 -446
- package/lib/data/coinInfo.js +0 -197
- package/lib/data/config.d.ts +0 -33
- package/lib/data/config.js +0 -370
- package/lib/data/connectSettings.d.ts +0 -9
- package/lib/data/connectSettings.js +0 -147
- package/lib/data/defaultFeeLevels.d.ts +0 -19
- package/lib/data/defaultFeeLevels.js +0 -184
- package/lib/data/firmwareInfo.d.ts +0 -53
- package/lib/data/firmwareInfo.js +0 -481
- package/lib/data/thpSettings.d.ts +0 -3
- package/lib/data/thpSettings.js +0 -41
- package/lib/data/udevInfo.d.ts +0 -11
- package/lib/data/udevInfo.js +0 -31
- package/lib/data/version.d.ts +0 -6
- package/lib/data/version.js +0 -14
- package/lib/device/Device.d.ts +0 -293
- package/lib/device/Device.js +0 -766
- package/lib/device/DeviceCommands.d.ts +0 -74
- package/lib/device/DeviceCommands.js +0 -249
- package/lib/device/DeviceCurrentSession.d.ts +0 -1097
- package/lib/device/DeviceCurrentSession.js +0 -260
- package/lib/device/DeviceList.d.ts +0 -69
- package/lib/device/DeviceList.js +0 -239
- package/lib/device/StateStorage.d.ts +0 -15
- package/lib/device/StateStorage.js +0 -40
- package/lib/device/TransportList.d.ts +0 -9
- package/lib/device/TransportList.js +0 -52
- package/lib/device/TransportManager.d.ts +0 -30
- package/lib/device/TransportManager.js +0 -150
- package/lib/device/calculateRevisionForDevice.d.ts +0 -8
- package/lib/device/calculateRevisionForDevice.js +0 -27
- package/lib/device/checkFirmwareRevision.d.ts +0 -12
- package/lib/device/checkFirmwareRevision.js +0 -83
- package/lib/device/resolveDescriptorForTaproot.d.ts +0 -15
- package/lib/device/resolveDescriptorForTaproot.js +0 -33
- package/lib/device/thp/handshake.d.ts +0 -4
- package/lib/device/thp/handshake.js +0 -112
- package/lib/device/thp/index.d.ts +0 -6
- package/lib/device/thp/index.js +0 -69
- package/lib/device/thp/pairing.d.ts +0 -16
- package/lib/device/thp/pairing.js +0 -238
- package/lib/device/thp/session.d.ts +0 -3
- package/lib/device/thp/session.js +0 -35
- package/lib/device/thp/thpCall.d.ts +0 -41
- package/lib/device/thp/thpCall.js +0 -64
- package/lib/device/workflow/checkFirmwareHash.d.ts +0 -10
- package/lib/device/workflow/checkFirmwareHash.js +0 -94
- package/lib/device/workflow/checkFirmwareHashWithRetries.d.ts +0 -9
- package/lib/device/workflow/checkFirmwareHashWithRetries.js +0 -44
- package/lib/device/workflow/handshake.d.ts +0 -10
- package/lib/device/workflow/handshake.js +0 -63
- package/lib/device/workflow/index.d.ts +0 -2
- package/lib/device/workflow/index.js +0 -14
- package/lib/device/workflow/trezorPushNotification.d.ts +0 -3
- package/lib/device/workflow/trezorPushNotification.js +0 -81
- package/lib/device/workflow/validateState.d.ts +0 -3
- package/lib/device/workflow/validateState.js +0 -176
- package/lib/events/blockchain.d.ts +0 -66
- package/lib/events/blockchain.js +0 -22
- package/lib/events/call.d.ts +0 -46
- package/lib/events/call.js +0 -22
- package/lib/events/core.d.ts +0 -24
- package/lib/events/core.js +0 -32
- package/lib/events/device.d.ts +0 -70
- package/lib/events/device.js +0 -42
- package/lib/events/iframe.d.ts +0 -46
- package/lib/events/iframe.js +0 -22
- package/lib/events/index.d.ts +0 -68
- package/lib/events/index.js +0 -25
- package/lib/events/popup.d.ts +0 -88
- package/lib/events/popup.js +0 -29
- package/lib/events/transport.d.ts +0 -51
- package/lib/events/transport.js +0 -26
- package/lib/events/ui-promise.d.ts +0 -20
- package/lib/events/ui-promise.js +0 -6
- package/lib/events/ui-request.d.ts +0 -266
- package/lib/events/ui-request.js +0 -57
- package/lib/events/ui-response.d.ts +0 -104
- package/lib/events/ui-response.js +0 -29
- package/lib/events/webextension.d.ts +0 -8
- package/lib/events/webextension.js +0 -14
- package/lib/exports.d.ts +0 -5
- package/lib/exports.js +0 -18
- package/lib/factory.d.ts +0 -20
- package/lib/factory.js +0 -50
- package/lib/impl/core-in-module.d.ts +0 -35
- package/lib/impl/core-in-module.js +0 -216
- package/lib/impl/dynamic.d.ts +0 -39
- package/lib/impl/dynamic.js +0 -125
- package/lib/index-browser.d.ts +0 -7
- package/lib/index-browser.js +0 -29
- package/lib/index.d.ts +0 -10
- package/lib/index.js +0 -178
- package/lib/tsconfig.lib.tsbuildinfo +0 -1
- package/lib/types/account.d.ts +0 -20
- package/lib/types/account.js +0 -6
- package/lib/types/api/applyFlags.d.ts +0 -4
- package/lib/types/api/applyFlags.js +0 -6
- package/lib/types/api/applySettings.d.ts +0 -23
- package/lib/types/api/applySettings.js +0 -12
- package/lib/types/api/authenticateDevice.d.ts +0 -65
- package/lib/types/api/authenticateDevice.js +0 -14
- package/lib/types/api/authorizeCoinjoin.d.ts +0 -17
- package/lib/types/api/authorizeCoinjoin.js +0 -21
- package/lib/types/api/backupDevice.d.ts +0 -4
- package/lib/types/api/backupDevice.js +0 -6
- package/lib/types/api/bitcoin/index.d.ts +0 -101
- package/lib/types/api/bitcoin/index.js +0 -23
- package/lib/types/api/bleUnpair.d.ts +0 -4
- package/lib/types/api/bleUnpair.js +0 -6
- package/lib/types/api/blockchainDisconnect.d.ts +0 -5
- package/lib/types/api/blockchainDisconnect.js +0 -6
- package/lib/types/api/blockchainEstimateFee.d.ts +0 -26
- package/lib/types/api/blockchainEstimateFee.js +0 -6
- package/lib/types/api/blockchainEvmRpcCall.d.ts +0 -4
- package/lib/types/api/blockchainEvmRpcCall.js +0 -6
- package/lib/types/api/blockchainGetAccountBalanceHistory.d.ts +0 -4
- package/lib/types/api/blockchainGetAccountBalanceHistory.js +0 -6
- package/lib/types/api/blockchainGetCurrentFiatRates.d.ts +0 -4
- package/lib/types/api/blockchainGetCurrentFiatRates.js +0 -6
- package/lib/types/api/blockchainGetFiatRatesForTimestamps.d.ts +0 -4
- package/lib/types/api/blockchainGetFiatRatesForTimestamps.js +0 -6
- package/lib/types/api/blockchainGetInfo.d.ts +0 -4
- package/lib/types/api/blockchainGetInfo.js +0 -6
- package/lib/types/api/blockchainGetTransactions.d.ts +0 -7
- package/lib/types/api/blockchainGetTransactions.js +0 -6
- package/lib/types/api/blockchainSetCustomBackend.d.ts +0 -8
- package/lib/types/api/blockchainSetCustomBackend.js +0 -6
- package/lib/types/api/blockchainSubscribe.d.ts +0 -8
- package/lib/types/api/blockchainSubscribe.js +0 -6
- package/lib/types/api/blockchainSubscribeFiatRates.d.ts +0 -7
- package/lib/types/api/blockchainSubscribeFiatRates.js +0 -6
- package/lib/types/api/blockchainUnsubscribe.d.ts +0 -5
- package/lib/types/api/blockchainUnsubscribe.js +0 -6
- package/lib/types/api/blockchainUnsubscribeFiatRates.d.ts +0 -5
- package/lib/types/api/blockchainUnsubscribeFiatRates.js +0 -6
- package/lib/types/api/cancel.d.ts +0 -2
- package/lib/types/api/cancel.js +0 -6
- package/lib/types/api/cancelCoinjoinAuthorization.d.ts +0 -9
- package/lib/types/api/cancelCoinjoinAuthorization.js +0 -11
- package/lib/types/api/cardano/index.d.ts +0 -784
- package/lib/types/api/cardano/index.js +0 -241
- package/lib/types/api/cardanoComposeTransaction.d.ts +0 -150
- package/lib/types/api/cardanoComposeTransaction.js +0 -91
- package/lib/types/api/cardanoGetAddress.d.ts +0 -5
- package/lib/types/api/cardanoGetAddress.js +0 -6
- package/lib/types/api/cardanoGetNativeScriptHash.d.ts +0 -4
- package/lib/types/api/cardanoGetNativeScriptHash.js +0 -6
- package/lib/types/api/cardanoGetPublicKey.d.ts +0 -5
- package/lib/types/api/cardanoGetPublicKey.js +0 -6
- package/lib/types/api/cardanoSignMessage.d.ts +0 -4
- package/lib/types/api/cardanoSignMessage.js +0 -6
- package/lib/types/api/cardanoSignTransaction.d.ts +0 -10
- package/lib/types/api/cardanoSignTransaction.js +0 -6
- package/lib/types/api/changeLanguage.d.ts +0 -15
- package/lib/types/api/changeLanguage.js +0 -17
- package/lib/types/api/changePin.d.ts +0 -4
- package/lib/types/api/changePin.js +0 -6
- package/lib/types/api/changeWipeCode.d.ts +0 -4
- package/lib/types/api/changeWipeCode.js +0 -6
- package/lib/types/api/cipherKeyValue.d.ts +0 -18
- package/lib/types/api/cipherKeyValue.js +0 -18
- package/lib/types/api/composeTransaction.d.ts +0 -74
- package/lib/types/api/composeTransaction.js +0 -6
- package/lib/types/api/device.d.ts +0 -1
- package/lib/types/api/device.js +0 -1
- package/lib/types/api/disableWebUSB.d.ts +0 -2
- package/lib/types/api/disableWebUSB.js +0 -6
- package/lib/types/api/discoverAccounts.d.ts +0 -248
- package/lib/types/api/discoverAccounts.js +0 -210
- package/lib/types/api/dispose.d.ts +0 -2
- package/lib/types/api/dispose.js +0 -6
- package/lib/types/api/eos/index.d.ts +0 -784
- package/lib/types/api/eos/index.js +0 -124
- package/lib/types/api/eosGetPublicKey.d.ts +0 -5
- package/lib/types/api/eosGetPublicKey.js +0 -6
- package/lib/types/api/eosSignTransaction.d.ts +0 -5
- package/lib/types/api/eosSignTransaction.js +0 -6
- package/lib/types/api/ethereum/index.d.ts +0 -307
- package/lib/types/api/ethereum/index.js +0 -101
- package/lib/types/api/ethereumGetAddress.d.ts +0 -4
- package/lib/types/api/ethereumGetAddress.js +0 -6
- package/lib/types/api/ethereumGetPublicKey.d.ts +0 -5
- package/lib/types/api/ethereumGetPublicKey.js +0 -6
- package/lib/types/api/ethereumSignMessage.d.ts +0 -5
- package/lib/types/api/ethereumSignMessage.js +0 -6
- package/lib/types/api/ethereumSignTransaction.d.ts +0 -4
- package/lib/types/api/ethereumSignTransaction.js +0 -6
- package/lib/types/api/ethereumSignTypedData.d.ts +0 -6
- package/lib/types/api/ethereumSignTypedData.js +0 -6
- package/lib/types/api/ethereumVerifyMessage.d.ts +0 -5
- package/lib/types/api/ethereumVerifyMessage.js +0 -6
- package/lib/types/api/evoluGetDelegatedIdentityKey.d.ts +0 -9
- package/lib/types/api/evoluGetDelegatedIdentityKey.js +0 -6
- package/lib/types/api/evoluGetNode.d.ts +0 -4
- package/lib/types/api/evoluGetNode.js +0 -6
- package/lib/types/api/evoluSignRegistrationRequest.d.ts +0 -4
- package/lib/types/api/evoluSignRegistrationRequest.js +0 -6
- package/lib/types/api/firmwareUpdate.d.ts +0 -21
- package/lib/types/api/firmwareUpdate.js +0 -16
- package/lib/types/api/getAccountDescriptor.d.ts +0 -18
- package/lib/types/api/getAccountDescriptor.js +0 -16
- package/lib/types/api/getAccountInfo.d.ts +0 -16
- package/lib/types/api/getAccountInfo.js +0 -6
- package/lib/types/api/getAddress.d.ts +0 -48
- package/lib/types/api/getAddress.js +0 -17
- package/lib/types/api/getCoinInfo.d.ts +0 -6
- package/lib/types/api/getCoinInfo.js +0 -6
- package/lib/types/api/getDeviceState.d.ts +0 -8
- package/lib/types/api/getDeviceState.js +0 -6
- package/lib/types/api/getFeatures.d.ts +0 -4
- package/lib/types/api/getFeatures.js +0 -6
- package/lib/types/api/getFirmwareHash.d.ts +0 -4
- package/lib/types/api/getFirmwareHash.js +0 -6
- package/lib/types/api/getNonce.d.ts +0 -4
- package/lib/types/api/getNonce.js +0 -6
- package/lib/types/api/getOwnershipId.d.ts +0 -41
- package/lib/types/api/getOwnershipId.js +0 -16
- package/lib/types/api/getOwnershipProof.d.ts +0 -45
- package/lib/types/api/getOwnershipProof.js +0 -22
- package/lib/types/api/getPublicKey.d.ts +0 -37
- package/lib/types/api/getPublicKey.js +0 -31
- package/lib/types/api/getSettings.d.ts +0 -4
- package/lib/types/api/getSettings.js +0 -6
- package/lib/types/api/index.d.ts +0 -203
- package/lib/types/api/index.js +0 -6
- package/lib/types/api/init.d.ts +0 -7
- package/lib/types/api/init.js +0 -6
- package/lib/types/api/loadDevice.d.ts +0 -4
- package/lib/types/api/loadDevice.js +0 -6
- package/lib/types/api/manifest.d.ts +0 -3
- package/lib/types/api/manifest.js +0 -6
- package/lib/types/api/monero/index.d.ts +0 -280
- package/lib/types/api/monero/index.js +0 -178
- package/lib/types/api/moneroGetAddress.d.ts +0 -5
- package/lib/types/api/moneroGetAddress.js +0 -6
- package/lib/types/api/moneroGetWatchKey.d.ts +0 -4
- package/lib/types/api/moneroGetWatchKey.js +0 -6
- package/lib/types/api/moneroKeyImageSync.d.ts +0 -4
- package/lib/types/api/moneroKeyImageSync.js +0 -6
- package/lib/types/api/moneroSignTransaction.d.ts +0 -4
- package/lib/types/api/moneroSignTransaction.js +0 -6
- package/lib/types/api/nem/index.d.ts +0 -842
- package/lib/types/api/nem/index.js +0 -99
- package/lib/types/api/nemGetAddress.d.ts +0 -14
- package/lib/types/api/nemGetAddress.js +0 -12
- package/lib/types/api/nemSignTransaction.d.ts +0 -5
- package/lib/types/api/nemSignTransaction.js +0 -6
- package/lib/types/api/off.d.ts +0 -11
- package/lib/types/api/off.js +0 -6
- package/lib/types/api/on.d.ts +0 -14
- package/lib/types/api/on.js +0 -6
- package/lib/types/api/pushTransaction.d.ts +0 -16
- package/lib/types/api/pushTransaction.js +0 -16
- package/lib/types/api/recoveryDevice.d.ts +0 -17
- package/lib/types/api/recoveryDevice.js +0 -12
- package/lib/types/api/removeAllListeners.d.ts +0 -3
- package/lib/types/api/removeAllListeners.js +0 -6
- package/lib/types/api/renderWebUSBButton.d.ts +0 -2
- package/lib/types/api/renderWebUSBButton.js +0 -6
- package/lib/types/api/requestLogin.d.ts +0 -25
- package/lib/types/api/requestLogin.js +0 -16
- package/lib/types/api/requestWebUSBDevice.d.ts +0 -2
- package/lib/types/api/requestWebUSBDevice.js +0 -6
- package/lib/types/api/resetDevice.d.ts +0 -4
- package/lib/types/api/resetDevice.js +0 -6
- package/lib/types/api/ripple/index.d.ts +0 -41
- package/lib/types/api/ripple/index.js +0 -30
- package/lib/types/api/rippleGetAddress.d.ts +0 -4
- package/lib/types/api/rippleGetAddress.js +0 -6
- package/lib/types/api/rippleSignTransaction.d.ts +0 -4
- package/lib/types/api/rippleSignTransaction.js +0 -6
- package/lib/types/api/setBrightness.d.ts +0 -4
- package/lib/types/api/setBrightness.js +0 -6
- package/lib/types/api/setBusy.d.ts +0 -4
- package/lib/types/api/setBusy.js +0 -6
- package/lib/types/api/setProxy.d.ts +0 -8
- package/lib/types/api/setProxy.js +0 -6
- package/lib/types/api/setTransports.d.ts +0 -4
- package/lib/types/api/setTransports.js +0 -6
- package/lib/types/api/showDeviceTutorial.d.ts +0 -4
- package/lib/types/api/showDeviceTutorial.js +0 -6
- package/lib/types/api/signMessage.d.ts +0 -5
- package/lib/types/api/signMessage.js +0 -6
- package/lib/types/api/signTransaction.d.ts +0 -4
- package/lib/types/api/signTransaction.js +0 -6
- package/lib/types/api/solana/index.d.ts +0 -113
- package/lib/types/api/solana/index.js +0 -76
- package/lib/types/api/solanaComposeTransaction.d.ts +0 -4
- package/lib/types/api/solanaComposeTransaction.js +0 -6
- package/lib/types/api/solanaGetAddress.d.ts +0 -4
- package/lib/types/api/solanaGetAddress.js +0 -6
- package/lib/types/api/solanaGetPublicKey.d.ts +0 -5
- package/lib/types/api/solanaGetPublicKey.js +0 -6
- package/lib/types/api/solanaSignTransaction.d.ts +0 -4
- package/lib/types/api/solanaSignTransaction.js +0 -6
- package/lib/types/api/stellar/index.d.ts +0 -914
- package/lib/types/api/stellar/index.js +0 -194
- package/lib/types/api/stellarGetAddress.d.ts +0 -4
- package/lib/types/api/stellarGetAddress.js +0 -6
- package/lib/types/api/stellarSignTransaction.d.ts +0 -4
- package/lib/types/api/stellarSignTransaction.js +0 -6
- package/lib/types/api/tezos/index.d.ts +0 -163
- package/lib/types/api/tezos/index.js +0 -67
- package/lib/types/api/tezosGetAddress.d.ts +0 -4
- package/lib/types/api/tezosGetAddress.js +0 -6
- package/lib/types/api/tezosGetPublicKey.d.ts +0 -4
- package/lib/types/api/tezosGetPublicKey.js +0 -6
- package/lib/types/api/tezosSignTransaction.d.ts +0 -5
- package/lib/types/api/tezosSignTransaction.js +0 -6
- package/lib/types/api/thpGetCredentials.d.ts +0 -4
- package/lib/types/api/thpGetCredentials.js +0 -6
- package/lib/types/api/thpRemoveCredentials.d.ts +0 -7
- package/lib/types/api/thpRemoveCredentials.js +0 -6
- package/lib/types/api/tron/index.d.ts +0 -130
- package/lib/types/api/tron/index.js +0 -62
- package/lib/types/api/tronGetAddress.d.ts +0 -4
- package/lib/types/api/tronGetAddress.js +0 -6
- package/lib/types/api/tronSignTransaction.d.ts +0 -4
- package/lib/types/api/tronSignTransaction.js +0 -6
- package/lib/types/api/uiResponse.d.ts +0 -3
- package/lib/types/api/uiResponse.js +0 -6
- package/lib/types/api/unlockPath.d.ts +0 -10
- package/lib/types/api/unlockPath.js +0 -13
- package/lib/types/api/verifyMessage.d.ts +0 -5
- package/lib/types/api/verifyMessage.js +0 -6
- package/lib/types/api/wipeDevice.d.ts +0 -4
- package/lib/types/api/wipeDevice.js +0 -6
- package/lib/types/coinInfo.d.ts +0 -353
- package/lib/types/coinInfo.js +0 -79
- package/lib/types/device.d.ts +0 -133
- package/lib/types/device.js +0 -13
- package/lib/types/fees.d.ts +0 -36
- package/lib/types/fees.js +0 -39
- package/lib/types/firmware.d.ts +0 -25
- package/lib/types/firmware.js +0 -6
- package/lib/types/index.d.ts +0 -25
- package/lib/types/index.js +0 -39
- package/lib/types/params.d.ts +0 -93
- package/lib/types/params.js +0 -38
- package/lib/types/settings.d.ts +0 -80
- package/lib/types/settings.js +0 -6
- package/lib/types/utils.d.ts +0 -15
- package/lib/types/utils.js +0 -6
- package/lib/types/workflow.d.ts +0 -12
- package/lib/types/workflow.js +0 -6
- package/lib/utils/accountUtils.d.ts +0 -11
- package/lib/utils/accountUtils.js +0 -94
- package/lib/utils/addressUtils.d.ts +0 -3
- package/lib/utils/addressUtils.js +0 -32
- package/lib/utils/assetUtils.d.ts +0 -10
- package/lib/utils/assetUtils.js +0 -47
- package/lib/utils/assets-browser.d.ts +0 -3
- package/lib/utils/assets-browser.js +0 -29
- package/lib/utils/assets.d.ts +0 -3
- package/lib/utils/assets.js +0 -22
- package/lib/utils/assets.native.d.ts +0 -3
- package/lib/utils/assets.native.js +0 -30
- package/lib/utils/assetsTypes.d.ts +0 -6
- package/lib/utils/assetsTypes.js +0 -6
- package/lib/utils/debug.d.ts +0 -7
- package/lib/utils/debug.js +0 -33
- package/lib/utils/deviceFeaturesUtils.d.ts +0 -8
- package/lib/utils/deviceFeaturesUtils.js +0 -123
- package/lib/utils/ethereumUtils.d.ts +0 -4
- package/lib/utils/ethereumUtils.js +0 -15
- package/lib/utils/firmwareReleaseConfigUtils.d.ts +0 -10
- package/lib/utils/firmwareReleaseConfigUtils.js +0 -91
- package/lib/utils/firmwareUtils.d.ts +0 -15
- package/lib/utils/firmwareUtils.js +0 -70
- package/lib/utils/formatUtils.d.ts +0 -15
- package/lib/utils/formatUtils.js +0 -84
- package/lib/utils/hdnodeUtils.d.ts +0 -7
- package/lib/utils/hdnodeUtils.js +0 -73
- package/lib/utils/interactionTimeout.d.ts +0 -10
- package/lib/utils/interactionTimeout.js +0 -37
- package/lib/utils/pathUtils.d.ts +0 -21
- package/lib/utils/pathUtils.js +0 -172
- package/lib/utils/popupPromiseManager.d.ts +0 -8
- package/lib/utils/popupPromiseManager.js +0 -30
- package/lib/utils/proxy-event-emitter.d.ts +0 -21
- package/lib/utils/proxy-event-emitter.js +0 -69
- package/lib/utils/uiPromiseManager.d.ts +0 -43
- package/lib/utils/uiPromiseManager.js +0 -63
- package/lib/utils/urlUtils.d.ts +0 -13
- package/lib/utils/urlUtils.js +0 -31
- package/lib/utils/versionCheck.d.ts +0 -3
- package/lib/utils/versionCheck.js +0 -16
- package/lib/workers/workers-browser.d.ts +0 -10
- package/lib/workers/workers-browser.js +0 -20
- package/lib/workers/workers.d.ts +0 -10
- package/lib/workers/workers.js +0 -60
- package/lib/workers/workers.native.d.ts +0 -8
- package/lib/workers/workers.native.js +0 -20
|
@@ -0,0 +1,3208 @@
|
|
|
1
|
+
import { MessagesSchema as Messages } from '@trezor/protobuf';
|
|
2
|
+
import type { MessageResponse, Session, Transport } from '@trezor/transport';
|
|
3
|
+
import type { IDevice } from '../types/idevice';
|
|
4
|
+
import type { TypedCallProvider } from '../types/typed-call-provider';
|
|
5
|
+
type AbortableOptions = {
|
|
6
|
+
timeout?: number;
|
|
7
|
+
signal?: AbortSignal;
|
|
8
|
+
};
|
|
9
|
+
export type { TypedCallProvider } from '../types/typed-call-provider';
|
|
10
|
+
export declare class DeviceCurrentSession implements TypedCallProvider {
|
|
11
|
+
private readonly device;
|
|
12
|
+
private readonly transport;
|
|
13
|
+
private readonly session;
|
|
14
|
+
private disposed?;
|
|
15
|
+
private callPromise?;
|
|
16
|
+
private abortController?;
|
|
17
|
+
constructor(device: IDevice, transport: Transport, session: Session);
|
|
18
|
+
isDisposed(): boolean;
|
|
19
|
+
typedCall(type: Messages.MessageKey, expectedType: Messages.MessageKey | Messages.MessageKey[], msg?: Messages.MessagePayload): Promise<{
|
|
20
|
+
type: "Success";
|
|
21
|
+
message: {
|
|
22
|
+
message: string;
|
|
23
|
+
};
|
|
24
|
+
} | {
|
|
25
|
+
type: "ButtonAck";
|
|
26
|
+
message: {};
|
|
27
|
+
} | {
|
|
28
|
+
type: "PinMatrixAck";
|
|
29
|
+
message: {
|
|
30
|
+
pin: string;
|
|
31
|
+
};
|
|
32
|
+
} | {
|
|
33
|
+
type: "PassphraseAck";
|
|
34
|
+
message: {
|
|
35
|
+
passphrase?: string | undefined;
|
|
36
|
+
_state?: string | undefined;
|
|
37
|
+
on_device?: boolean | undefined;
|
|
38
|
+
};
|
|
39
|
+
} | {
|
|
40
|
+
type: "Deprecated_PassphraseStateRequest";
|
|
41
|
+
message: {
|
|
42
|
+
state?: string | undefined;
|
|
43
|
+
};
|
|
44
|
+
} | {
|
|
45
|
+
type: "Deprecated_PassphraseStateAck";
|
|
46
|
+
message: {};
|
|
47
|
+
} | {
|
|
48
|
+
type: "PaymentRequest";
|
|
49
|
+
message: {
|
|
50
|
+
amount?: string | undefined;
|
|
51
|
+
nonce?: string | undefined;
|
|
52
|
+
memos?: {
|
|
53
|
+
text_memo?: {
|
|
54
|
+
text: string;
|
|
55
|
+
} | undefined;
|
|
56
|
+
refund_memo?: {
|
|
57
|
+
address_n: number[];
|
|
58
|
+
address: string;
|
|
59
|
+
mac: string;
|
|
60
|
+
} | undefined;
|
|
61
|
+
coin_purchase_memo?: {
|
|
62
|
+
amount: string;
|
|
63
|
+
address_n: number[];
|
|
64
|
+
address: string;
|
|
65
|
+
mac: string;
|
|
66
|
+
coin_type: number;
|
|
67
|
+
} | undefined;
|
|
68
|
+
text_details_memo?: {
|
|
69
|
+
text: string;
|
|
70
|
+
title: string;
|
|
71
|
+
} | undefined;
|
|
72
|
+
}[] | undefined;
|
|
73
|
+
recipient_name: string;
|
|
74
|
+
signature: string;
|
|
75
|
+
};
|
|
76
|
+
} | {
|
|
77
|
+
type: "GetPublicKey";
|
|
78
|
+
message: {
|
|
79
|
+
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
80
|
+
ecdsa_curve_name?: string | undefined;
|
|
81
|
+
show_display?: boolean | undefined;
|
|
82
|
+
coin_name?: string | undefined;
|
|
83
|
+
ignore_xpub_magic?: boolean | undefined;
|
|
84
|
+
address_n: number[];
|
|
85
|
+
};
|
|
86
|
+
} | {
|
|
87
|
+
type: "PublicKey";
|
|
88
|
+
message: {
|
|
89
|
+
descriptor?: string | undefined;
|
|
90
|
+
root_fingerprint?: number | undefined;
|
|
91
|
+
xpub: string;
|
|
92
|
+
node: {
|
|
93
|
+
private_key?: string | undefined;
|
|
94
|
+
fingerprint: number;
|
|
95
|
+
depth: number;
|
|
96
|
+
child_num: number;
|
|
97
|
+
chain_code: string;
|
|
98
|
+
public_key: string;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
} | {
|
|
102
|
+
type: "GetAddress";
|
|
103
|
+
message: {
|
|
104
|
+
chunkify?: boolean | undefined;
|
|
105
|
+
multisig?: {
|
|
106
|
+
address_n?: number[] | undefined;
|
|
107
|
+
nodes?: {
|
|
108
|
+
private_key?: string | undefined;
|
|
109
|
+
fingerprint: number;
|
|
110
|
+
depth: number;
|
|
111
|
+
child_num: number;
|
|
112
|
+
chain_code: string;
|
|
113
|
+
public_key: string;
|
|
114
|
+
}[] | undefined;
|
|
115
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
116
|
+
m: number;
|
|
117
|
+
pubkeys: {
|
|
118
|
+
address_n: number[];
|
|
119
|
+
node: string | {
|
|
120
|
+
private_key?: string | undefined;
|
|
121
|
+
fingerprint: number;
|
|
122
|
+
depth: number;
|
|
123
|
+
child_num: number;
|
|
124
|
+
chain_code: string;
|
|
125
|
+
public_key: string;
|
|
126
|
+
};
|
|
127
|
+
}[];
|
|
128
|
+
signatures: string[];
|
|
129
|
+
} | undefined;
|
|
130
|
+
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
131
|
+
show_display?: boolean | undefined;
|
|
132
|
+
coin_name?: string | undefined;
|
|
133
|
+
ignore_xpub_magic?: boolean | undefined;
|
|
134
|
+
address_n: number[];
|
|
135
|
+
};
|
|
136
|
+
} | {
|
|
137
|
+
type: "Address";
|
|
138
|
+
message: {
|
|
139
|
+
mac?: string | undefined;
|
|
140
|
+
address: string;
|
|
141
|
+
};
|
|
142
|
+
} | {
|
|
143
|
+
type: "GetOwnershipId";
|
|
144
|
+
message: {
|
|
145
|
+
multisig?: {
|
|
146
|
+
address_n?: number[] | undefined;
|
|
147
|
+
nodes?: {
|
|
148
|
+
private_key?: string | undefined;
|
|
149
|
+
fingerprint: number;
|
|
150
|
+
depth: number;
|
|
151
|
+
child_num: number;
|
|
152
|
+
chain_code: string;
|
|
153
|
+
public_key: string;
|
|
154
|
+
}[] | undefined;
|
|
155
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
156
|
+
m: number;
|
|
157
|
+
pubkeys: {
|
|
158
|
+
address_n: number[];
|
|
159
|
+
node: string | {
|
|
160
|
+
private_key?: string | undefined;
|
|
161
|
+
fingerprint: number;
|
|
162
|
+
depth: number;
|
|
163
|
+
child_num: number;
|
|
164
|
+
chain_code: string;
|
|
165
|
+
public_key: string;
|
|
166
|
+
};
|
|
167
|
+
}[];
|
|
168
|
+
signatures: string[];
|
|
169
|
+
} | undefined;
|
|
170
|
+
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
171
|
+
coin_name?: string | undefined;
|
|
172
|
+
address_n: number[];
|
|
173
|
+
};
|
|
174
|
+
} | {
|
|
175
|
+
type: "OwnershipId";
|
|
176
|
+
message: {
|
|
177
|
+
ownership_id: string;
|
|
178
|
+
};
|
|
179
|
+
} | {
|
|
180
|
+
type: "SignMessage";
|
|
181
|
+
message: {
|
|
182
|
+
chunkify?: boolean | undefined;
|
|
183
|
+
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
184
|
+
coin_name?: string | undefined;
|
|
185
|
+
no_script_type?: boolean | undefined;
|
|
186
|
+
address_n: number[];
|
|
187
|
+
message: string;
|
|
188
|
+
};
|
|
189
|
+
} | {
|
|
190
|
+
type: "MessageSignature";
|
|
191
|
+
message: {
|
|
192
|
+
address: string;
|
|
193
|
+
signature: string;
|
|
194
|
+
};
|
|
195
|
+
} | {
|
|
196
|
+
type: "VerifyMessage";
|
|
197
|
+
message: {
|
|
198
|
+
chunkify?: boolean | undefined;
|
|
199
|
+
coin_name?: string | undefined;
|
|
200
|
+
address: string;
|
|
201
|
+
message: string;
|
|
202
|
+
signature: string;
|
|
203
|
+
};
|
|
204
|
+
} | {
|
|
205
|
+
type: "SignTx";
|
|
206
|
+
message: {
|
|
207
|
+
chunkify?: boolean | undefined;
|
|
208
|
+
coin_name?: string | undefined;
|
|
209
|
+
version?: number | undefined;
|
|
210
|
+
lock_time?: number | undefined;
|
|
211
|
+
expiry?: number | undefined;
|
|
212
|
+
overwintered?: boolean | undefined;
|
|
213
|
+
version_group_id?: number | undefined;
|
|
214
|
+
timestamp?: number | undefined;
|
|
215
|
+
branch_id?: number | undefined;
|
|
216
|
+
amount_unit?: Messages.AmountUnit | undefined;
|
|
217
|
+
decred_staking_ticket?: boolean | undefined;
|
|
218
|
+
serialize?: boolean | undefined;
|
|
219
|
+
coinjoin_request?: {
|
|
220
|
+
signature?: string | undefined;
|
|
221
|
+
mask_public_key?: string | undefined;
|
|
222
|
+
fee_rate: number;
|
|
223
|
+
no_fee_threshold: number;
|
|
224
|
+
min_registrable_amount: number;
|
|
225
|
+
} | undefined;
|
|
226
|
+
outputs_count: number;
|
|
227
|
+
inputs_count: number;
|
|
228
|
+
};
|
|
229
|
+
} | {
|
|
230
|
+
type: "TxRequest";
|
|
231
|
+
message: {
|
|
232
|
+
serialized?: {
|
|
233
|
+
signature?: string | undefined;
|
|
234
|
+
serialized_tx?: string | undefined;
|
|
235
|
+
signature_index?: number | undefined;
|
|
236
|
+
} | undefined;
|
|
237
|
+
request_type: "TXINPUT" | "TXOUTPUT" | "TXMETA" | "TXFINISHED" | "TXEXTRADATA" | "TXORIGINPUT" | "TXORIGOUTPUT" | "TXPAYMENTREQ";
|
|
238
|
+
details: {
|
|
239
|
+
tx_hash?: string | undefined;
|
|
240
|
+
extra_data_len?: number | undefined;
|
|
241
|
+
extra_data_offset?: number | undefined;
|
|
242
|
+
request_index: number;
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
} | {
|
|
246
|
+
type: "TxAck";
|
|
247
|
+
message: {
|
|
248
|
+
tx: {
|
|
249
|
+
inputs: (({
|
|
250
|
+
sequence?: number | undefined;
|
|
251
|
+
multisig?: {
|
|
252
|
+
address_n?: number[] | undefined;
|
|
253
|
+
nodes?: {
|
|
254
|
+
private_key?: string | undefined;
|
|
255
|
+
fingerprint: number;
|
|
256
|
+
depth: number;
|
|
257
|
+
child_num: number;
|
|
258
|
+
chain_code: string;
|
|
259
|
+
public_key: string;
|
|
260
|
+
}[] | undefined;
|
|
261
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
262
|
+
m: number;
|
|
263
|
+
pubkeys: {
|
|
264
|
+
address_n: number[];
|
|
265
|
+
node: string | {
|
|
266
|
+
private_key?: string | undefined;
|
|
267
|
+
fingerprint: number;
|
|
268
|
+
depth: number;
|
|
269
|
+
child_num: number;
|
|
270
|
+
chain_code: string;
|
|
271
|
+
public_key: string;
|
|
272
|
+
};
|
|
273
|
+
}[];
|
|
274
|
+
signatures: string[];
|
|
275
|
+
} | undefined;
|
|
276
|
+
decred_tree?: number | undefined;
|
|
277
|
+
orig_hash?: string | undefined;
|
|
278
|
+
orig_index?: number | undefined;
|
|
279
|
+
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
280
|
+
script_pubkey?: string | undefined;
|
|
281
|
+
coinjoin_flags?: number | undefined;
|
|
282
|
+
script_sig?: string | undefined;
|
|
283
|
+
witness?: string | undefined;
|
|
284
|
+
ownership_proof?: string | undefined;
|
|
285
|
+
commitment_data?: string | undefined;
|
|
286
|
+
prev_hash: string;
|
|
287
|
+
prev_index: number;
|
|
288
|
+
amount: string | number;
|
|
289
|
+
} & {
|
|
290
|
+
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | undefined;
|
|
291
|
+
address_n: number[];
|
|
292
|
+
}) | ({
|
|
293
|
+
sequence?: number | undefined;
|
|
294
|
+
multisig?: {
|
|
295
|
+
address_n?: number[] | undefined;
|
|
296
|
+
nodes?: {
|
|
297
|
+
private_key?: string | undefined;
|
|
298
|
+
fingerprint: number;
|
|
299
|
+
depth: number;
|
|
300
|
+
child_num: number;
|
|
301
|
+
chain_code: string;
|
|
302
|
+
public_key: string;
|
|
303
|
+
}[] | undefined;
|
|
304
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
305
|
+
m: number;
|
|
306
|
+
pubkeys: {
|
|
307
|
+
address_n: number[];
|
|
308
|
+
node: string | {
|
|
309
|
+
private_key?: string | undefined;
|
|
310
|
+
fingerprint: number;
|
|
311
|
+
depth: number;
|
|
312
|
+
child_num: number;
|
|
313
|
+
chain_code: string;
|
|
314
|
+
public_key: string;
|
|
315
|
+
};
|
|
316
|
+
}[];
|
|
317
|
+
signatures: string[];
|
|
318
|
+
} | undefined;
|
|
319
|
+
decred_tree?: number | undefined;
|
|
320
|
+
orig_hash?: string | undefined;
|
|
321
|
+
orig_index?: number | undefined;
|
|
322
|
+
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
323
|
+
script_pubkey?: string | undefined;
|
|
324
|
+
coinjoin_flags?: number | undefined;
|
|
325
|
+
script_sig?: string | undefined;
|
|
326
|
+
witness?: string | undefined;
|
|
327
|
+
ownership_proof?: string | undefined;
|
|
328
|
+
commitment_data?: string | undefined;
|
|
329
|
+
prev_hash: string;
|
|
330
|
+
prev_index: number;
|
|
331
|
+
amount: string | number;
|
|
332
|
+
} & {
|
|
333
|
+
address_n?: undefined;
|
|
334
|
+
script_pubkey: string;
|
|
335
|
+
script_type: "EXTERNAL";
|
|
336
|
+
}) | {
|
|
337
|
+
decred_tree?: number | undefined;
|
|
338
|
+
prev_hash: string;
|
|
339
|
+
prev_index: number;
|
|
340
|
+
sequence: number;
|
|
341
|
+
script_sig: string;
|
|
342
|
+
})[];
|
|
343
|
+
} | {
|
|
344
|
+
bin_outputs: {
|
|
345
|
+
decred_script_version?: number | undefined;
|
|
346
|
+
amount: string | number;
|
|
347
|
+
script_pubkey: string;
|
|
348
|
+
}[];
|
|
349
|
+
} | {
|
|
350
|
+
outputs: ({
|
|
351
|
+
multisig?: {
|
|
352
|
+
address_n?: number[] | undefined;
|
|
353
|
+
nodes?: {
|
|
354
|
+
private_key?: string | undefined;
|
|
355
|
+
fingerprint: number;
|
|
356
|
+
depth: number;
|
|
357
|
+
child_num: number;
|
|
358
|
+
chain_code: string;
|
|
359
|
+
public_key: string;
|
|
360
|
+
}[] | undefined;
|
|
361
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
362
|
+
m: number;
|
|
363
|
+
pubkeys: {
|
|
364
|
+
address_n: number[];
|
|
365
|
+
node: string | {
|
|
366
|
+
private_key?: string | undefined;
|
|
367
|
+
fingerprint: number;
|
|
368
|
+
depth: number;
|
|
369
|
+
child_num: number;
|
|
370
|
+
chain_code: string;
|
|
371
|
+
public_key: string;
|
|
372
|
+
};
|
|
373
|
+
}[];
|
|
374
|
+
signatures: string[];
|
|
375
|
+
} | undefined;
|
|
376
|
+
orig_hash?: string | undefined;
|
|
377
|
+
orig_index?: number | undefined;
|
|
378
|
+
address_n?: undefined;
|
|
379
|
+
script_type?: "PAYTOADDRESS" | undefined;
|
|
380
|
+
payment_req_index?: number | undefined;
|
|
381
|
+
amount: string | number;
|
|
382
|
+
address: string;
|
|
383
|
+
} | {
|
|
384
|
+
multisig?: {
|
|
385
|
+
address_n?: number[] | undefined;
|
|
386
|
+
nodes?: {
|
|
387
|
+
private_key?: string | undefined;
|
|
388
|
+
fingerprint: number;
|
|
389
|
+
depth: number;
|
|
390
|
+
child_num: number;
|
|
391
|
+
chain_code: string;
|
|
392
|
+
public_key: string;
|
|
393
|
+
}[] | undefined;
|
|
394
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
395
|
+
m: number;
|
|
396
|
+
pubkeys: {
|
|
397
|
+
address_n: number[];
|
|
398
|
+
node: string | {
|
|
399
|
+
private_key?: string | undefined;
|
|
400
|
+
fingerprint: number;
|
|
401
|
+
depth: number;
|
|
402
|
+
child_num: number;
|
|
403
|
+
chain_code: string;
|
|
404
|
+
public_key: string;
|
|
405
|
+
};
|
|
406
|
+
}[];
|
|
407
|
+
signatures: string[];
|
|
408
|
+
} | undefined;
|
|
409
|
+
orig_hash?: string | undefined;
|
|
410
|
+
orig_index?: number | undefined;
|
|
411
|
+
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
412
|
+
address?: undefined;
|
|
413
|
+
payment_req_index?: number | undefined;
|
|
414
|
+
amount: string | number;
|
|
415
|
+
address_n: number[];
|
|
416
|
+
} | {
|
|
417
|
+
orig_hash?: string | undefined;
|
|
418
|
+
orig_index?: number | undefined;
|
|
419
|
+
address_n?: undefined;
|
|
420
|
+
address?: undefined;
|
|
421
|
+
payment_req_index?: number | undefined;
|
|
422
|
+
amount: 0 | "0";
|
|
423
|
+
script_type: "PAYTOOPRETURN";
|
|
424
|
+
op_return_data: string;
|
|
425
|
+
})[];
|
|
426
|
+
} | {
|
|
427
|
+
extra_data: string;
|
|
428
|
+
} | {
|
|
429
|
+
version?: number | undefined;
|
|
430
|
+
lock_time?: number | undefined;
|
|
431
|
+
expiry?: number | undefined;
|
|
432
|
+
version_group_id?: number | undefined;
|
|
433
|
+
timestamp?: number | undefined;
|
|
434
|
+
branch_id?: number | undefined;
|
|
435
|
+
extra_data_len?: number | undefined;
|
|
436
|
+
extra_data?: string | undefined;
|
|
437
|
+
inputs_cnt: number;
|
|
438
|
+
outputs_cnt: number;
|
|
439
|
+
};
|
|
440
|
+
};
|
|
441
|
+
} | {
|
|
442
|
+
type: "TxAckInput";
|
|
443
|
+
message: {
|
|
444
|
+
tx: {
|
|
445
|
+
input: ({
|
|
446
|
+
sequence?: number | undefined;
|
|
447
|
+
multisig?: {
|
|
448
|
+
address_n?: number[] | undefined;
|
|
449
|
+
nodes?: {
|
|
450
|
+
private_key?: string | undefined;
|
|
451
|
+
fingerprint: number;
|
|
452
|
+
depth: number;
|
|
453
|
+
child_num: number;
|
|
454
|
+
chain_code: string;
|
|
455
|
+
public_key: string;
|
|
456
|
+
}[] | undefined;
|
|
457
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
458
|
+
m: number;
|
|
459
|
+
pubkeys: {
|
|
460
|
+
address_n: number[];
|
|
461
|
+
node: string | {
|
|
462
|
+
private_key?: string | undefined;
|
|
463
|
+
fingerprint: number;
|
|
464
|
+
depth: number;
|
|
465
|
+
child_num: number;
|
|
466
|
+
chain_code: string;
|
|
467
|
+
public_key: string;
|
|
468
|
+
};
|
|
469
|
+
}[];
|
|
470
|
+
signatures: string[];
|
|
471
|
+
} | undefined;
|
|
472
|
+
decred_tree?: number | undefined;
|
|
473
|
+
orig_hash?: string | undefined;
|
|
474
|
+
orig_index?: number | undefined;
|
|
475
|
+
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
476
|
+
script_pubkey?: string | undefined;
|
|
477
|
+
coinjoin_flags?: number | undefined;
|
|
478
|
+
script_sig?: string | undefined;
|
|
479
|
+
witness?: string | undefined;
|
|
480
|
+
ownership_proof?: string | undefined;
|
|
481
|
+
commitment_data?: string | undefined;
|
|
482
|
+
prev_hash: string;
|
|
483
|
+
prev_index: number;
|
|
484
|
+
amount: string | number;
|
|
485
|
+
} & {
|
|
486
|
+
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | undefined;
|
|
487
|
+
address_n: number[];
|
|
488
|
+
}) | ({
|
|
489
|
+
sequence?: number | undefined;
|
|
490
|
+
multisig?: {
|
|
491
|
+
address_n?: number[] | undefined;
|
|
492
|
+
nodes?: {
|
|
493
|
+
private_key?: string | undefined;
|
|
494
|
+
fingerprint: number;
|
|
495
|
+
depth: number;
|
|
496
|
+
child_num: number;
|
|
497
|
+
chain_code: string;
|
|
498
|
+
public_key: string;
|
|
499
|
+
}[] | undefined;
|
|
500
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
501
|
+
m: number;
|
|
502
|
+
pubkeys: {
|
|
503
|
+
address_n: number[];
|
|
504
|
+
node: string | {
|
|
505
|
+
private_key?: string | undefined;
|
|
506
|
+
fingerprint: number;
|
|
507
|
+
depth: number;
|
|
508
|
+
child_num: number;
|
|
509
|
+
chain_code: string;
|
|
510
|
+
public_key: string;
|
|
511
|
+
};
|
|
512
|
+
}[];
|
|
513
|
+
signatures: string[];
|
|
514
|
+
} | undefined;
|
|
515
|
+
decred_tree?: number | undefined;
|
|
516
|
+
orig_hash?: string | undefined;
|
|
517
|
+
orig_index?: number | undefined;
|
|
518
|
+
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
519
|
+
script_pubkey?: string | undefined;
|
|
520
|
+
coinjoin_flags?: number | undefined;
|
|
521
|
+
script_sig?: string | undefined;
|
|
522
|
+
witness?: string | undefined;
|
|
523
|
+
ownership_proof?: string | undefined;
|
|
524
|
+
commitment_data?: string | undefined;
|
|
525
|
+
prev_hash: string;
|
|
526
|
+
prev_index: number;
|
|
527
|
+
amount: string | number;
|
|
528
|
+
} & {
|
|
529
|
+
address_n?: undefined;
|
|
530
|
+
script_pubkey: string;
|
|
531
|
+
script_type: "EXTERNAL";
|
|
532
|
+
});
|
|
533
|
+
};
|
|
534
|
+
};
|
|
535
|
+
} | {
|
|
536
|
+
type: "TxAckOutput";
|
|
537
|
+
message: {
|
|
538
|
+
tx: {
|
|
539
|
+
output: {
|
|
540
|
+
multisig?: {
|
|
541
|
+
address_n?: number[] | undefined;
|
|
542
|
+
nodes?: {
|
|
543
|
+
private_key?: string | undefined;
|
|
544
|
+
fingerprint: number;
|
|
545
|
+
depth: number;
|
|
546
|
+
child_num: number;
|
|
547
|
+
chain_code: string;
|
|
548
|
+
public_key: string;
|
|
549
|
+
}[] | undefined;
|
|
550
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
551
|
+
m: number;
|
|
552
|
+
pubkeys: {
|
|
553
|
+
address_n: number[];
|
|
554
|
+
node: string | {
|
|
555
|
+
private_key?: string | undefined;
|
|
556
|
+
fingerprint: number;
|
|
557
|
+
depth: number;
|
|
558
|
+
child_num: number;
|
|
559
|
+
chain_code: string;
|
|
560
|
+
public_key: string;
|
|
561
|
+
};
|
|
562
|
+
}[];
|
|
563
|
+
signatures: string[];
|
|
564
|
+
} | undefined;
|
|
565
|
+
orig_hash?: string | undefined;
|
|
566
|
+
orig_index?: number | undefined;
|
|
567
|
+
address_n?: undefined;
|
|
568
|
+
script_type?: "PAYTOADDRESS" | undefined;
|
|
569
|
+
payment_req_index?: number | undefined;
|
|
570
|
+
amount: string | number;
|
|
571
|
+
address: string;
|
|
572
|
+
} | {
|
|
573
|
+
multisig?: {
|
|
574
|
+
address_n?: number[] | undefined;
|
|
575
|
+
nodes?: {
|
|
576
|
+
private_key?: string | undefined;
|
|
577
|
+
fingerprint: number;
|
|
578
|
+
depth: number;
|
|
579
|
+
child_num: number;
|
|
580
|
+
chain_code: string;
|
|
581
|
+
public_key: string;
|
|
582
|
+
}[] | undefined;
|
|
583
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
584
|
+
m: number;
|
|
585
|
+
pubkeys: {
|
|
586
|
+
address_n: number[];
|
|
587
|
+
node: string | {
|
|
588
|
+
private_key?: string | undefined;
|
|
589
|
+
fingerprint: number;
|
|
590
|
+
depth: number;
|
|
591
|
+
child_num: number;
|
|
592
|
+
chain_code: string;
|
|
593
|
+
public_key: string;
|
|
594
|
+
};
|
|
595
|
+
}[];
|
|
596
|
+
signatures: string[];
|
|
597
|
+
} | undefined;
|
|
598
|
+
orig_hash?: string | undefined;
|
|
599
|
+
orig_index?: number | undefined;
|
|
600
|
+
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
601
|
+
address?: undefined;
|
|
602
|
+
payment_req_index?: number | undefined;
|
|
603
|
+
amount: string | number;
|
|
604
|
+
address_n: number[];
|
|
605
|
+
} | {
|
|
606
|
+
orig_hash?: string | undefined;
|
|
607
|
+
orig_index?: number | undefined;
|
|
608
|
+
address_n?: undefined;
|
|
609
|
+
address?: undefined;
|
|
610
|
+
payment_req_index?: number | undefined;
|
|
611
|
+
amount: 0 | "0";
|
|
612
|
+
script_type: "PAYTOOPRETURN";
|
|
613
|
+
op_return_data: string;
|
|
614
|
+
};
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
} | {
|
|
618
|
+
type: "TxAckPrevMeta";
|
|
619
|
+
message: {
|
|
620
|
+
tx: {
|
|
621
|
+
expiry?: number | undefined;
|
|
622
|
+
version_group_id?: number | undefined;
|
|
623
|
+
timestamp?: number | undefined;
|
|
624
|
+
branch_id?: number | undefined;
|
|
625
|
+
extra_data_len?: number | undefined;
|
|
626
|
+
outputs_count: number;
|
|
627
|
+
inputs_count: number;
|
|
628
|
+
version: number;
|
|
629
|
+
lock_time: number;
|
|
630
|
+
};
|
|
631
|
+
};
|
|
632
|
+
} | {
|
|
633
|
+
type: "TxAckPrevInput";
|
|
634
|
+
message: {
|
|
635
|
+
tx: {
|
|
636
|
+
input: {
|
|
637
|
+
decred_tree?: number | undefined;
|
|
638
|
+
prev_hash: string;
|
|
639
|
+
prev_index: number;
|
|
640
|
+
sequence: number;
|
|
641
|
+
script_sig: string;
|
|
642
|
+
};
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
} | {
|
|
646
|
+
type: "TxAckPrevOutput";
|
|
647
|
+
message: {
|
|
648
|
+
tx: {
|
|
649
|
+
output: {
|
|
650
|
+
decred_script_version?: number | undefined;
|
|
651
|
+
amount: string | number;
|
|
652
|
+
script_pubkey: string;
|
|
653
|
+
};
|
|
654
|
+
};
|
|
655
|
+
};
|
|
656
|
+
} | {
|
|
657
|
+
type: "TxAckPrevExtraData";
|
|
658
|
+
message: {
|
|
659
|
+
tx: {
|
|
660
|
+
extra_data_chunk: string;
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
} | {
|
|
664
|
+
type: "GetOwnershipProof";
|
|
665
|
+
message: {
|
|
666
|
+
multisig?: {
|
|
667
|
+
address_n?: number[] | undefined;
|
|
668
|
+
nodes?: {
|
|
669
|
+
private_key?: string | undefined;
|
|
670
|
+
fingerprint: number;
|
|
671
|
+
depth: number;
|
|
672
|
+
child_num: number;
|
|
673
|
+
chain_code: string;
|
|
674
|
+
public_key: string;
|
|
675
|
+
}[] | undefined;
|
|
676
|
+
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
677
|
+
m: number;
|
|
678
|
+
pubkeys: {
|
|
679
|
+
address_n: number[];
|
|
680
|
+
node: string | {
|
|
681
|
+
private_key?: string | undefined;
|
|
682
|
+
fingerprint: number;
|
|
683
|
+
depth: number;
|
|
684
|
+
child_num: number;
|
|
685
|
+
chain_code: string;
|
|
686
|
+
public_key: string;
|
|
687
|
+
};
|
|
688
|
+
}[];
|
|
689
|
+
signatures: string[];
|
|
690
|
+
} | undefined;
|
|
691
|
+
commitment_data?: string | undefined;
|
|
692
|
+
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
693
|
+
coin_name?: string | undefined;
|
|
694
|
+
user_confirmation?: boolean | undefined;
|
|
695
|
+
ownership_ids?: string[] | undefined;
|
|
696
|
+
address_n: number[];
|
|
697
|
+
};
|
|
698
|
+
} | {
|
|
699
|
+
type: "OwnershipProof";
|
|
700
|
+
message: {
|
|
701
|
+
ownership_proof: string;
|
|
702
|
+
signature: string;
|
|
703
|
+
};
|
|
704
|
+
} | {
|
|
705
|
+
type: "AuthorizeCoinJoin";
|
|
706
|
+
message: {
|
|
707
|
+
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
708
|
+
coin_name?: string | undefined;
|
|
709
|
+
amount_unit?: Messages.AmountUnit | undefined;
|
|
710
|
+
address_n: number[];
|
|
711
|
+
coordinator: string;
|
|
712
|
+
max_rounds: number;
|
|
713
|
+
max_coordinator_fee_rate: number;
|
|
714
|
+
max_fee_per_kvbyte: number;
|
|
715
|
+
};
|
|
716
|
+
} | {
|
|
717
|
+
type: "BleUnpair";
|
|
718
|
+
message: {
|
|
719
|
+
all?: boolean | undefined;
|
|
720
|
+
addr?: string | undefined;
|
|
721
|
+
};
|
|
722
|
+
} | {
|
|
723
|
+
type: "FirmwareErase";
|
|
724
|
+
message: {
|
|
725
|
+
length?: number | undefined;
|
|
726
|
+
};
|
|
727
|
+
} | {
|
|
728
|
+
type: "FirmwareRequest";
|
|
729
|
+
message: {
|
|
730
|
+
length: number;
|
|
731
|
+
offset: number;
|
|
732
|
+
};
|
|
733
|
+
} | {
|
|
734
|
+
type: "FirmwareUpload";
|
|
735
|
+
message: {
|
|
736
|
+
hash?: string | undefined;
|
|
737
|
+
payload: ArrayBuffer | Buffer<ArrayBufferLike>;
|
|
738
|
+
};
|
|
739
|
+
} | {
|
|
740
|
+
type: "ProdTestT1";
|
|
741
|
+
message: {
|
|
742
|
+
payload?: string | undefined;
|
|
743
|
+
};
|
|
744
|
+
} | {
|
|
745
|
+
type: "CardanoGetNativeScriptHash";
|
|
746
|
+
message: {
|
|
747
|
+
script: {
|
|
748
|
+
key_hash?: string | undefined;
|
|
749
|
+
key_path?: number[] | undefined;
|
|
750
|
+
scripts?: any[] | undefined;
|
|
751
|
+
required_signatures_count?: number | undefined;
|
|
752
|
+
invalid_before?: string | number | undefined;
|
|
753
|
+
invalid_hereafter?: string | number | undefined;
|
|
754
|
+
type: Messages.CardanoNativeScriptType;
|
|
755
|
+
};
|
|
756
|
+
display_format: Messages.CardanoNativeScriptHashDisplayFormat;
|
|
757
|
+
derivation_type: Messages.CardanoDerivationType;
|
|
758
|
+
};
|
|
759
|
+
} | {
|
|
760
|
+
type: "CardanoNativeScriptHash";
|
|
761
|
+
message: {
|
|
762
|
+
script_hash: string;
|
|
763
|
+
};
|
|
764
|
+
} | {
|
|
765
|
+
type: "CardanoGetAddress";
|
|
766
|
+
message: {
|
|
767
|
+
chunkify?: boolean | undefined;
|
|
768
|
+
show_display?: boolean | undefined;
|
|
769
|
+
derivation_type: Messages.CardanoDerivationType;
|
|
770
|
+
protocol_magic: number;
|
|
771
|
+
network_id: number;
|
|
772
|
+
address_parameters: {
|
|
773
|
+
staking_key_hash?: string | undefined;
|
|
774
|
+
certificate_pointer?: {
|
|
775
|
+
block_index: number;
|
|
776
|
+
tx_index: number;
|
|
777
|
+
certificate_index: number;
|
|
778
|
+
} | undefined;
|
|
779
|
+
script_payment_hash?: string | undefined;
|
|
780
|
+
script_staking_hash?: string | undefined;
|
|
781
|
+
address_n: number[];
|
|
782
|
+
address_type: Messages.CardanoAddressType;
|
|
783
|
+
address_n_staking: number[];
|
|
784
|
+
};
|
|
785
|
+
};
|
|
786
|
+
} | {
|
|
787
|
+
type: "CardanoAddress";
|
|
788
|
+
message: {
|
|
789
|
+
mac?: string | undefined;
|
|
790
|
+
address: string;
|
|
791
|
+
};
|
|
792
|
+
} | {
|
|
793
|
+
type: "CardanoGetPublicKey";
|
|
794
|
+
message: {
|
|
795
|
+
show_display?: boolean | undefined;
|
|
796
|
+
address_n: number[];
|
|
797
|
+
derivation_type: Messages.CardanoDerivationType;
|
|
798
|
+
};
|
|
799
|
+
} | {
|
|
800
|
+
type: "CardanoPublicKey";
|
|
801
|
+
message: {
|
|
802
|
+
xpub: string;
|
|
803
|
+
node: {
|
|
804
|
+
private_key?: string | undefined;
|
|
805
|
+
fingerprint: number;
|
|
806
|
+
depth: number;
|
|
807
|
+
child_num: number;
|
|
808
|
+
chain_code: string;
|
|
809
|
+
public_key: string;
|
|
810
|
+
};
|
|
811
|
+
};
|
|
812
|
+
} | {
|
|
813
|
+
type: "CardanoSignTxInit";
|
|
814
|
+
message: {
|
|
815
|
+
chunkify?: boolean | undefined;
|
|
816
|
+
ttl?: string | number | undefined;
|
|
817
|
+
validity_interval_start?: string | number | undefined;
|
|
818
|
+
include_network_id?: boolean | undefined;
|
|
819
|
+
script_data_hash?: string | undefined;
|
|
820
|
+
has_collateral_return?: boolean | undefined;
|
|
821
|
+
total_collateral?: string | number | undefined;
|
|
822
|
+
reference_inputs_count?: number | undefined;
|
|
823
|
+
tag_cbor_sets?: boolean | undefined;
|
|
824
|
+
payment_req?: {
|
|
825
|
+
amount?: string | undefined;
|
|
826
|
+
nonce?: string | undefined;
|
|
827
|
+
memos?: {
|
|
828
|
+
text_memo?: {
|
|
829
|
+
text: string;
|
|
830
|
+
} | undefined;
|
|
831
|
+
refund_memo?: {
|
|
832
|
+
address_n: number[];
|
|
833
|
+
address: string;
|
|
834
|
+
mac: string;
|
|
835
|
+
} | undefined;
|
|
836
|
+
coin_purchase_memo?: {
|
|
837
|
+
amount: string;
|
|
838
|
+
address_n: number[];
|
|
839
|
+
address: string;
|
|
840
|
+
mac: string;
|
|
841
|
+
coin_type: number;
|
|
842
|
+
} | undefined;
|
|
843
|
+
text_details_memo?: {
|
|
844
|
+
text: string;
|
|
845
|
+
title: string;
|
|
846
|
+
} | undefined;
|
|
847
|
+
}[] | undefined;
|
|
848
|
+
recipient_name: string;
|
|
849
|
+
signature: string;
|
|
850
|
+
} | undefined;
|
|
851
|
+
outputs_count: number;
|
|
852
|
+
inputs_count: number;
|
|
853
|
+
derivation_type: Messages.CardanoDerivationType;
|
|
854
|
+
protocol_magic: number;
|
|
855
|
+
network_id: number;
|
|
856
|
+
signing_mode: Messages.CardanoTxSigningMode;
|
|
857
|
+
fee: string | number;
|
|
858
|
+
certificates_count: number;
|
|
859
|
+
withdrawals_count: number;
|
|
860
|
+
has_auxiliary_data: boolean;
|
|
861
|
+
witness_requests_count: number;
|
|
862
|
+
minting_asset_groups_count: number;
|
|
863
|
+
collateral_inputs_count: number;
|
|
864
|
+
required_signers_count: number;
|
|
865
|
+
};
|
|
866
|
+
} | {
|
|
867
|
+
type: "CardanoTxInput";
|
|
868
|
+
message: {
|
|
869
|
+
prev_hash: string;
|
|
870
|
+
prev_index: number;
|
|
871
|
+
};
|
|
872
|
+
} | {
|
|
873
|
+
type: "CardanoTxOutput";
|
|
874
|
+
message: {
|
|
875
|
+
address?: string | undefined;
|
|
876
|
+
address_parameters?: {
|
|
877
|
+
staking_key_hash?: string | undefined;
|
|
878
|
+
certificate_pointer?: {
|
|
879
|
+
block_index: number;
|
|
880
|
+
tx_index: number;
|
|
881
|
+
certificate_index: number;
|
|
882
|
+
} | undefined;
|
|
883
|
+
script_payment_hash?: string | undefined;
|
|
884
|
+
script_staking_hash?: string | undefined;
|
|
885
|
+
address_n: number[];
|
|
886
|
+
address_type: Messages.CardanoAddressType;
|
|
887
|
+
address_n_staking: number[];
|
|
888
|
+
} | undefined;
|
|
889
|
+
datum_hash?: string | undefined;
|
|
890
|
+
format?: Messages.CardanoTxOutputSerializationFormat | undefined;
|
|
891
|
+
inline_datum_size?: number | undefined;
|
|
892
|
+
reference_script_size?: number | undefined;
|
|
893
|
+
amount: string | number;
|
|
894
|
+
asset_groups_count: number;
|
|
895
|
+
};
|
|
896
|
+
} | {
|
|
897
|
+
type: "CardanoAssetGroup";
|
|
898
|
+
message: {
|
|
899
|
+
policy_id: string;
|
|
900
|
+
tokens_count: number;
|
|
901
|
+
};
|
|
902
|
+
} | {
|
|
903
|
+
type: "CardanoToken";
|
|
904
|
+
message: {
|
|
905
|
+
amount?: string | number | undefined;
|
|
906
|
+
mint_amount?: string | number | undefined;
|
|
907
|
+
asset_name_bytes: string;
|
|
908
|
+
};
|
|
909
|
+
} | {
|
|
910
|
+
type: "CardanoTxInlineDatumChunk";
|
|
911
|
+
message: {
|
|
912
|
+
data: string;
|
|
913
|
+
};
|
|
914
|
+
} | {
|
|
915
|
+
type: "CardanoTxReferenceScriptChunk";
|
|
916
|
+
message: {
|
|
917
|
+
data: string;
|
|
918
|
+
};
|
|
919
|
+
} | {
|
|
920
|
+
type: "CardanoPoolOwner";
|
|
921
|
+
message: {
|
|
922
|
+
staking_key_path?: number[] | undefined;
|
|
923
|
+
staking_key_hash?: string | undefined;
|
|
924
|
+
};
|
|
925
|
+
} | {
|
|
926
|
+
type: "CardanoPoolRelayParameters";
|
|
927
|
+
message: {
|
|
928
|
+
ipv4_address?: string | undefined;
|
|
929
|
+
ipv6_address?: string | undefined;
|
|
930
|
+
host_name?: string | undefined;
|
|
931
|
+
port?: number | undefined;
|
|
932
|
+
type: Messages.CardanoPoolRelayType;
|
|
933
|
+
};
|
|
934
|
+
} | {
|
|
935
|
+
type: "CardanoTxCertificate";
|
|
936
|
+
message: {
|
|
937
|
+
path?: number[] | undefined;
|
|
938
|
+
script_hash?: string | undefined;
|
|
939
|
+
pool?: string | undefined;
|
|
940
|
+
pool_parameters?: {
|
|
941
|
+
metadata?: {
|
|
942
|
+
url: string;
|
|
943
|
+
hash: string;
|
|
944
|
+
} | undefined;
|
|
945
|
+
pool_id: string;
|
|
946
|
+
vrf_key_hash: string;
|
|
947
|
+
pledge: string | number;
|
|
948
|
+
cost: string | number;
|
|
949
|
+
margin_numerator: string | number;
|
|
950
|
+
margin_denominator: string | number;
|
|
951
|
+
reward_account: string;
|
|
952
|
+
owners_count: number;
|
|
953
|
+
relays_count: number;
|
|
954
|
+
} | undefined;
|
|
955
|
+
key_hash?: string | undefined;
|
|
956
|
+
deposit?: string | number | undefined;
|
|
957
|
+
drep?: {
|
|
958
|
+
script_hash?: string | undefined;
|
|
959
|
+
key_hash?: string | undefined;
|
|
960
|
+
type: Messages.CardanoDRepType;
|
|
961
|
+
} | undefined;
|
|
962
|
+
type: Messages.CardanoCertificateType;
|
|
963
|
+
};
|
|
964
|
+
} | {
|
|
965
|
+
type: "CardanoTxWithdrawal";
|
|
966
|
+
message: {
|
|
967
|
+
path?: number[] | undefined;
|
|
968
|
+
script_hash?: string | undefined;
|
|
969
|
+
key_hash?: string | undefined;
|
|
970
|
+
amount: string | number;
|
|
971
|
+
};
|
|
972
|
+
} | {
|
|
973
|
+
type: "CardanoTxAuxiliaryData";
|
|
974
|
+
message: {
|
|
975
|
+
hash?: string | undefined;
|
|
976
|
+
cvote_registration_parameters?: {
|
|
977
|
+
format?: Messages.CardanoCVoteRegistrationFormat | undefined;
|
|
978
|
+
vote_public_key?: string | undefined;
|
|
979
|
+
payment_address_parameters?: {
|
|
980
|
+
staking_key_hash?: string | undefined;
|
|
981
|
+
certificate_pointer?: {
|
|
982
|
+
block_index: number;
|
|
983
|
+
tx_index: number;
|
|
984
|
+
certificate_index: number;
|
|
985
|
+
} | undefined;
|
|
986
|
+
script_payment_hash?: string | undefined;
|
|
987
|
+
script_staking_hash?: string | undefined;
|
|
988
|
+
address_n: number[];
|
|
989
|
+
address_type: Messages.CardanoAddressType;
|
|
990
|
+
address_n_staking: number[];
|
|
991
|
+
} | undefined;
|
|
992
|
+
delegations?: {
|
|
993
|
+
vote_public_key: string;
|
|
994
|
+
weight: string | number;
|
|
995
|
+
}[] | undefined;
|
|
996
|
+
voting_purpose?: string | number | undefined;
|
|
997
|
+
payment_address?: string | undefined;
|
|
998
|
+
nonce: string | number;
|
|
999
|
+
staking_path: number[];
|
|
1000
|
+
} | undefined;
|
|
1001
|
+
};
|
|
1002
|
+
} | {
|
|
1003
|
+
type: "CardanoTxMint";
|
|
1004
|
+
message: {
|
|
1005
|
+
asset_groups_count: number;
|
|
1006
|
+
};
|
|
1007
|
+
} | {
|
|
1008
|
+
type: "CardanoTxCollateralInput";
|
|
1009
|
+
message: {
|
|
1010
|
+
prev_hash: string;
|
|
1011
|
+
prev_index: number;
|
|
1012
|
+
};
|
|
1013
|
+
} | {
|
|
1014
|
+
type: "CardanoTxRequiredSigner";
|
|
1015
|
+
message: {
|
|
1016
|
+
key_hash?: string | undefined;
|
|
1017
|
+
key_path?: number[] | undefined;
|
|
1018
|
+
};
|
|
1019
|
+
} | {
|
|
1020
|
+
type: "CardanoTxReferenceInput";
|
|
1021
|
+
message: {
|
|
1022
|
+
prev_hash: string;
|
|
1023
|
+
prev_index: number;
|
|
1024
|
+
};
|
|
1025
|
+
} | {
|
|
1026
|
+
type: "CardanoTxItemAck";
|
|
1027
|
+
message: {};
|
|
1028
|
+
} | {
|
|
1029
|
+
type: "CardanoTxAuxiliaryDataSupplement";
|
|
1030
|
+
message: {
|
|
1031
|
+
auxiliary_data_hash?: string | undefined;
|
|
1032
|
+
cvote_registration_signature?: string | undefined;
|
|
1033
|
+
type: Messages.CardanoTxAuxiliaryDataSupplementType;
|
|
1034
|
+
};
|
|
1035
|
+
} | {
|
|
1036
|
+
type: "CardanoTxWitnessRequest";
|
|
1037
|
+
message: {
|
|
1038
|
+
path: number[];
|
|
1039
|
+
};
|
|
1040
|
+
} | {
|
|
1041
|
+
type: "CardanoTxWitnessResponse";
|
|
1042
|
+
message: {
|
|
1043
|
+
chain_code?: string | undefined;
|
|
1044
|
+
type: Messages.CardanoTxWitnessType;
|
|
1045
|
+
signature: string;
|
|
1046
|
+
pub_key: string;
|
|
1047
|
+
};
|
|
1048
|
+
} | {
|
|
1049
|
+
type: "CardanoTxHostAck";
|
|
1050
|
+
message: {};
|
|
1051
|
+
} | {
|
|
1052
|
+
type: "CardanoTxBodyHash";
|
|
1053
|
+
message: {
|
|
1054
|
+
tx_hash: string;
|
|
1055
|
+
};
|
|
1056
|
+
} | {
|
|
1057
|
+
type: "CardanoSignTxFinished";
|
|
1058
|
+
message: {};
|
|
1059
|
+
} | {
|
|
1060
|
+
type: "CardanoSignMessageInit";
|
|
1061
|
+
message: {
|
|
1062
|
+
protocol_magic?: number | undefined;
|
|
1063
|
+
network_id?: number | undefined;
|
|
1064
|
+
address_parameters?: {
|
|
1065
|
+
staking_key_hash?: string | undefined;
|
|
1066
|
+
certificate_pointer?: {
|
|
1067
|
+
block_index: number;
|
|
1068
|
+
tx_index: number;
|
|
1069
|
+
certificate_index: number;
|
|
1070
|
+
} | undefined;
|
|
1071
|
+
script_payment_hash?: string | undefined;
|
|
1072
|
+
script_staking_hash?: string | undefined;
|
|
1073
|
+
address_n: number[];
|
|
1074
|
+
address_type: Messages.CardanoAddressType;
|
|
1075
|
+
address_n_staking: number[];
|
|
1076
|
+
} | undefined;
|
|
1077
|
+
derivation_type: Messages.CardanoDerivationType;
|
|
1078
|
+
signing_path: number[];
|
|
1079
|
+
payload_size: number;
|
|
1080
|
+
prefer_hex_display: boolean;
|
|
1081
|
+
};
|
|
1082
|
+
} | {
|
|
1083
|
+
type: "CardanoMessageDataRequest";
|
|
1084
|
+
message: {
|
|
1085
|
+
length: number;
|
|
1086
|
+
offset: number;
|
|
1087
|
+
};
|
|
1088
|
+
} | {
|
|
1089
|
+
type: "CardanoMessageDataResponse";
|
|
1090
|
+
message: {
|
|
1091
|
+
data: string;
|
|
1092
|
+
};
|
|
1093
|
+
} | {
|
|
1094
|
+
type: "CardanoMessageSignature";
|
|
1095
|
+
message: {
|
|
1096
|
+
address: string;
|
|
1097
|
+
signature: string;
|
|
1098
|
+
pub_key: string;
|
|
1099
|
+
};
|
|
1100
|
+
} | {
|
|
1101
|
+
type: "CipherKeyValue";
|
|
1102
|
+
message: {
|
|
1103
|
+
encrypt?: boolean | undefined;
|
|
1104
|
+
ask_on_encrypt?: boolean | undefined;
|
|
1105
|
+
ask_on_decrypt?: boolean | undefined;
|
|
1106
|
+
iv?: string | undefined;
|
|
1107
|
+
address_n: number[];
|
|
1108
|
+
key: string;
|
|
1109
|
+
value: string;
|
|
1110
|
+
};
|
|
1111
|
+
} | {
|
|
1112
|
+
type: "CipheredKeyValue";
|
|
1113
|
+
message: {
|
|
1114
|
+
value: string;
|
|
1115
|
+
};
|
|
1116
|
+
} | {
|
|
1117
|
+
type: "SignIdentity";
|
|
1118
|
+
message: {
|
|
1119
|
+
ecdsa_curve_name?: string | undefined;
|
|
1120
|
+
challenge_hidden?: string | undefined;
|
|
1121
|
+
challenge_visual?: string | undefined;
|
|
1122
|
+
identity: {
|
|
1123
|
+
path?: string | undefined;
|
|
1124
|
+
port?: string | undefined;
|
|
1125
|
+
proto?: string | undefined;
|
|
1126
|
+
user?: string | undefined;
|
|
1127
|
+
host?: string | undefined;
|
|
1128
|
+
index?: number | undefined;
|
|
1129
|
+
};
|
|
1130
|
+
};
|
|
1131
|
+
} | {
|
|
1132
|
+
type: "SignedIdentity";
|
|
1133
|
+
message: {
|
|
1134
|
+
address: string;
|
|
1135
|
+
public_key: string;
|
|
1136
|
+
signature: string;
|
|
1137
|
+
};
|
|
1138
|
+
} | {
|
|
1139
|
+
type: "GetECDHSessionKey";
|
|
1140
|
+
message: {
|
|
1141
|
+
ecdsa_curve_name?: string | undefined;
|
|
1142
|
+
identity: {
|
|
1143
|
+
path?: string | undefined;
|
|
1144
|
+
port?: string | undefined;
|
|
1145
|
+
proto?: string | undefined;
|
|
1146
|
+
user?: string | undefined;
|
|
1147
|
+
host?: string | undefined;
|
|
1148
|
+
index?: number | undefined;
|
|
1149
|
+
};
|
|
1150
|
+
peer_public_key: string;
|
|
1151
|
+
};
|
|
1152
|
+
} | {
|
|
1153
|
+
type: "ECDHSessionKey";
|
|
1154
|
+
message: {
|
|
1155
|
+
public_key?: string | undefined;
|
|
1156
|
+
session_key: string;
|
|
1157
|
+
};
|
|
1158
|
+
} | {
|
|
1159
|
+
type: "PaymentNotification";
|
|
1160
|
+
message: {
|
|
1161
|
+
payment_req?: {
|
|
1162
|
+
amount?: string | undefined;
|
|
1163
|
+
nonce?: string | undefined;
|
|
1164
|
+
memos?: {
|
|
1165
|
+
text_memo?: {
|
|
1166
|
+
text: string;
|
|
1167
|
+
} | undefined;
|
|
1168
|
+
refund_memo?: {
|
|
1169
|
+
address_n: number[];
|
|
1170
|
+
address: string;
|
|
1171
|
+
mac: string;
|
|
1172
|
+
} | undefined;
|
|
1173
|
+
coin_purchase_memo?: {
|
|
1174
|
+
amount: string;
|
|
1175
|
+
address_n: number[];
|
|
1176
|
+
address: string;
|
|
1177
|
+
mac: string;
|
|
1178
|
+
coin_type: number;
|
|
1179
|
+
} | undefined;
|
|
1180
|
+
text_details_memo?: {
|
|
1181
|
+
text: string;
|
|
1182
|
+
title: string;
|
|
1183
|
+
} | undefined;
|
|
1184
|
+
}[] | undefined;
|
|
1185
|
+
recipient_name: string;
|
|
1186
|
+
signature: string;
|
|
1187
|
+
} | undefined;
|
|
1188
|
+
};
|
|
1189
|
+
} | {
|
|
1190
|
+
type: "Initialize";
|
|
1191
|
+
message: {
|
|
1192
|
+
session_id?: string | undefined;
|
|
1193
|
+
_skip_passphrase?: boolean | undefined;
|
|
1194
|
+
derive_cardano?: boolean | undefined;
|
|
1195
|
+
};
|
|
1196
|
+
} | {
|
|
1197
|
+
type: "GetFeatures";
|
|
1198
|
+
message: {};
|
|
1199
|
+
} | {
|
|
1200
|
+
type: "Features";
|
|
1201
|
+
message: {
|
|
1202
|
+
build_version?: number | undefined;
|
|
1203
|
+
_passphrase_cached?: boolean | undefined;
|
|
1204
|
+
fw_build?: number | undefined;
|
|
1205
|
+
busy?: boolean | undefined;
|
|
1206
|
+
homescreen_format?: "Toif" | "Jpeg" | "ToiG" | undefined;
|
|
1207
|
+
hide_passphrase_from_host?: boolean | undefined;
|
|
1208
|
+
unit_color?: number | undefined;
|
|
1209
|
+
unit_btconly?: boolean | undefined;
|
|
1210
|
+
homescreen_width?: number | undefined;
|
|
1211
|
+
homescreen_height?: number | undefined;
|
|
1212
|
+
bootloader_locked?: boolean | undefined;
|
|
1213
|
+
language_version_matches?: boolean | undefined;
|
|
1214
|
+
unit_packaging?: number | undefined;
|
|
1215
|
+
haptic_feedback?: boolean | undefined;
|
|
1216
|
+
recovery_type?: "NormalRecovery" | "DryRun" | "UnlockRepeatedBackup" | undefined;
|
|
1217
|
+
optiga_sec?: number | undefined;
|
|
1218
|
+
soc?: number | undefined;
|
|
1219
|
+
firmware_corrupted?: boolean | undefined;
|
|
1220
|
+
auto_lock_delay_battery_ms?: number | undefined;
|
|
1221
|
+
led?: boolean | undefined;
|
|
1222
|
+
usb_connected?: boolean | undefined;
|
|
1223
|
+
wireless_connected?: boolean | undefined;
|
|
1224
|
+
capabilities: ("Capability_Bitcoin" | "Capability_Bitcoin_like" | "Capability_Binance" | "Capability_Cardano" | "Capability_Crypto" | "Capability_EOS" | "Capability_Ethereum" | "Capability_Lisk" | "Capability_Monero" | "Capability_NEM" | "Capability_Ripple" | "Capability_Stellar" | "Capability_Tezos" | "Capability_U2F" | "Capability_Shamir" | "Capability_ShamirGroups" | "Capability_PassphraseEntry" | "Capability_Solana" | "Capability_Translations" | "Capability_Brightness" | "Capability_Haptic" | "Capability_BLE" | "Capability_NFC" | "Capability_Tron" | "Capability_N4W1")[];
|
|
1225
|
+
label: string | null;
|
|
1226
|
+
session_id: string | null;
|
|
1227
|
+
vendor: string;
|
|
1228
|
+
major_version: number;
|
|
1229
|
+
minor_version: number;
|
|
1230
|
+
patch_version: number;
|
|
1231
|
+
bootloader_mode: boolean | null;
|
|
1232
|
+
device_id: string | null;
|
|
1233
|
+
pin_protection: boolean | null;
|
|
1234
|
+
passphrase_protection: boolean | null;
|
|
1235
|
+
language: string | null;
|
|
1236
|
+
initialized: boolean | null;
|
|
1237
|
+
revision: string | null;
|
|
1238
|
+
bootloader_hash: string | null;
|
|
1239
|
+
imported: boolean | null;
|
|
1240
|
+
unlocked: boolean | null;
|
|
1241
|
+
firmware_present: boolean | null;
|
|
1242
|
+
backup_availability: "NotAvailable" | "Required" | "Available" | null;
|
|
1243
|
+
flags: number | null;
|
|
1244
|
+
model: string;
|
|
1245
|
+
fw_major: number | null;
|
|
1246
|
+
fw_minor: number | null;
|
|
1247
|
+
fw_patch: number | null;
|
|
1248
|
+
fw_vendor: string | null;
|
|
1249
|
+
unfinished_backup: boolean | null;
|
|
1250
|
+
no_backup: boolean | null;
|
|
1251
|
+
recovery_status: "Nothing" | "Recovery" | "Backup" | null;
|
|
1252
|
+
backup_type: "Bip39" | "Slip39_Basic" | "Slip39_Advanced" | "Slip39_Single_Extendable" | "Slip39_Basic_Extendable" | "Slip39_Advanced_Extendable" | null;
|
|
1253
|
+
sd_card_present: boolean | null;
|
|
1254
|
+
sd_protection: boolean | null;
|
|
1255
|
+
wipe_code_protection: boolean | null;
|
|
1256
|
+
passphrase_always_on_device: boolean | null;
|
|
1257
|
+
safety_checks: "Strict" | "PromptAlways" | "PromptTemporarily" | null;
|
|
1258
|
+
auto_lock_delay_ms: number | null;
|
|
1259
|
+
display_rotation: "North" | "East" | "South" | "West" | null;
|
|
1260
|
+
experimental_features: boolean | null;
|
|
1261
|
+
internal_model: Messages.DeviceModelInternal;
|
|
1262
|
+
};
|
|
1263
|
+
} | {
|
|
1264
|
+
type: "LockDevice";
|
|
1265
|
+
message: {};
|
|
1266
|
+
} | {
|
|
1267
|
+
type: "SetBusy";
|
|
1268
|
+
message: {
|
|
1269
|
+
expiry_ms?: number | undefined;
|
|
1270
|
+
};
|
|
1271
|
+
} | {
|
|
1272
|
+
type: "EndSession";
|
|
1273
|
+
message: {};
|
|
1274
|
+
} | {
|
|
1275
|
+
type: "ApplySettings";
|
|
1276
|
+
message: {
|
|
1277
|
+
label?: string | undefined;
|
|
1278
|
+
language?: string | undefined;
|
|
1279
|
+
passphrase_always_on_device?: boolean | undefined;
|
|
1280
|
+
safety_checks?: "Strict" | "PromptAlways" | "PromptTemporarily" | undefined;
|
|
1281
|
+
auto_lock_delay_ms?: number | undefined;
|
|
1282
|
+
display_rotation?: Messages.Enum_DisplayRotation | "North" | "East" | "South" | "West" | undefined;
|
|
1283
|
+
experimental_features?: boolean | undefined;
|
|
1284
|
+
hide_passphrase_from_host?: boolean | undefined;
|
|
1285
|
+
haptic_feedback?: boolean | undefined;
|
|
1286
|
+
auto_lock_delay_battery_ms?: number | undefined;
|
|
1287
|
+
use_passphrase?: boolean | undefined;
|
|
1288
|
+
homescreen?: string | undefined;
|
|
1289
|
+
_passphrase_source?: number | undefined;
|
|
1290
|
+
homescreen_length?: number | undefined;
|
|
1291
|
+
};
|
|
1292
|
+
} | {
|
|
1293
|
+
type: "ChangeLanguage";
|
|
1294
|
+
message: {
|
|
1295
|
+
show_display?: boolean | undefined;
|
|
1296
|
+
data_length: number;
|
|
1297
|
+
};
|
|
1298
|
+
} | {
|
|
1299
|
+
type: "DataChunkRequest";
|
|
1300
|
+
message: {
|
|
1301
|
+
data_length: number;
|
|
1302
|
+
data_offset: number;
|
|
1303
|
+
};
|
|
1304
|
+
} | {
|
|
1305
|
+
type: "DataChunkAck";
|
|
1306
|
+
message: {
|
|
1307
|
+
data_chunk: string;
|
|
1308
|
+
};
|
|
1309
|
+
} | {
|
|
1310
|
+
type: "ApplyFlags";
|
|
1311
|
+
message: {
|
|
1312
|
+
flags: number;
|
|
1313
|
+
};
|
|
1314
|
+
} | {
|
|
1315
|
+
type: "ChangePin";
|
|
1316
|
+
message: {
|
|
1317
|
+
remove?: boolean | undefined;
|
|
1318
|
+
};
|
|
1319
|
+
} | {
|
|
1320
|
+
type: "ChangeWipeCode";
|
|
1321
|
+
message: {
|
|
1322
|
+
remove?: boolean | undefined;
|
|
1323
|
+
};
|
|
1324
|
+
} | {
|
|
1325
|
+
type: "SdProtect";
|
|
1326
|
+
message: {
|
|
1327
|
+
operation: Messages.SdProtectOperationType;
|
|
1328
|
+
};
|
|
1329
|
+
} | {
|
|
1330
|
+
type: "Ping";
|
|
1331
|
+
message: {
|
|
1332
|
+
message?: string | undefined;
|
|
1333
|
+
button_protection?: boolean | undefined;
|
|
1334
|
+
};
|
|
1335
|
+
} | {
|
|
1336
|
+
type: "Cancel";
|
|
1337
|
+
message: {};
|
|
1338
|
+
} | {
|
|
1339
|
+
type: "GetEntropy";
|
|
1340
|
+
message: {
|
|
1341
|
+
size: number;
|
|
1342
|
+
};
|
|
1343
|
+
} | {
|
|
1344
|
+
type: "Entropy";
|
|
1345
|
+
message: {
|
|
1346
|
+
entropy: string;
|
|
1347
|
+
};
|
|
1348
|
+
} | {
|
|
1349
|
+
type: "GetFirmwareHash";
|
|
1350
|
+
message: {
|
|
1351
|
+
challenge?: string | undefined;
|
|
1352
|
+
};
|
|
1353
|
+
} | {
|
|
1354
|
+
type: "FirmwareHash";
|
|
1355
|
+
message: {
|
|
1356
|
+
hash: string;
|
|
1357
|
+
};
|
|
1358
|
+
} | {
|
|
1359
|
+
type: "AuthenticateDevice";
|
|
1360
|
+
message: {
|
|
1361
|
+
challenge: string;
|
|
1362
|
+
};
|
|
1363
|
+
} | {
|
|
1364
|
+
type: "AuthenticityProof";
|
|
1365
|
+
message: {
|
|
1366
|
+
tropic_signature?: string | undefined;
|
|
1367
|
+
mcu_signature?: string | undefined;
|
|
1368
|
+
optiga_certificates: string[];
|
|
1369
|
+
optiga_signature: string;
|
|
1370
|
+
tropic_certificates: string[];
|
|
1371
|
+
mcu_certificates: string[];
|
|
1372
|
+
};
|
|
1373
|
+
} | {
|
|
1374
|
+
type: "WipeDevice";
|
|
1375
|
+
message: {};
|
|
1376
|
+
} | {
|
|
1377
|
+
type: "LoadDevice";
|
|
1378
|
+
message: {
|
|
1379
|
+
label?: string | undefined;
|
|
1380
|
+
pin?: string | undefined;
|
|
1381
|
+
passphrase_protection?: boolean | undefined;
|
|
1382
|
+
language?: string | undefined;
|
|
1383
|
+
unfinished_backup?: boolean | undefined;
|
|
1384
|
+
no_backup?: boolean | undefined;
|
|
1385
|
+
skip_checksum?: boolean | undefined;
|
|
1386
|
+
u2f_counter?: number | undefined;
|
|
1387
|
+
needs_backup?: boolean | undefined;
|
|
1388
|
+
mnemonics: string[];
|
|
1389
|
+
};
|
|
1390
|
+
} | {
|
|
1391
|
+
type: "ResetDevice";
|
|
1392
|
+
message: {
|
|
1393
|
+
label?: string | undefined;
|
|
1394
|
+
pin_protection?: boolean | undefined;
|
|
1395
|
+
passphrase_protection?: boolean | undefined;
|
|
1396
|
+
language?: string | undefined;
|
|
1397
|
+
no_backup?: boolean | undefined;
|
|
1398
|
+
backup_type?: Messages.Enum_BackupType | undefined;
|
|
1399
|
+
u2f_counter?: number | undefined;
|
|
1400
|
+
strength?: number | undefined;
|
|
1401
|
+
skip_backup?: boolean | undefined;
|
|
1402
|
+
entropy_check?: boolean | undefined;
|
|
1403
|
+
backup_method?: Messages.BackupMethod | undefined;
|
|
1404
|
+
};
|
|
1405
|
+
} | {
|
|
1406
|
+
type: "BackupDevice";
|
|
1407
|
+
message: {
|
|
1408
|
+
backup_method?: Messages.BackupMethod | undefined;
|
|
1409
|
+
group_threshold?: number | undefined;
|
|
1410
|
+
groups?: {
|
|
1411
|
+
member_threshold: number;
|
|
1412
|
+
member_count: number;
|
|
1413
|
+
}[] | undefined;
|
|
1414
|
+
};
|
|
1415
|
+
} | {
|
|
1416
|
+
type: "EntropyRequest";
|
|
1417
|
+
message: {
|
|
1418
|
+
entropy_commitment?: string | undefined;
|
|
1419
|
+
prev_entropy?: string | undefined;
|
|
1420
|
+
};
|
|
1421
|
+
} | {
|
|
1422
|
+
type: "EntropyAck";
|
|
1423
|
+
message: {
|
|
1424
|
+
entropy: string;
|
|
1425
|
+
};
|
|
1426
|
+
} | {
|
|
1427
|
+
type: "EntropyCheckReady";
|
|
1428
|
+
message: {};
|
|
1429
|
+
} | {
|
|
1430
|
+
type: "EntropyCheckContinue";
|
|
1431
|
+
message: {
|
|
1432
|
+
finish?: boolean | undefined;
|
|
1433
|
+
};
|
|
1434
|
+
} | {
|
|
1435
|
+
type: "RecoveryDevice";
|
|
1436
|
+
message: {
|
|
1437
|
+
label?: string | undefined;
|
|
1438
|
+
type?: "NormalRecovery" | "DryRun" | "UnlockRepeatedBackup" | undefined;
|
|
1439
|
+
pin_protection?: boolean | undefined;
|
|
1440
|
+
passphrase_protection?: boolean | undefined;
|
|
1441
|
+
language?: string | undefined;
|
|
1442
|
+
u2f_counter?: number | undefined;
|
|
1443
|
+
backup_method?: Messages.BackupMethod | undefined;
|
|
1444
|
+
word_count?: number | undefined;
|
|
1445
|
+
enforce_wordlist?: boolean | undefined;
|
|
1446
|
+
input_method?: Messages.RecoveryDeviceInputMethod | undefined;
|
|
1447
|
+
};
|
|
1448
|
+
} | {
|
|
1449
|
+
type: "WordAck";
|
|
1450
|
+
message: {
|
|
1451
|
+
word: string;
|
|
1452
|
+
};
|
|
1453
|
+
} | {
|
|
1454
|
+
type: "SetU2FCounter";
|
|
1455
|
+
message: {
|
|
1456
|
+
u2f_counter: number;
|
|
1457
|
+
};
|
|
1458
|
+
} | {
|
|
1459
|
+
type: "GetNextU2FCounter";
|
|
1460
|
+
message: {};
|
|
1461
|
+
} | {
|
|
1462
|
+
type: "NextU2FCounter";
|
|
1463
|
+
message: {
|
|
1464
|
+
u2f_counter: number;
|
|
1465
|
+
};
|
|
1466
|
+
} | {
|
|
1467
|
+
type: "DoPreauthorized";
|
|
1468
|
+
message: {};
|
|
1469
|
+
} | {
|
|
1470
|
+
type: "PreauthorizedRequest";
|
|
1471
|
+
message: {};
|
|
1472
|
+
} | {
|
|
1473
|
+
type: "CancelAuthorization";
|
|
1474
|
+
message: {};
|
|
1475
|
+
} | {
|
|
1476
|
+
type: "RebootToBootloader";
|
|
1477
|
+
message: {
|
|
1478
|
+
boot_command?: Messages.BootCommand | undefined;
|
|
1479
|
+
firmware_header?: string | undefined;
|
|
1480
|
+
};
|
|
1481
|
+
} | {
|
|
1482
|
+
type: "GetNonce";
|
|
1483
|
+
message: {};
|
|
1484
|
+
} | {
|
|
1485
|
+
type: "Nonce";
|
|
1486
|
+
message: {
|
|
1487
|
+
nonce: string;
|
|
1488
|
+
};
|
|
1489
|
+
} | {
|
|
1490
|
+
type: "UnlockPath";
|
|
1491
|
+
message: {
|
|
1492
|
+
mac?: string | undefined;
|
|
1493
|
+
address_n: number[];
|
|
1494
|
+
};
|
|
1495
|
+
} | {
|
|
1496
|
+
type: "UnlockedPathRequest";
|
|
1497
|
+
message: {
|
|
1498
|
+
mac: string;
|
|
1499
|
+
};
|
|
1500
|
+
} | {
|
|
1501
|
+
type: "ShowDeviceTutorial";
|
|
1502
|
+
message: {};
|
|
1503
|
+
} | {
|
|
1504
|
+
type: "UnlockBootloader";
|
|
1505
|
+
message: {};
|
|
1506
|
+
} | {
|
|
1507
|
+
type: "SetBrightness";
|
|
1508
|
+
message: {
|
|
1509
|
+
value?: number | undefined;
|
|
1510
|
+
};
|
|
1511
|
+
} | {
|
|
1512
|
+
type: "GetSerialNumber";
|
|
1513
|
+
message: {};
|
|
1514
|
+
} | {
|
|
1515
|
+
type: "SerialNumber";
|
|
1516
|
+
message: {
|
|
1517
|
+
serial_number: string;
|
|
1518
|
+
};
|
|
1519
|
+
} | {
|
|
1520
|
+
type: "DebugLinkGetPairingInfo";
|
|
1521
|
+
message: {
|
|
1522
|
+
channel_id?: string | undefined;
|
|
1523
|
+
handshake_hash?: string | undefined;
|
|
1524
|
+
nfc_secret_host?: string | undefined;
|
|
1525
|
+
};
|
|
1526
|
+
} | {
|
|
1527
|
+
type: "DebugLinkPairingInfo";
|
|
1528
|
+
message: {
|
|
1529
|
+
channel_id?: string | undefined;
|
|
1530
|
+
handshake_hash?: string | undefined;
|
|
1531
|
+
code_entry_code?: number | undefined;
|
|
1532
|
+
code_qr_code?: string | undefined;
|
|
1533
|
+
nfc_secret_trezor?: string | undefined;
|
|
1534
|
+
};
|
|
1535
|
+
} | {
|
|
1536
|
+
type: "DebugLinkSetBatteryState";
|
|
1537
|
+
message: {
|
|
1538
|
+
soc?: number | undefined;
|
|
1539
|
+
usb_connected?: boolean | undefined;
|
|
1540
|
+
wireless_connected?: boolean | undefined;
|
|
1541
|
+
ntc_connected?: boolean | undefined;
|
|
1542
|
+
charging_limited?: boolean | undefined;
|
|
1543
|
+
temp_control_active?: boolean | undefined;
|
|
1544
|
+
battery_connected?: boolean | undefined;
|
|
1545
|
+
};
|
|
1546
|
+
} | {
|
|
1547
|
+
type: "DebugLinkResetDebugEvents";
|
|
1548
|
+
message: {};
|
|
1549
|
+
} | {
|
|
1550
|
+
type: "DebugLinkOptigaSetSecMax";
|
|
1551
|
+
message: {};
|
|
1552
|
+
} | {
|
|
1553
|
+
type: "DebugLinkGetGcInfo";
|
|
1554
|
+
message: {};
|
|
1555
|
+
} | {
|
|
1556
|
+
type: "DebugLinkGcInfo";
|
|
1557
|
+
message: {
|
|
1558
|
+
items: {
|
|
1559
|
+
name: string;
|
|
1560
|
+
value: number;
|
|
1561
|
+
}[];
|
|
1562
|
+
};
|
|
1563
|
+
} | {
|
|
1564
|
+
type: "DebugLinkSetLogFilter";
|
|
1565
|
+
message: {
|
|
1566
|
+
filter?: string | undefined;
|
|
1567
|
+
};
|
|
1568
|
+
} | {
|
|
1569
|
+
type: "DebugLinkN4W1Connected";
|
|
1570
|
+
message: {};
|
|
1571
|
+
} | {
|
|
1572
|
+
type: "DebugLinkN4W1Write";
|
|
1573
|
+
message: {
|
|
1574
|
+
key?: string | undefined;
|
|
1575
|
+
value?: string | undefined;
|
|
1576
|
+
};
|
|
1577
|
+
} | {
|
|
1578
|
+
type: "DebugLinkN4W1Read";
|
|
1579
|
+
message: {
|
|
1580
|
+
key?: string | undefined;
|
|
1581
|
+
};
|
|
1582
|
+
} | {
|
|
1583
|
+
type: "DebugLinkN4W1Response";
|
|
1584
|
+
message: {
|
|
1585
|
+
value?: string | undefined;
|
|
1586
|
+
};
|
|
1587
|
+
} | {
|
|
1588
|
+
type: "EosGetPublicKey";
|
|
1589
|
+
message: {
|
|
1590
|
+
chunkify?: boolean | undefined;
|
|
1591
|
+
show_display?: boolean | undefined;
|
|
1592
|
+
address_n: number[];
|
|
1593
|
+
};
|
|
1594
|
+
} | {
|
|
1595
|
+
type: "EosPublicKey";
|
|
1596
|
+
message: {
|
|
1597
|
+
wif_public_key: string;
|
|
1598
|
+
raw_public_key: string;
|
|
1599
|
+
};
|
|
1600
|
+
} | {
|
|
1601
|
+
type: "EosSignTx";
|
|
1602
|
+
message: {
|
|
1603
|
+
chunkify?: boolean | undefined;
|
|
1604
|
+
address_n: number[];
|
|
1605
|
+
chain_id: string;
|
|
1606
|
+
header: {
|
|
1607
|
+
expiration: number;
|
|
1608
|
+
ref_block_num: number;
|
|
1609
|
+
ref_block_prefix: number;
|
|
1610
|
+
max_net_usage_words: number;
|
|
1611
|
+
max_cpu_usage_ms: number;
|
|
1612
|
+
delay_sec: number;
|
|
1613
|
+
};
|
|
1614
|
+
num_actions: number;
|
|
1615
|
+
};
|
|
1616
|
+
} | {
|
|
1617
|
+
type: "EosTxActionRequest";
|
|
1618
|
+
message: {
|
|
1619
|
+
data_size?: number | undefined;
|
|
1620
|
+
};
|
|
1621
|
+
} | {
|
|
1622
|
+
type: "EosTxActionAck";
|
|
1623
|
+
message: {
|
|
1624
|
+
transfer?: {
|
|
1625
|
+
sender: string;
|
|
1626
|
+
receiver: string;
|
|
1627
|
+
quantity: {
|
|
1628
|
+
symbol: string;
|
|
1629
|
+
amount: string | number;
|
|
1630
|
+
};
|
|
1631
|
+
memo: string;
|
|
1632
|
+
} | undefined;
|
|
1633
|
+
delegate?: {
|
|
1634
|
+
transfer: boolean;
|
|
1635
|
+
sender: string;
|
|
1636
|
+
receiver: string;
|
|
1637
|
+
net_quantity: {
|
|
1638
|
+
symbol: string;
|
|
1639
|
+
amount: string | number;
|
|
1640
|
+
};
|
|
1641
|
+
cpu_quantity: {
|
|
1642
|
+
symbol: string;
|
|
1643
|
+
amount: string | number;
|
|
1644
|
+
};
|
|
1645
|
+
} | undefined;
|
|
1646
|
+
undelegate?: {
|
|
1647
|
+
sender: string;
|
|
1648
|
+
receiver: string;
|
|
1649
|
+
net_quantity: {
|
|
1650
|
+
symbol: string;
|
|
1651
|
+
amount: string | number;
|
|
1652
|
+
};
|
|
1653
|
+
cpu_quantity: {
|
|
1654
|
+
symbol: string;
|
|
1655
|
+
amount: string | number;
|
|
1656
|
+
};
|
|
1657
|
+
} | undefined;
|
|
1658
|
+
refund?: {
|
|
1659
|
+
owner: string;
|
|
1660
|
+
} | undefined;
|
|
1661
|
+
buy_ram?: {
|
|
1662
|
+
receiver: string;
|
|
1663
|
+
quantity: {
|
|
1664
|
+
symbol: string;
|
|
1665
|
+
amount: string | number;
|
|
1666
|
+
};
|
|
1667
|
+
payer: string;
|
|
1668
|
+
} | undefined;
|
|
1669
|
+
buy_ram_bytes?: {
|
|
1670
|
+
receiver: string;
|
|
1671
|
+
payer: string;
|
|
1672
|
+
bytes: number;
|
|
1673
|
+
} | undefined;
|
|
1674
|
+
sell_ram?: {
|
|
1675
|
+
account: string;
|
|
1676
|
+
bytes: number;
|
|
1677
|
+
} | undefined;
|
|
1678
|
+
vote_producer?: {
|
|
1679
|
+
voter: string;
|
|
1680
|
+
proxy: string;
|
|
1681
|
+
producers: string[];
|
|
1682
|
+
} | undefined;
|
|
1683
|
+
update_auth?: {
|
|
1684
|
+
account: string;
|
|
1685
|
+
permission: string;
|
|
1686
|
+
parent: string;
|
|
1687
|
+
auth: {
|
|
1688
|
+
keys: {
|
|
1689
|
+
address_n?: number[] | undefined;
|
|
1690
|
+
type?: number | undefined;
|
|
1691
|
+
key: string;
|
|
1692
|
+
weight: number;
|
|
1693
|
+
}[];
|
|
1694
|
+
accounts: {
|
|
1695
|
+
account: {
|
|
1696
|
+
permission: string;
|
|
1697
|
+
actor: string;
|
|
1698
|
+
};
|
|
1699
|
+
weight: number;
|
|
1700
|
+
}[];
|
|
1701
|
+
threshold: number;
|
|
1702
|
+
waits: {
|
|
1703
|
+
weight: number;
|
|
1704
|
+
wait_sec: number;
|
|
1705
|
+
}[];
|
|
1706
|
+
};
|
|
1707
|
+
} | undefined;
|
|
1708
|
+
delete_auth?: {
|
|
1709
|
+
account: string;
|
|
1710
|
+
permission: string;
|
|
1711
|
+
} | undefined;
|
|
1712
|
+
link_auth?: {
|
|
1713
|
+
code: string;
|
|
1714
|
+
type: string;
|
|
1715
|
+
account: string;
|
|
1716
|
+
requirement: string;
|
|
1717
|
+
} | undefined;
|
|
1718
|
+
unlink_auth?: {
|
|
1719
|
+
code: string;
|
|
1720
|
+
type: string;
|
|
1721
|
+
account: string;
|
|
1722
|
+
} | undefined;
|
|
1723
|
+
new_account?: {
|
|
1724
|
+
name: string;
|
|
1725
|
+
owner: {
|
|
1726
|
+
keys: {
|
|
1727
|
+
address_n?: number[] | undefined;
|
|
1728
|
+
type?: number | undefined;
|
|
1729
|
+
key: string;
|
|
1730
|
+
weight: number;
|
|
1731
|
+
}[];
|
|
1732
|
+
accounts: {
|
|
1733
|
+
account: {
|
|
1734
|
+
permission: string;
|
|
1735
|
+
actor: string;
|
|
1736
|
+
};
|
|
1737
|
+
weight: number;
|
|
1738
|
+
}[];
|
|
1739
|
+
threshold: number;
|
|
1740
|
+
waits: {
|
|
1741
|
+
weight: number;
|
|
1742
|
+
wait_sec: number;
|
|
1743
|
+
}[];
|
|
1744
|
+
};
|
|
1745
|
+
creator: string;
|
|
1746
|
+
active: {
|
|
1747
|
+
keys: {
|
|
1748
|
+
address_n?: number[] | undefined;
|
|
1749
|
+
type?: number | undefined;
|
|
1750
|
+
key: string;
|
|
1751
|
+
weight: number;
|
|
1752
|
+
}[];
|
|
1753
|
+
accounts: {
|
|
1754
|
+
account: {
|
|
1755
|
+
permission: string;
|
|
1756
|
+
actor: string;
|
|
1757
|
+
};
|
|
1758
|
+
weight: number;
|
|
1759
|
+
}[];
|
|
1760
|
+
threshold: number;
|
|
1761
|
+
waits: {
|
|
1762
|
+
weight: number;
|
|
1763
|
+
wait_sec: number;
|
|
1764
|
+
}[];
|
|
1765
|
+
};
|
|
1766
|
+
} | undefined;
|
|
1767
|
+
unknown?: {
|
|
1768
|
+
data_chunk: string;
|
|
1769
|
+
data_size: number;
|
|
1770
|
+
} | undefined;
|
|
1771
|
+
common: {
|
|
1772
|
+
name: string;
|
|
1773
|
+
account: string;
|
|
1774
|
+
authorization: {
|
|
1775
|
+
permission: string;
|
|
1776
|
+
actor: string;
|
|
1777
|
+
}[];
|
|
1778
|
+
};
|
|
1779
|
+
};
|
|
1780
|
+
} | {
|
|
1781
|
+
type: "EosSignedTx";
|
|
1782
|
+
message: {
|
|
1783
|
+
signature: string;
|
|
1784
|
+
};
|
|
1785
|
+
} | {
|
|
1786
|
+
type: "EthereumGetPublicKey";
|
|
1787
|
+
message: {
|
|
1788
|
+
show_display?: boolean | undefined;
|
|
1789
|
+
address_n: number[];
|
|
1790
|
+
};
|
|
1791
|
+
} | {
|
|
1792
|
+
type: "EthereumPublicKey";
|
|
1793
|
+
message: {
|
|
1794
|
+
xpub: string;
|
|
1795
|
+
node: {
|
|
1796
|
+
private_key?: string | undefined;
|
|
1797
|
+
fingerprint: number;
|
|
1798
|
+
depth: number;
|
|
1799
|
+
child_num: number;
|
|
1800
|
+
chain_code: string;
|
|
1801
|
+
public_key: string;
|
|
1802
|
+
};
|
|
1803
|
+
};
|
|
1804
|
+
} | {
|
|
1805
|
+
type: "EthereumGetAddress";
|
|
1806
|
+
message: {
|
|
1807
|
+
chunkify?: boolean | undefined;
|
|
1808
|
+
show_display?: boolean | undefined;
|
|
1809
|
+
encoded_network?: ArrayBuffer | undefined;
|
|
1810
|
+
address_n: number[];
|
|
1811
|
+
};
|
|
1812
|
+
} | {
|
|
1813
|
+
type: "EthereumAddress";
|
|
1814
|
+
message: {
|
|
1815
|
+
mac?: string | undefined;
|
|
1816
|
+
_old_address?: string | undefined;
|
|
1817
|
+
address: string;
|
|
1818
|
+
};
|
|
1819
|
+
} | {
|
|
1820
|
+
type: "EthereumSignTx";
|
|
1821
|
+
message: {
|
|
1822
|
+
chunkify?: boolean | undefined;
|
|
1823
|
+
nonce?: string | undefined;
|
|
1824
|
+
payment_req?: {
|
|
1825
|
+
amount?: string | undefined;
|
|
1826
|
+
nonce?: string | undefined;
|
|
1827
|
+
memos?: {
|
|
1828
|
+
text_memo?: {
|
|
1829
|
+
text: string;
|
|
1830
|
+
} | undefined;
|
|
1831
|
+
refund_memo?: {
|
|
1832
|
+
address_n: number[];
|
|
1833
|
+
address: string;
|
|
1834
|
+
mac: string;
|
|
1835
|
+
} | undefined;
|
|
1836
|
+
coin_purchase_memo?: {
|
|
1837
|
+
amount: string;
|
|
1838
|
+
address_n: number[];
|
|
1839
|
+
address: string;
|
|
1840
|
+
mac: string;
|
|
1841
|
+
coin_type: number;
|
|
1842
|
+
} | undefined;
|
|
1843
|
+
text_details_memo?: {
|
|
1844
|
+
text: string;
|
|
1845
|
+
title: string;
|
|
1846
|
+
} | undefined;
|
|
1847
|
+
}[] | undefined;
|
|
1848
|
+
recipient_name: string;
|
|
1849
|
+
signature: string;
|
|
1850
|
+
} | undefined;
|
|
1851
|
+
value?: string | undefined;
|
|
1852
|
+
data_length?: number | undefined;
|
|
1853
|
+
to?: string | undefined;
|
|
1854
|
+
data_initial_chunk?: string | undefined;
|
|
1855
|
+
tx_type?: number | undefined;
|
|
1856
|
+
definitions?: {
|
|
1857
|
+
encoded_network?: ArrayBuffer | undefined;
|
|
1858
|
+
encoded_token?: ArrayBuffer | undefined;
|
|
1859
|
+
} | undefined;
|
|
1860
|
+
address_n: number[];
|
|
1861
|
+
chain_id: number;
|
|
1862
|
+
gas_price: string;
|
|
1863
|
+
gas_limit: string;
|
|
1864
|
+
};
|
|
1865
|
+
} | {
|
|
1866
|
+
type: "EthereumSignTxEIP1559";
|
|
1867
|
+
message: {
|
|
1868
|
+
chunkify?: boolean | undefined;
|
|
1869
|
+
payment_req?: {
|
|
1870
|
+
amount?: string | undefined;
|
|
1871
|
+
nonce?: string | undefined;
|
|
1872
|
+
memos?: {
|
|
1873
|
+
text_memo?: {
|
|
1874
|
+
text: string;
|
|
1875
|
+
} | undefined;
|
|
1876
|
+
refund_memo?: {
|
|
1877
|
+
address_n: number[];
|
|
1878
|
+
address: string;
|
|
1879
|
+
mac: string;
|
|
1880
|
+
} | undefined;
|
|
1881
|
+
coin_purchase_memo?: {
|
|
1882
|
+
amount: string;
|
|
1883
|
+
address_n: number[];
|
|
1884
|
+
address: string;
|
|
1885
|
+
mac: string;
|
|
1886
|
+
coin_type: number;
|
|
1887
|
+
} | undefined;
|
|
1888
|
+
text_details_memo?: {
|
|
1889
|
+
text: string;
|
|
1890
|
+
title: string;
|
|
1891
|
+
} | undefined;
|
|
1892
|
+
}[] | undefined;
|
|
1893
|
+
recipient_name: string;
|
|
1894
|
+
signature: string;
|
|
1895
|
+
} | undefined;
|
|
1896
|
+
to?: string | undefined;
|
|
1897
|
+
data_initial_chunk?: string | undefined;
|
|
1898
|
+
definitions?: {
|
|
1899
|
+
encoded_network?: ArrayBuffer | undefined;
|
|
1900
|
+
encoded_token?: ArrayBuffer | undefined;
|
|
1901
|
+
} | undefined;
|
|
1902
|
+
address_n: number[];
|
|
1903
|
+
nonce: string;
|
|
1904
|
+
value: string;
|
|
1905
|
+
data_length: number;
|
|
1906
|
+
chain_id: number;
|
|
1907
|
+
gas_limit: string;
|
|
1908
|
+
max_gas_fee: string;
|
|
1909
|
+
max_priority_fee: string;
|
|
1910
|
+
access_list: {
|
|
1911
|
+
address: string;
|
|
1912
|
+
storage_keys: string[];
|
|
1913
|
+
}[];
|
|
1914
|
+
};
|
|
1915
|
+
} | {
|
|
1916
|
+
type: "EthereumTxRequest";
|
|
1917
|
+
message: {
|
|
1918
|
+
data_length?: number | undefined;
|
|
1919
|
+
signature_v?: number | undefined;
|
|
1920
|
+
signature_r?: string | undefined;
|
|
1921
|
+
signature_s?: string | undefined;
|
|
1922
|
+
};
|
|
1923
|
+
} | {
|
|
1924
|
+
type: "EthereumTxAck";
|
|
1925
|
+
message: {
|
|
1926
|
+
data_chunk: string;
|
|
1927
|
+
};
|
|
1928
|
+
} | {
|
|
1929
|
+
type: "EthereumSignMessage";
|
|
1930
|
+
message: {
|
|
1931
|
+
chunkify?: boolean | undefined;
|
|
1932
|
+
encoded_network?: ArrayBuffer | undefined;
|
|
1933
|
+
address_n: number[];
|
|
1934
|
+
message: string;
|
|
1935
|
+
};
|
|
1936
|
+
} | {
|
|
1937
|
+
type: "EthereumMessageSignature";
|
|
1938
|
+
message: {
|
|
1939
|
+
address: string;
|
|
1940
|
+
signature: string;
|
|
1941
|
+
};
|
|
1942
|
+
} | {
|
|
1943
|
+
type: "EthereumVerifyMessage";
|
|
1944
|
+
message: {
|
|
1945
|
+
chunkify?: boolean | undefined;
|
|
1946
|
+
address: string;
|
|
1947
|
+
message: string;
|
|
1948
|
+
signature: string;
|
|
1949
|
+
};
|
|
1950
|
+
} | {
|
|
1951
|
+
type: "EthereumSignTypedHash";
|
|
1952
|
+
message: {
|
|
1953
|
+
encoded_network?: ArrayBuffer | undefined;
|
|
1954
|
+
message_hash?: string | undefined;
|
|
1955
|
+
address_n: number[];
|
|
1956
|
+
domain_separator_hash: string;
|
|
1957
|
+
};
|
|
1958
|
+
} | {
|
|
1959
|
+
type: "EthereumTypedDataSignature";
|
|
1960
|
+
message: {
|
|
1961
|
+
address: string;
|
|
1962
|
+
signature: string;
|
|
1963
|
+
};
|
|
1964
|
+
} | {
|
|
1965
|
+
type: "EthereumSignTypedData";
|
|
1966
|
+
message: {
|
|
1967
|
+
definitions?: {
|
|
1968
|
+
encoded_network?: ArrayBuffer | undefined;
|
|
1969
|
+
encoded_token?: ArrayBuffer | undefined;
|
|
1970
|
+
} | undefined;
|
|
1971
|
+
metamask_v4_compat?: boolean | undefined;
|
|
1972
|
+
show_message_hash?: string | undefined;
|
|
1973
|
+
address_n: number[];
|
|
1974
|
+
primary_type: string;
|
|
1975
|
+
};
|
|
1976
|
+
} | {
|
|
1977
|
+
type: "EthereumTypedDataStructRequest";
|
|
1978
|
+
message: {
|
|
1979
|
+
name: string;
|
|
1980
|
+
};
|
|
1981
|
+
} | {
|
|
1982
|
+
type: "EthereumTypedDataStructAck";
|
|
1983
|
+
message: {
|
|
1984
|
+
members: {
|
|
1985
|
+
name: string;
|
|
1986
|
+
type: {
|
|
1987
|
+
size?: number | undefined;
|
|
1988
|
+
entry_type?: any | undefined;
|
|
1989
|
+
struct_name?: string | undefined;
|
|
1990
|
+
data_type: Messages.EthereumDataType;
|
|
1991
|
+
};
|
|
1992
|
+
}[];
|
|
1993
|
+
};
|
|
1994
|
+
} | {
|
|
1995
|
+
type: "EthereumTypedDataValueRequest";
|
|
1996
|
+
message: {
|
|
1997
|
+
member_path: number[];
|
|
1998
|
+
};
|
|
1999
|
+
} | {
|
|
2000
|
+
type: "EthereumTypedDataValueAck";
|
|
2001
|
+
message: {
|
|
2002
|
+
value: string;
|
|
2003
|
+
};
|
|
2004
|
+
} | {
|
|
2005
|
+
type: "EvoluGetNode";
|
|
2006
|
+
message: {
|
|
2007
|
+
node_rotation_index?: number | undefined;
|
|
2008
|
+
proof_of_delegated_identity: string;
|
|
2009
|
+
};
|
|
2010
|
+
} | {
|
|
2011
|
+
type: "EvoluNode";
|
|
2012
|
+
message: {
|
|
2013
|
+
data: string;
|
|
2014
|
+
};
|
|
2015
|
+
} | {
|
|
2016
|
+
type: "EvoluSignRegistrationRequest";
|
|
2017
|
+
message: {
|
|
2018
|
+
proof_of_delegated_identity: string;
|
|
2019
|
+
challenge_from_server: string;
|
|
2020
|
+
size_to_acquire: number;
|
|
2021
|
+
};
|
|
2022
|
+
} | {
|
|
2023
|
+
type: "EvoluRegistrationRequest";
|
|
2024
|
+
message: {
|
|
2025
|
+
signature: string;
|
|
2026
|
+
certificate_chain: string[];
|
|
2027
|
+
};
|
|
2028
|
+
} | {
|
|
2029
|
+
type: "EvoluGetDelegatedIdentityKey";
|
|
2030
|
+
message: {
|
|
2031
|
+
thp_credential?: string | undefined;
|
|
2032
|
+
rotation_index?: number | undefined;
|
|
2033
|
+
rotate?: boolean | undefined;
|
|
2034
|
+
};
|
|
2035
|
+
} | {
|
|
2036
|
+
type: "EvoluDelegatedIdentityKey";
|
|
2037
|
+
message: {
|
|
2038
|
+
rotation_index?: number | undefined;
|
|
2039
|
+
private_key: string;
|
|
2040
|
+
};
|
|
2041
|
+
} | {
|
|
2042
|
+
type: "EvoluIndexManagement";
|
|
2043
|
+
message: {
|
|
2044
|
+
rotation_index?: number | undefined;
|
|
2045
|
+
};
|
|
2046
|
+
} | {
|
|
2047
|
+
type: "EvoluIndexManagementResponse";
|
|
2048
|
+
message: {
|
|
2049
|
+
rotation_index?: number | undefined;
|
|
2050
|
+
};
|
|
2051
|
+
} | {
|
|
2052
|
+
type: "MoneroGetAddress";
|
|
2053
|
+
message: {
|
|
2054
|
+
chunkify?: boolean | undefined;
|
|
2055
|
+
show_display?: boolean | undefined;
|
|
2056
|
+
network_type?: Messages.MoneroNetworkType | undefined;
|
|
2057
|
+
account?: number | undefined;
|
|
2058
|
+
minor?: number | undefined;
|
|
2059
|
+
payment_id?: string | undefined;
|
|
2060
|
+
address_n: number[];
|
|
2061
|
+
};
|
|
2062
|
+
} | {
|
|
2063
|
+
type: "MoneroAddress";
|
|
2064
|
+
message: {
|
|
2065
|
+
address: string;
|
|
2066
|
+
};
|
|
2067
|
+
} | {
|
|
2068
|
+
type: "MoneroGetWatchKey";
|
|
2069
|
+
message: {
|
|
2070
|
+
network_type?: Messages.MoneroNetworkType | undefined;
|
|
2071
|
+
address_n: number[];
|
|
2072
|
+
};
|
|
2073
|
+
} | {
|
|
2074
|
+
type: "MoneroWatchKey";
|
|
2075
|
+
message: {
|
|
2076
|
+
address: string;
|
|
2077
|
+
watch_key: string;
|
|
2078
|
+
};
|
|
2079
|
+
} | {
|
|
2080
|
+
type: "MoneroTransactionInitRequest";
|
|
2081
|
+
message: {
|
|
2082
|
+
version?: number | undefined;
|
|
2083
|
+
network_type?: Messages.MoneroNetworkType | undefined;
|
|
2084
|
+
tsx_data?: {
|
|
2085
|
+
chunkify?: boolean | undefined;
|
|
2086
|
+
version?: number | undefined;
|
|
2087
|
+
fee?: string | number | undefined;
|
|
2088
|
+
account?: number | undefined;
|
|
2089
|
+
payment_id?: string | undefined;
|
|
2090
|
+
rsig_data?: {
|
|
2091
|
+
rsig_type?: number | undefined;
|
|
2092
|
+
offload_type?: number | undefined;
|
|
2093
|
+
mask?: string | undefined;
|
|
2094
|
+
rsig?: string | undefined;
|
|
2095
|
+
bp_version?: number | undefined;
|
|
2096
|
+
grouping: number[];
|
|
2097
|
+
rsig_parts: string[];
|
|
2098
|
+
} | undefined;
|
|
2099
|
+
unlock_time?: number | undefined;
|
|
2100
|
+
change_dts?: {
|
|
2101
|
+
amount?: string | number | undefined;
|
|
2102
|
+
addr?: {
|
|
2103
|
+
view_public_key?: string | undefined;
|
|
2104
|
+
spend_public_key?: string | undefined;
|
|
2105
|
+
} | undefined;
|
|
2106
|
+
is_subaddress?: boolean | undefined;
|
|
2107
|
+
original?: string | undefined;
|
|
2108
|
+
is_integrated?: boolean | undefined;
|
|
2109
|
+
} | undefined;
|
|
2110
|
+
num_inputs?: number | undefined;
|
|
2111
|
+
mixin?: number | undefined;
|
|
2112
|
+
client_version?: number | undefined;
|
|
2113
|
+
hard_fork?: number | undefined;
|
|
2114
|
+
monero_version?: string | undefined;
|
|
2115
|
+
outputs: {
|
|
2116
|
+
amount?: string | number | undefined;
|
|
2117
|
+
addr?: {
|
|
2118
|
+
view_public_key?: string | undefined;
|
|
2119
|
+
spend_public_key?: string | undefined;
|
|
2120
|
+
} | undefined;
|
|
2121
|
+
is_subaddress?: boolean | undefined;
|
|
2122
|
+
original?: string | undefined;
|
|
2123
|
+
is_integrated?: boolean | undefined;
|
|
2124
|
+
}[];
|
|
2125
|
+
minor_indices: number[];
|
|
2126
|
+
integrated_indices: number[];
|
|
2127
|
+
} | undefined;
|
|
2128
|
+
address_n: number[];
|
|
2129
|
+
};
|
|
2130
|
+
} | {
|
|
2131
|
+
type: "MoneroTransactionInitAck";
|
|
2132
|
+
message: {
|
|
2133
|
+
rsig_data?: {
|
|
2134
|
+
rsig_type?: number | undefined;
|
|
2135
|
+
offload_type?: number | undefined;
|
|
2136
|
+
mask?: string | undefined;
|
|
2137
|
+
rsig?: string | undefined;
|
|
2138
|
+
bp_version?: number | undefined;
|
|
2139
|
+
grouping: number[];
|
|
2140
|
+
rsig_parts: string[];
|
|
2141
|
+
} | undefined;
|
|
2142
|
+
hmacs: string[];
|
|
2143
|
+
};
|
|
2144
|
+
} | {
|
|
2145
|
+
type: "MoneroTransactionSetInputRequest";
|
|
2146
|
+
message: {
|
|
2147
|
+
src_entr?: {
|
|
2148
|
+
amount?: string | number | undefined;
|
|
2149
|
+
mask?: string | undefined;
|
|
2150
|
+
real_output?: number | undefined;
|
|
2151
|
+
real_out_tx_key?: string | undefined;
|
|
2152
|
+
real_output_in_tx_index?: number | undefined;
|
|
2153
|
+
rct?: boolean | undefined;
|
|
2154
|
+
multisig_kLRki?: {
|
|
2155
|
+
K?: string | undefined;
|
|
2156
|
+
L?: string | undefined;
|
|
2157
|
+
R?: string | undefined;
|
|
2158
|
+
ki?: string | undefined;
|
|
2159
|
+
} | undefined;
|
|
2160
|
+
subaddr_minor?: number | undefined;
|
|
2161
|
+
outputs: {
|
|
2162
|
+
key?: {
|
|
2163
|
+
commitment: string;
|
|
2164
|
+
dest: string;
|
|
2165
|
+
} | undefined;
|
|
2166
|
+
idx?: number | undefined;
|
|
2167
|
+
}[];
|
|
2168
|
+
real_out_additional_tx_keys: string[];
|
|
2169
|
+
} | undefined;
|
|
2170
|
+
};
|
|
2171
|
+
} | {
|
|
2172
|
+
type: "MoneroTransactionSetInputAck";
|
|
2173
|
+
message: {
|
|
2174
|
+
vini: string;
|
|
2175
|
+
vini_hmac: string;
|
|
2176
|
+
pseudo_out: string;
|
|
2177
|
+
pseudo_out_hmac: string;
|
|
2178
|
+
pseudo_out_alpha: string;
|
|
2179
|
+
spend_key: string;
|
|
2180
|
+
};
|
|
2181
|
+
} | {
|
|
2182
|
+
type: "MoneroTransactionInputViniRequest";
|
|
2183
|
+
message: {
|
|
2184
|
+
src_entr?: {
|
|
2185
|
+
amount?: string | number | undefined;
|
|
2186
|
+
mask?: string | undefined;
|
|
2187
|
+
real_output?: number | undefined;
|
|
2188
|
+
real_out_tx_key?: string | undefined;
|
|
2189
|
+
real_output_in_tx_index?: number | undefined;
|
|
2190
|
+
rct?: boolean | undefined;
|
|
2191
|
+
multisig_kLRki?: {
|
|
2192
|
+
K?: string | undefined;
|
|
2193
|
+
L?: string | undefined;
|
|
2194
|
+
R?: string | undefined;
|
|
2195
|
+
ki?: string | undefined;
|
|
2196
|
+
} | undefined;
|
|
2197
|
+
subaddr_minor?: number | undefined;
|
|
2198
|
+
outputs: {
|
|
2199
|
+
key?: {
|
|
2200
|
+
commitment: string;
|
|
2201
|
+
dest: string;
|
|
2202
|
+
} | undefined;
|
|
2203
|
+
idx?: number | undefined;
|
|
2204
|
+
}[];
|
|
2205
|
+
real_out_additional_tx_keys: string[];
|
|
2206
|
+
} | undefined;
|
|
2207
|
+
vini?: string | undefined;
|
|
2208
|
+
vini_hmac?: string | undefined;
|
|
2209
|
+
pseudo_out?: string | undefined;
|
|
2210
|
+
pseudo_out_hmac?: string | undefined;
|
|
2211
|
+
orig_idx?: number | undefined;
|
|
2212
|
+
};
|
|
2213
|
+
} | {
|
|
2214
|
+
type: "MoneroTransactionInputViniAck";
|
|
2215
|
+
message: {};
|
|
2216
|
+
} | {
|
|
2217
|
+
type: "MoneroTransactionAllInputsSetRequest";
|
|
2218
|
+
message: {};
|
|
2219
|
+
} | {
|
|
2220
|
+
type: "MoneroTransactionAllInputsSetAck";
|
|
2221
|
+
message: {
|
|
2222
|
+
rsig_data?: {
|
|
2223
|
+
rsig_type?: number | undefined;
|
|
2224
|
+
offload_type?: number | undefined;
|
|
2225
|
+
mask?: string | undefined;
|
|
2226
|
+
rsig?: string | undefined;
|
|
2227
|
+
bp_version?: number | undefined;
|
|
2228
|
+
grouping: number[];
|
|
2229
|
+
rsig_parts: string[];
|
|
2230
|
+
} | undefined;
|
|
2231
|
+
};
|
|
2232
|
+
} | {
|
|
2233
|
+
type: "MoneroTransactionSetOutputRequest";
|
|
2234
|
+
message: {
|
|
2235
|
+
rsig_data?: {
|
|
2236
|
+
rsig_type?: number | undefined;
|
|
2237
|
+
offload_type?: number | undefined;
|
|
2238
|
+
mask?: string | undefined;
|
|
2239
|
+
rsig?: string | undefined;
|
|
2240
|
+
bp_version?: number | undefined;
|
|
2241
|
+
grouping: number[];
|
|
2242
|
+
rsig_parts: string[];
|
|
2243
|
+
} | undefined;
|
|
2244
|
+
dst_entr?: {
|
|
2245
|
+
amount?: string | number | undefined;
|
|
2246
|
+
addr?: {
|
|
2247
|
+
view_public_key?: string | undefined;
|
|
2248
|
+
spend_public_key?: string | undefined;
|
|
2249
|
+
} | undefined;
|
|
2250
|
+
is_subaddress?: boolean | undefined;
|
|
2251
|
+
original?: string | undefined;
|
|
2252
|
+
is_integrated?: boolean | undefined;
|
|
2253
|
+
} | undefined;
|
|
2254
|
+
dst_entr_hmac?: string | undefined;
|
|
2255
|
+
is_offloaded_bp?: boolean | undefined;
|
|
2256
|
+
};
|
|
2257
|
+
} | {
|
|
2258
|
+
type: "MoneroTransactionSetOutputAck";
|
|
2259
|
+
message: {
|
|
2260
|
+
rsig_data?: {
|
|
2261
|
+
rsig_type?: number | undefined;
|
|
2262
|
+
offload_type?: number | undefined;
|
|
2263
|
+
mask?: string | undefined;
|
|
2264
|
+
rsig?: string | undefined;
|
|
2265
|
+
bp_version?: number | undefined;
|
|
2266
|
+
grouping: number[];
|
|
2267
|
+
rsig_parts: string[];
|
|
2268
|
+
} | undefined;
|
|
2269
|
+
tx_out?: string | undefined;
|
|
2270
|
+
vouti_hmac?: string | undefined;
|
|
2271
|
+
out_pk?: string | undefined;
|
|
2272
|
+
ecdh_info?: string | undefined;
|
|
2273
|
+
};
|
|
2274
|
+
} | {
|
|
2275
|
+
type: "MoneroTransactionAllOutSetRequest";
|
|
2276
|
+
message: {
|
|
2277
|
+
rsig_data?: {
|
|
2278
|
+
rsig_type?: number | undefined;
|
|
2279
|
+
offload_type?: number | undefined;
|
|
2280
|
+
mask?: string | undefined;
|
|
2281
|
+
rsig?: string | undefined;
|
|
2282
|
+
bp_version?: number | undefined;
|
|
2283
|
+
grouping: number[];
|
|
2284
|
+
rsig_parts: string[];
|
|
2285
|
+
} | undefined;
|
|
2286
|
+
};
|
|
2287
|
+
} | {
|
|
2288
|
+
type: "MoneroTransactionAllOutSetAck";
|
|
2289
|
+
message: {
|
|
2290
|
+
extra?: string | undefined;
|
|
2291
|
+
full_message_hash?: string | undefined;
|
|
2292
|
+
tx_prefix_hash: string;
|
|
2293
|
+
rv: {
|
|
2294
|
+
message?: string | undefined;
|
|
2295
|
+
txn_fee?: number | undefined;
|
|
2296
|
+
rv_type?: number | undefined;
|
|
2297
|
+
};
|
|
2298
|
+
};
|
|
2299
|
+
} | {
|
|
2300
|
+
type: "MoneroTransactionSignInputRequest";
|
|
2301
|
+
message: {
|
|
2302
|
+
src_entr?: {
|
|
2303
|
+
amount?: string | number | undefined;
|
|
2304
|
+
mask?: string | undefined;
|
|
2305
|
+
real_output?: number | undefined;
|
|
2306
|
+
real_out_tx_key?: string | undefined;
|
|
2307
|
+
real_output_in_tx_index?: number | undefined;
|
|
2308
|
+
rct?: boolean | undefined;
|
|
2309
|
+
multisig_kLRki?: {
|
|
2310
|
+
K?: string | undefined;
|
|
2311
|
+
L?: string | undefined;
|
|
2312
|
+
R?: string | undefined;
|
|
2313
|
+
ki?: string | undefined;
|
|
2314
|
+
} | undefined;
|
|
2315
|
+
subaddr_minor?: number | undefined;
|
|
2316
|
+
outputs: {
|
|
2317
|
+
key?: {
|
|
2318
|
+
commitment: string;
|
|
2319
|
+
dest: string;
|
|
2320
|
+
} | undefined;
|
|
2321
|
+
idx?: number | undefined;
|
|
2322
|
+
}[];
|
|
2323
|
+
real_out_additional_tx_keys: string[];
|
|
2324
|
+
} | undefined;
|
|
2325
|
+
vini?: string | undefined;
|
|
2326
|
+
vini_hmac?: string | undefined;
|
|
2327
|
+
pseudo_out?: string | undefined;
|
|
2328
|
+
pseudo_out_hmac?: string | undefined;
|
|
2329
|
+
pseudo_out_alpha?: string | undefined;
|
|
2330
|
+
spend_key?: string | undefined;
|
|
2331
|
+
orig_idx?: number | undefined;
|
|
2332
|
+
};
|
|
2333
|
+
} | {
|
|
2334
|
+
type: "MoneroTransactionSignInputAck";
|
|
2335
|
+
message: {
|
|
2336
|
+
signature?: string | undefined;
|
|
2337
|
+
pseudo_out?: string | undefined;
|
|
2338
|
+
};
|
|
2339
|
+
} | {
|
|
2340
|
+
type: "MoneroTransactionFinalRequest";
|
|
2341
|
+
message: {};
|
|
2342
|
+
} | {
|
|
2343
|
+
type: "MoneroTransactionFinalAck";
|
|
2344
|
+
message: {
|
|
2345
|
+
cout_key?: string | undefined;
|
|
2346
|
+
salt?: string | undefined;
|
|
2347
|
+
rand_mult?: string | undefined;
|
|
2348
|
+
tx_enc_keys?: string | undefined;
|
|
2349
|
+
opening_key?: string | undefined;
|
|
2350
|
+
};
|
|
2351
|
+
} | {
|
|
2352
|
+
type: "MoneroKeyImageExportInitRequest";
|
|
2353
|
+
message: {
|
|
2354
|
+
network_type?: Messages.MoneroNetworkType | undefined;
|
|
2355
|
+
address_n: number[];
|
|
2356
|
+
hash: Uint8Array<ArrayBufferLike>;
|
|
2357
|
+
num: number;
|
|
2358
|
+
subs: {
|
|
2359
|
+
account: number;
|
|
2360
|
+
minor_indices: number[];
|
|
2361
|
+
}[];
|
|
2362
|
+
};
|
|
2363
|
+
} | {
|
|
2364
|
+
type: "MoneroKeyImageExportInitAck";
|
|
2365
|
+
message: {};
|
|
2366
|
+
} | {
|
|
2367
|
+
type: "MoneroKeyImageSyncStepRequest";
|
|
2368
|
+
message: {
|
|
2369
|
+
tdis: {
|
|
2370
|
+
sub_addr_major?: number | undefined;
|
|
2371
|
+
sub_addr_minor?: number | undefined;
|
|
2372
|
+
out_key: Uint8Array<ArrayBufferLike>;
|
|
2373
|
+
tx_pub_key: Uint8Array<ArrayBufferLike>;
|
|
2374
|
+
additional_tx_pub_keys: Uint8Array<ArrayBufferLike>[];
|
|
2375
|
+
internal_output_index: number;
|
|
2376
|
+
}[];
|
|
2377
|
+
};
|
|
2378
|
+
} | {
|
|
2379
|
+
type: "MoneroKeyImageSyncStepAck";
|
|
2380
|
+
message: {
|
|
2381
|
+
kis: {
|
|
2382
|
+
iv?: string | undefined;
|
|
2383
|
+
blob?: string | undefined;
|
|
2384
|
+
}[];
|
|
2385
|
+
};
|
|
2386
|
+
} | {
|
|
2387
|
+
type: "MoneroKeyImageSyncFinalRequest";
|
|
2388
|
+
message: {};
|
|
2389
|
+
} | {
|
|
2390
|
+
type: "MoneroKeyImageSyncFinalAck";
|
|
2391
|
+
message: {
|
|
2392
|
+
enc_key?: string | undefined;
|
|
2393
|
+
};
|
|
2394
|
+
} | {
|
|
2395
|
+
type: "MoneroGetTxKeyRequest";
|
|
2396
|
+
message: {
|
|
2397
|
+
network_type?: Messages.MoneroNetworkType | undefined;
|
|
2398
|
+
reason?: number | undefined;
|
|
2399
|
+
view_public_key?: string | undefined;
|
|
2400
|
+
address_n: number[];
|
|
2401
|
+
tx_prefix_hash: string;
|
|
2402
|
+
tx_enc_keys: string;
|
|
2403
|
+
salt1: string;
|
|
2404
|
+
salt2: string;
|
|
2405
|
+
};
|
|
2406
|
+
} | {
|
|
2407
|
+
type: "MoneroGetTxKeyAck";
|
|
2408
|
+
message: {
|
|
2409
|
+
salt?: string | undefined;
|
|
2410
|
+
tx_keys?: string | undefined;
|
|
2411
|
+
tx_derivations?: string | undefined;
|
|
2412
|
+
};
|
|
2413
|
+
} | {
|
|
2414
|
+
type: "MoneroLiveRefreshStartRequest";
|
|
2415
|
+
message: {
|
|
2416
|
+
network_type?: Messages.MoneroNetworkType | undefined;
|
|
2417
|
+
address_n: number[];
|
|
2418
|
+
};
|
|
2419
|
+
} | {
|
|
2420
|
+
type: "MoneroLiveRefreshStartAck";
|
|
2421
|
+
message: {};
|
|
2422
|
+
} | {
|
|
2423
|
+
type: "MoneroLiveRefreshStepRequest";
|
|
2424
|
+
message: {
|
|
2425
|
+
out_key: string;
|
|
2426
|
+
recv_deriv: string;
|
|
2427
|
+
real_out_idx: number;
|
|
2428
|
+
sub_addr_major: number;
|
|
2429
|
+
sub_addr_minor: number;
|
|
2430
|
+
};
|
|
2431
|
+
} | {
|
|
2432
|
+
type: "MoneroLiveRefreshStepAck";
|
|
2433
|
+
message: {
|
|
2434
|
+
salt?: string | undefined;
|
|
2435
|
+
key_image?: string | undefined;
|
|
2436
|
+
};
|
|
2437
|
+
} | {
|
|
2438
|
+
type: "MoneroLiveRefreshFinalRequest";
|
|
2439
|
+
message: {};
|
|
2440
|
+
} | {
|
|
2441
|
+
type: "MoneroLiveRefreshFinalAck";
|
|
2442
|
+
message: {};
|
|
2443
|
+
} | {
|
|
2444
|
+
type: "DebugMoneroDiagRequest";
|
|
2445
|
+
message: {
|
|
2446
|
+
ins?: number | undefined;
|
|
2447
|
+
p1?: number | undefined;
|
|
2448
|
+
p2?: number | undefined;
|
|
2449
|
+
data1?: string | undefined;
|
|
2450
|
+
data2?: string | undefined;
|
|
2451
|
+
pd: number[];
|
|
2452
|
+
};
|
|
2453
|
+
} | {
|
|
2454
|
+
type: "DebugMoneroDiagAck";
|
|
2455
|
+
message: {
|
|
2456
|
+
ins?: number | undefined;
|
|
2457
|
+
p1?: number | undefined;
|
|
2458
|
+
p2?: number | undefined;
|
|
2459
|
+
data1?: string | undefined;
|
|
2460
|
+
data2?: string | undefined;
|
|
2461
|
+
pd: number[];
|
|
2462
|
+
};
|
|
2463
|
+
} | {
|
|
2464
|
+
type: "RippleGetAddress";
|
|
2465
|
+
message: {
|
|
2466
|
+
chunkify?: boolean | undefined;
|
|
2467
|
+
show_display?: boolean | undefined;
|
|
2468
|
+
address_n: number[];
|
|
2469
|
+
};
|
|
2470
|
+
} | {
|
|
2471
|
+
type: "RippleAddress";
|
|
2472
|
+
message: {
|
|
2473
|
+
mac?: string | undefined;
|
|
2474
|
+
address: string;
|
|
2475
|
+
};
|
|
2476
|
+
} | {
|
|
2477
|
+
type: "RippleSignTx";
|
|
2478
|
+
message: {
|
|
2479
|
+
chunkify?: boolean | undefined;
|
|
2480
|
+
payment_req?: {
|
|
2481
|
+
amount?: string | undefined;
|
|
2482
|
+
nonce?: string | undefined;
|
|
2483
|
+
memos?: {
|
|
2484
|
+
text_memo?: {
|
|
2485
|
+
text: string;
|
|
2486
|
+
} | undefined;
|
|
2487
|
+
refund_memo?: {
|
|
2488
|
+
address_n: number[];
|
|
2489
|
+
address: string;
|
|
2490
|
+
mac: string;
|
|
2491
|
+
} | undefined;
|
|
2492
|
+
coin_purchase_memo?: {
|
|
2493
|
+
amount: string;
|
|
2494
|
+
address_n: number[];
|
|
2495
|
+
address: string;
|
|
2496
|
+
mac: string;
|
|
2497
|
+
coin_type: number;
|
|
2498
|
+
} | undefined;
|
|
2499
|
+
text_details_memo?: {
|
|
2500
|
+
text: string;
|
|
2501
|
+
title: string;
|
|
2502
|
+
} | undefined;
|
|
2503
|
+
}[] | undefined;
|
|
2504
|
+
recipient_name: string;
|
|
2505
|
+
signature: string;
|
|
2506
|
+
} | undefined;
|
|
2507
|
+
flags?: number | undefined;
|
|
2508
|
+
last_ledger_sequence?: number | undefined;
|
|
2509
|
+
sequence: number;
|
|
2510
|
+
address_n: number[];
|
|
2511
|
+
fee: string | number;
|
|
2512
|
+
payment: {
|
|
2513
|
+
destination_tag?: number | undefined;
|
|
2514
|
+
amount: string | number;
|
|
2515
|
+
destination: string;
|
|
2516
|
+
};
|
|
2517
|
+
};
|
|
2518
|
+
} | {
|
|
2519
|
+
type: "RippleSignedTx";
|
|
2520
|
+
message: {
|
|
2521
|
+
signature: string;
|
|
2522
|
+
serialized_tx: string;
|
|
2523
|
+
};
|
|
2524
|
+
} | {
|
|
2525
|
+
type: "SolanaGetPublicKey";
|
|
2526
|
+
message: {
|
|
2527
|
+
show_display?: boolean | undefined;
|
|
2528
|
+
address_n: number[];
|
|
2529
|
+
};
|
|
2530
|
+
} | {
|
|
2531
|
+
type: "SolanaPublicKey";
|
|
2532
|
+
message: {
|
|
2533
|
+
public_key: string;
|
|
2534
|
+
};
|
|
2535
|
+
} | {
|
|
2536
|
+
type: "SolanaGetAddress";
|
|
2537
|
+
message: {
|
|
2538
|
+
chunkify?: boolean | undefined;
|
|
2539
|
+
show_display?: boolean | undefined;
|
|
2540
|
+
address_n: number[];
|
|
2541
|
+
};
|
|
2542
|
+
} | {
|
|
2543
|
+
type: "SolanaAddress";
|
|
2544
|
+
message: {
|
|
2545
|
+
mac?: string | undefined;
|
|
2546
|
+
address: string;
|
|
2547
|
+
};
|
|
2548
|
+
} | {
|
|
2549
|
+
type: "SolanaSignTx";
|
|
2550
|
+
message: {
|
|
2551
|
+
payment_req?: {
|
|
2552
|
+
amount?: string | undefined;
|
|
2553
|
+
nonce?: string | undefined;
|
|
2554
|
+
memos?: {
|
|
2555
|
+
text_memo?: {
|
|
2556
|
+
text: string;
|
|
2557
|
+
} | undefined;
|
|
2558
|
+
refund_memo?: {
|
|
2559
|
+
address_n: number[];
|
|
2560
|
+
address: string;
|
|
2561
|
+
mac: string;
|
|
2562
|
+
} | undefined;
|
|
2563
|
+
coin_purchase_memo?: {
|
|
2564
|
+
amount: string;
|
|
2565
|
+
address_n: number[];
|
|
2566
|
+
address: string;
|
|
2567
|
+
mac: string;
|
|
2568
|
+
coin_type: number;
|
|
2569
|
+
} | undefined;
|
|
2570
|
+
text_details_memo?: {
|
|
2571
|
+
text: string;
|
|
2572
|
+
title: string;
|
|
2573
|
+
} | undefined;
|
|
2574
|
+
}[] | undefined;
|
|
2575
|
+
recipient_name: string;
|
|
2576
|
+
signature: string;
|
|
2577
|
+
} | undefined;
|
|
2578
|
+
additional_info?: {
|
|
2579
|
+
encoded_token?: ArrayBuffer | undefined;
|
|
2580
|
+
token_accounts_infos: {
|
|
2581
|
+
base_address: string;
|
|
2582
|
+
token_program: string;
|
|
2583
|
+
token_mint: string;
|
|
2584
|
+
token_account: string;
|
|
2585
|
+
}[];
|
|
2586
|
+
} | undefined;
|
|
2587
|
+
address_n: number[];
|
|
2588
|
+
serialized_tx: string;
|
|
2589
|
+
};
|
|
2590
|
+
} | {
|
|
2591
|
+
type: "SolanaTxSignature";
|
|
2592
|
+
message: {
|
|
2593
|
+
signature: string;
|
|
2594
|
+
};
|
|
2595
|
+
} | {
|
|
2596
|
+
type: "StellarGetAddress";
|
|
2597
|
+
message: {
|
|
2598
|
+
chunkify?: boolean | undefined;
|
|
2599
|
+
show_display?: boolean | undefined;
|
|
2600
|
+
address_n: number[];
|
|
2601
|
+
};
|
|
2602
|
+
} | {
|
|
2603
|
+
type: "StellarAddress";
|
|
2604
|
+
message: {
|
|
2605
|
+
mac?: string | undefined;
|
|
2606
|
+
address: string;
|
|
2607
|
+
};
|
|
2608
|
+
} | {
|
|
2609
|
+
type: "StellarSignTx";
|
|
2610
|
+
message: {
|
|
2611
|
+
payment_req?: {
|
|
2612
|
+
amount?: string | undefined;
|
|
2613
|
+
nonce?: string | undefined;
|
|
2614
|
+
memos?: {
|
|
2615
|
+
text_memo?: {
|
|
2616
|
+
text: string;
|
|
2617
|
+
} | undefined;
|
|
2618
|
+
refund_memo?: {
|
|
2619
|
+
address_n: number[];
|
|
2620
|
+
address: string;
|
|
2621
|
+
mac: string;
|
|
2622
|
+
} | undefined;
|
|
2623
|
+
coin_purchase_memo?: {
|
|
2624
|
+
amount: string;
|
|
2625
|
+
address_n: number[];
|
|
2626
|
+
address: string;
|
|
2627
|
+
mac: string;
|
|
2628
|
+
coin_type: number;
|
|
2629
|
+
} | undefined;
|
|
2630
|
+
text_details_memo?: {
|
|
2631
|
+
text: string;
|
|
2632
|
+
title: string;
|
|
2633
|
+
} | undefined;
|
|
2634
|
+
}[] | undefined;
|
|
2635
|
+
recipient_name: string;
|
|
2636
|
+
signature: string;
|
|
2637
|
+
} | undefined;
|
|
2638
|
+
memo_text?: string | undefined;
|
|
2639
|
+
memo_id?: string | number | undefined;
|
|
2640
|
+
memo_hash?: string | Buffer<ArrayBufferLike> | undefined;
|
|
2641
|
+
address_n: number[];
|
|
2642
|
+
fee: string | number;
|
|
2643
|
+
network_passphrase: string;
|
|
2644
|
+
source_account: string;
|
|
2645
|
+
sequence_number: string | number;
|
|
2646
|
+
timebounds_start: number;
|
|
2647
|
+
timebounds_end: number;
|
|
2648
|
+
memo_type: Messages.StellarMemoType;
|
|
2649
|
+
num_operations: number;
|
|
2650
|
+
};
|
|
2651
|
+
} | {
|
|
2652
|
+
type: "StellarTxOpRequest";
|
|
2653
|
+
message: {};
|
|
2654
|
+
} | {
|
|
2655
|
+
type: "StellarPaymentOp";
|
|
2656
|
+
message: {
|
|
2657
|
+
source_account?: string | undefined;
|
|
2658
|
+
amount: string | number;
|
|
2659
|
+
destination_account: string;
|
|
2660
|
+
asset: {
|
|
2661
|
+
code?: string | undefined;
|
|
2662
|
+
issuer?: string | undefined;
|
|
2663
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2664
|
+
};
|
|
2665
|
+
};
|
|
2666
|
+
} | {
|
|
2667
|
+
type: "StellarCreateAccountOp";
|
|
2668
|
+
message: {
|
|
2669
|
+
source_account?: string | undefined;
|
|
2670
|
+
new_account: string;
|
|
2671
|
+
starting_balance: string | number;
|
|
2672
|
+
};
|
|
2673
|
+
} | {
|
|
2674
|
+
type: "StellarPathPaymentStrictReceiveOp";
|
|
2675
|
+
message: {
|
|
2676
|
+
source_account?: string | undefined;
|
|
2677
|
+
paths?: {
|
|
2678
|
+
code?: string | undefined;
|
|
2679
|
+
issuer?: string | undefined;
|
|
2680
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2681
|
+
}[] | undefined;
|
|
2682
|
+
destination_account: string;
|
|
2683
|
+
send_asset: {
|
|
2684
|
+
code?: string | undefined;
|
|
2685
|
+
issuer?: string | undefined;
|
|
2686
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2687
|
+
};
|
|
2688
|
+
send_max: string | number;
|
|
2689
|
+
destination_asset: {
|
|
2690
|
+
code?: string | undefined;
|
|
2691
|
+
issuer?: string | undefined;
|
|
2692
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2693
|
+
};
|
|
2694
|
+
destination_amount: string | number;
|
|
2695
|
+
};
|
|
2696
|
+
} | {
|
|
2697
|
+
type: "StellarPathPaymentStrictSendOp";
|
|
2698
|
+
message: {
|
|
2699
|
+
source_account?: string | undefined;
|
|
2700
|
+
paths?: {
|
|
2701
|
+
code?: string | undefined;
|
|
2702
|
+
issuer?: string | undefined;
|
|
2703
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2704
|
+
}[] | undefined;
|
|
2705
|
+
destination_account: string;
|
|
2706
|
+
send_asset: {
|
|
2707
|
+
code?: string | undefined;
|
|
2708
|
+
issuer?: string | undefined;
|
|
2709
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2710
|
+
};
|
|
2711
|
+
destination_asset: {
|
|
2712
|
+
code?: string | undefined;
|
|
2713
|
+
issuer?: string | undefined;
|
|
2714
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2715
|
+
};
|
|
2716
|
+
send_amount: string | number;
|
|
2717
|
+
destination_min: string | number;
|
|
2718
|
+
};
|
|
2719
|
+
} | {
|
|
2720
|
+
type: "StellarManageSellOfferOp";
|
|
2721
|
+
message: {
|
|
2722
|
+
source_account?: string | undefined;
|
|
2723
|
+
amount: string | number;
|
|
2724
|
+
selling_asset: {
|
|
2725
|
+
code?: string | undefined;
|
|
2726
|
+
issuer?: string | undefined;
|
|
2727
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2728
|
+
};
|
|
2729
|
+
buying_asset: {
|
|
2730
|
+
code?: string | undefined;
|
|
2731
|
+
issuer?: string | undefined;
|
|
2732
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2733
|
+
};
|
|
2734
|
+
price_n: number;
|
|
2735
|
+
price_d: number;
|
|
2736
|
+
offer_id: string | number;
|
|
2737
|
+
};
|
|
2738
|
+
} | {
|
|
2739
|
+
type: "StellarManageBuyOfferOp";
|
|
2740
|
+
message: {
|
|
2741
|
+
source_account?: string | undefined;
|
|
2742
|
+
amount: string | number;
|
|
2743
|
+
selling_asset: {
|
|
2744
|
+
code?: string | undefined;
|
|
2745
|
+
issuer?: string | undefined;
|
|
2746
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2747
|
+
};
|
|
2748
|
+
buying_asset: {
|
|
2749
|
+
code?: string | undefined;
|
|
2750
|
+
issuer?: string | undefined;
|
|
2751
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2752
|
+
};
|
|
2753
|
+
price_n: number;
|
|
2754
|
+
price_d: number;
|
|
2755
|
+
offer_id: string | number;
|
|
2756
|
+
};
|
|
2757
|
+
} | {
|
|
2758
|
+
type: "StellarCreatePassiveSellOfferOp";
|
|
2759
|
+
message: {
|
|
2760
|
+
source_account?: string | undefined;
|
|
2761
|
+
amount: string | number;
|
|
2762
|
+
selling_asset: {
|
|
2763
|
+
code?: string | undefined;
|
|
2764
|
+
issuer?: string | undefined;
|
|
2765
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2766
|
+
};
|
|
2767
|
+
buying_asset: {
|
|
2768
|
+
code?: string | undefined;
|
|
2769
|
+
issuer?: string | undefined;
|
|
2770
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2771
|
+
};
|
|
2772
|
+
price_n: number;
|
|
2773
|
+
price_d: number;
|
|
2774
|
+
};
|
|
2775
|
+
} | {
|
|
2776
|
+
type: "StellarSetOptionsOp";
|
|
2777
|
+
message: {
|
|
2778
|
+
source_account?: string | undefined;
|
|
2779
|
+
inflation_destination_account?: string | undefined;
|
|
2780
|
+
clear_flags?: number | undefined;
|
|
2781
|
+
set_flags?: number | undefined;
|
|
2782
|
+
master_weight?: string | number | undefined;
|
|
2783
|
+
low_threshold?: string | number | undefined;
|
|
2784
|
+
medium_threshold?: string | number | undefined;
|
|
2785
|
+
high_threshold?: string | number | undefined;
|
|
2786
|
+
home_domain?: string | undefined;
|
|
2787
|
+
signer_type?: Messages.StellarSignerType | undefined;
|
|
2788
|
+
signer_key?: string | Buffer<ArrayBufferLike> | undefined;
|
|
2789
|
+
signer_weight?: number | undefined;
|
|
2790
|
+
};
|
|
2791
|
+
} | {
|
|
2792
|
+
type: "StellarChangeTrustOp";
|
|
2793
|
+
message: {
|
|
2794
|
+
source_account?: string | undefined;
|
|
2795
|
+
asset: {
|
|
2796
|
+
code?: string | undefined;
|
|
2797
|
+
issuer?: string | undefined;
|
|
2798
|
+
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
2799
|
+
};
|
|
2800
|
+
limit: string | number;
|
|
2801
|
+
};
|
|
2802
|
+
} | {
|
|
2803
|
+
type: "StellarAllowTrustOp";
|
|
2804
|
+
message: {
|
|
2805
|
+
source_account?: string | undefined;
|
|
2806
|
+
asset_code?: string | undefined;
|
|
2807
|
+
trusted_account: string;
|
|
2808
|
+
asset_type: Messages.StellarAssetType;
|
|
2809
|
+
is_authorized: boolean;
|
|
2810
|
+
};
|
|
2811
|
+
} | {
|
|
2812
|
+
type: "StellarAccountMergeOp";
|
|
2813
|
+
message: {
|
|
2814
|
+
source_account?: string | undefined;
|
|
2815
|
+
destination_account: string;
|
|
2816
|
+
};
|
|
2817
|
+
} | {
|
|
2818
|
+
type: "StellarManageDataOp";
|
|
2819
|
+
message: {
|
|
2820
|
+
value?: string | Buffer<ArrayBufferLike> | undefined;
|
|
2821
|
+
source_account?: string | undefined;
|
|
2822
|
+
key: string;
|
|
2823
|
+
};
|
|
2824
|
+
} | {
|
|
2825
|
+
type: "StellarBumpSequenceOp";
|
|
2826
|
+
message: {
|
|
2827
|
+
source_account?: string | undefined;
|
|
2828
|
+
bump_to: string | number;
|
|
2829
|
+
};
|
|
2830
|
+
} | {
|
|
2831
|
+
type: "StellarClaimClaimableBalanceOp";
|
|
2832
|
+
message: {
|
|
2833
|
+
source_account?: string | undefined;
|
|
2834
|
+
balance_id: string;
|
|
2835
|
+
};
|
|
2836
|
+
} | {
|
|
2837
|
+
type: "StellarSignedTx";
|
|
2838
|
+
message: {
|
|
2839
|
+
public_key: string;
|
|
2840
|
+
signature: string;
|
|
2841
|
+
};
|
|
2842
|
+
} | {
|
|
2843
|
+
type: "TelemetryGet";
|
|
2844
|
+
message: {};
|
|
2845
|
+
} | {
|
|
2846
|
+
type: "Telemetry";
|
|
2847
|
+
message: {
|
|
2848
|
+
min_temp_c?: number | undefined;
|
|
2849
|
+
max_temp_c?: number | undefined;
|
|
2850
|
+
battery_errors?: number | undefined;
|
|
2851
|
+
battery_cycles?: number | undefined;
|
|
2852
|
+
};
|
|
2853
|
+
} | {
|
|
2854
|
+
type: "TezosGetAddress";
|
|
2855
|
+
message: {
|
|
2856
|
+
chunkify?: boolean | undefined;
|
|
2857
|
+
show_display?: boolean | undefined;
|
|
2858
|
+
address_n: number[];
|
|
2859
|
+
};
|
|
2860
|
+
} | {
|
|
2861
|
+
type: "TezosAddress";
|
|
2862
|
+
message: {
|
|
2863
|
+
mac?: string | undefined;
|
|
2864
|
+
address: string;
|
|
2865
|
+
};
|
|
2866
|
+
} | {
|
|
2867
|
+
type: "TezosGetPublicKey";
|
|
2868
|
+
message: {
|
|
2869
|
+
chunkify?: boolean | undefined;
|
|
2870
|
+
show_display?: boolean | undefined;
|
|
2871
|
+
address_n: number[];
|
|
2872
|
+
};
|
|
2873
|
+
} | {
|
|
2874
|
+
type: "TezosPublicKey";
|
|
2875
|
+
message: {
|
|
2876
|
+
public_key: string;
|
|
2877
|
+
};
|
|
2878
|
+
} | {
|
|
2879
|
+
type: "TezosSignTx";
|
|
2880
|
+
message: {
|
|
2881
|
+
chunkify?: boolean | undefined;
|
|
2882
|
+
reveal?: {
|
|
2883
|
+
public_key: Uint8Array<ArrayBufferLike>;
|
|
2884
|
+
fee: string | number;
|
|
2885
|
+
gas_limit: number;
|
|
2886
|
+
source: Uint8Array<ArrayBufferLike>;
|
|
2887
|
+
counter: number;
|
|
2888
|
+
storage_limit: number;
|
|
2889
|
+
} | undefined;
|
|
2890
|
+
transaction?: {
|
|
2891
|
+
parameters?: number[] | undefined;
|
|
2892
|
+
parameters_manager?: {
|
|
2893
|
+
transfer?: {
|
|
2894
|
+
amount: string | number;
|
|
2895
|
+
destination: {
|
|
2896
|
+
hash: Uint8Array<ArrayBufferLike>;
|
|
2897
|
+
tag: number;
|
|
2898
|
+
};
|
|
2899
|
+
} | undefined;
|
|
2900
|
+
set_delegate?: Uint8Array<ArrayBufferLike> | undefined;
|
|
2901
|
+
cancel_delegate?: boolean | undefined;
|
|
2902
|
+
} | undefined;
|
|
2903
|
+
amount: string | number;
|
|
2904
|
+
fee: string | number;
|
|
2905
|
+
gas_limit: number;
|
|
2906
|
+
destination: {
|
|
2907
|
+
hash: Uint8Array<ArrayBufferLike>;
|
|
2908
|
+
tag: number;
|
|
2909
|
+
};
|
|
2910
|
+
source: Uint8Array<ArrayBufferLike>;
|
|
2911
|
+
counter: number;
|
|
2912
|
+
storage_limit: number;
|
|
2913
|
+
} | undefined;
|
|
2914
|
+
origination?: {
|
|
2915
|
+
delegate?: Uint8Array<ArrayBufferLike> | undefined;
|
|
2916
|
+
manager_pubkey?: string | undefined;
|
|
2917
|
+
spendable?: boolean | undefined;
|
|
2918
|
+
delegatable?: boolean | undefined;
|
|
2919
|
+
script: string | number[];
|
|
2920
|
+
fee: string | number;
|
|
2921
|
+
gas_limit: number;
|
|
2922
|
+
balance: number;
|
|
2923
|
+
source: Uint8Array<ArrayBufferLike>;
|
|
2924
|
+
counter: number;
|
|
2925
|
+
storage_limit: number;
|
|
2926
|
+
} | undefined;
|
|
2927
|
+
delegation?: {
|
|
2928
|
+
fee: string | number;
|
|
2929
|
+
delegate: Uint8Array<ArrayBufferLike>;
|
|
2930
|
+
gas_limit: number;
|
|
2931
|
+
source: Uint8Array<ArrayBufferLike>;
|
|
2932
|
+
counter: number;
|
|
2933
|
+
storage_limit: number;
|
|
2934
|
+
} | undefined;
|
|
2935
|
+
proposal?: {
|
|
2936
|
+
source: string;
|
|
2937
|
+
period: number;
|
|
2938
|
+
proposals: string[];
|
|
2939
|
+
} | undefined;
|
|
2940
|
+
ballot?: {
|
|
2941
|
+
proposal: string;
|
|
2942
|
+
ballot: Messages.TezosBallotType;
|
|
2943
|
+
source: string;
|
|
2944
|
+
period: number;
|
|
2945
|
+
} | undefined;
|
|
2946
|
+
address_n: number[];
|
|
2947
|
+
branch: Uint8Array<ArrayBufferLike>;
|
|
2948
|
+
};
|
|
2949
|
+
} | {
|
|
2950
|
+
type: "TezosSignedTx";
|
|
2951
|
+
message: {
|
|
2952
|
+
signature: string;
|
|
2953
|
+
sig_op_contents: string;
|
|
2954
|
+
operation_hash: string;
|
|
2955
|
+
};
|
|
2956
|
+
} | {
|
|
2957
|
+
type: "ThpCreateNewSession";
|
|
2958
|
+
message: {
|
|
2959
|
+
derive_cardano?: boolean | undefined;
|
|
2960
|
+
} & ({
|
|
2961
|
+
on_device?: undefined;
|
|
2962
|
+
passphrase: string;
|
|
2963
|
+
} | {
|
|
2964
|
+
passphrase?: undefined;
|
|
2965
|
+
on_device: boolean;
|
|
2966
|
+
});
|
|
2967
|
+
} | {
|
|
2968
|
+
type: "ThpPairingRequest";
|
|
2969
|
+
message: {
|
|
2970
|
+
host_name: string;
|
|
2971
|
+
app_name: string;
|
|
2972
|
+
};
|
|
2973
|
+
} | {
|
|
2974
|
+
type: "ThpPairingRequestApproved";
|
|
2975
|
+
message: {};
|
|
2976
|
+
} | {
|
|
2977
|
+
type: "ThpSelectMethod";
|
|
2978
|
+
message: {
|
|
2979
|
+
selected_pairing_method: Messages.ThpPairingMethod;
|
|
2980
|
+
};
|
|
2981
|
+
} | {
|
|
2982
|
+
type: "ThpPairingPreparationsFinished";
|
|
2983
|
+
message: {};
|
|
2984
|
+
} | {
|
|
2985
|
+
type: "ThpCodeEntryCommitment";
|
|
2986
|
+
message: {
|
|
2987
|
+
commitment: string;
|
|
2988
|
+
};
|
|
2989
|
+
} | {
|
|
2990
|
+
type: "ThpCodeEntryChallenge";
|
|
2991
|
+
message: {
|
|
2992
|
+
challenge: string;
|
|
2993
|
+
};
|
|
2994
|
+
} | {
|
|
2995
|
+
type: "ThpCodeEntryCpaceTrezor";
|
|
2996
|
+
message: {
|
|
2997
|
+
cpace_trezor_public_key: string;
|
|
2998
|
+
};
|
|
2999
|
+
} | {
|
|
3000
|
+
type: "ThpCodeEntryCpaceHostTag";
|
|
3001
|
+
message: {
|
|
3002
|
+
cpace_host_public_key: string;
|
|
3003
|
+
tag: string;
|
|
3004
|
+
};
|
|
3005
|
+
} | {
|
|
3006
|
+
type: "ThpCodeEntrySecret";
|
|
3007
|
+
message: {
|
|
3008
|
+
secret: string;
|
|
3009
|
+
};
|
|
3010
|
+
} | {
|
|
3011
|
+
type: "ThpQrCodeTag";
|
|
3012
|
+
message: {
|
|
3013
|
+
tag: string;
|
|
3014
|
+
};
|
|
3015
|
+
} | {
|
|
3016
|
+
type: "ThpQrCodeSecret";
|
|
3017
|
+
message: {
|
|
3018
|
+
secret: string;
|
|
3019
|
+
};
|
|
3020
|
+
} | {
|
|
3021
|
+
type: "ThpNfcTagHost";
|
|
3022
|
+
message: {
|
|
3023
|
+
tag: string;
|
|
3024
|
+
};
|
|
3025
|
+
} | {
|
|
3026
|
+
type: "ThpNfcTagTrezor";
|
|
3027
|
+
message: {
|
|
3028
|
+
tag: string;
|
|
3029
|
+
};
|
|
3030
|
+
} | {
|
|
3031
|
+
type: "ThpCredentialRequest";
|
|
3032
|
+
message: {
|
|
3033
|
+
autoconnect?: boolean | undefined;
|
|
3034
|
+
credential?: string | undefined;
|
|
3035
|
+
host_static_public_key: string;
|
|
3036
|
+
};
|
|
3037
|
+
} | {
|
|
3038
|
+
type: "ThpCredentialResponse";
|
|
3039
|
+
message: {
|
|
3040
|
+
credential: string;
|
|
3041
|
+
trezor_static_public_key: string;
|
|
3042
|
+
};
|
|
3043
|
+
} | {
|
|
3044
|
+
type: "ThpEndRequest";
|
|
3045
|
+
message: {};
|
|
3046
|
+
} | {
|
|
3047
|
+
type: "ThpEndResponse";
|
|
3048
|
+
message: {};
|
|
3049
|
+
} | {
|
|
3050
|
+
type: "TronGetAddress";
|
|
3051
|
+
message: {
|
|
3052
|
+
chunkify?: boolean | undefined;
|
|
3053
|
+
show_display?: boolean | undefined;
|
|
3054
|
+
address_n: number[];
|
|
3055
|
+
};
|
|
3056
|
+
} | {
|
|
3057
|
+
type: "TronAddress";
|
|
3058
|
+
message: {
|
|
3059
|
+
mac?: string | undefined;
|
|
3060
|
+
address: string;
|
|
3061
|
+
};
|
|
3062
|
+
} | {
|
|
3063
|
+
type: "TronSignTx";
|
|
3064
|
+
message: {
|
|
3065
|
+
data?: string | undefined;
|
|
3066
|
+
fee_limit?: number | undefined;
|
|
3067
|
+
address_n: number[];
|
|
3068
|
+
timestamp: number;
|
|
3069
|
+
ref_block_bytes: string;
|
|
3070
|
+
ref_block_hash: string;
|
|
3071
|
+
expiration: number;
|
|
3072
|
+
};
|
|
3073
|
+
} | {
|
|
3074
|
+
type: "TronContractRequest";
|
|
3075
|
+
message: {};
|
|
3076
|
+
} | {
|
|
3077
|
+
type: "TronTransferContract";
|
|
3078
|
+
message: {
|
|
3079
|
+
amount: string | number;
|
|
3080
|
+
owner_address: string;
|
|
3081
|
+
to_address: string;
|
|
3082
|
+
};
|
|
3083
|
+
} | {
|
|
3084
|
+
type: "TronVoteWitnessContract";
|
|
3085
|
+
message: {
|
|
3086
|
+
owner_address: string;
|
|
3087
|
+
votes: {
|
|
3088
|
+
address: string;
|
|
3089
|
+
count: number;
|
|
3090
|
+
}[];
|
|
3091
|
+
};
|
|
3092
|
+
} | {
|
|
3093
|
+
type: "TronTriggerSmartContract";
|
|
3094
|
+
message: {
|
|
3095
|
+
data: string;
|
|
3096
|
+
owner_address: string;
|
|
3097
|
+
contract_address: string;
|
|
3098
|
+
};
|
|
3099
|
+
} | {
|
|
3100
|
+
type: "TronFreezeBalanceV2Contract";
|
|
3101
|
+
message: {
|
|
3102
|
+
resource?: Messages.TronResourceCode | undefined;
|
|
3103
|
+
owner_address: string;
|
|
3104
|
+
balance: number;
|
|
3105
|
+
};
|
|
3106
|
+
} | {
|
|
3107
|
+
type: "TronUnfreezeBalanceV2Contract";
|
|
3108
|
+
message: {
|
|
3109
|
+
resource?: Messages.TronResourceCode | undefined;
|
|
3110
|
+
owner_address: string;
|
|
3111
|
+
balance: number;
|
|
3112
|
+
};
|
|
3113
|
+
} | {
|
|
3114
|
+
type: "TronWithdrawUnfreeze";
|
|
3115
|
+
message: {
|
|
3116
|
+
owner_address: string;
|
|
3117
|
+
};
|
|
3118
|
+
} | {
|
|
3119
|
+
type: "TronSignature";
|
|
3120
|
+
message: {
|
|
3121
|
+
signature: string;
|
|
3122
|
+
};
|
|
3123
|
+
} | {
|
|
3124
|
+
type: "ThpCreateNewSession";
|
|
3125
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpCreateNewSession;
|
|
3126
|
+
} | {
|
|
3127
|
+
type: "ThpPairingRequest";
|
|
3128
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpPairingRequest;
|
|
3129
|
+
} | {
|
|
3130
|
+
type: "ThpPairingRequestApproved";
|
|
3131
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpPairingRequestApproved;
|
|
3132
|
+
} | {
|
|
3133
|
+
type: "ThpSelectMethod";
|
|
3134
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpSelectMethod;
|
|
3135
|
+
} | {
|
|
3136
|
+
type: "ThpPairingPreparationsFinished";
|
|
3137
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpPairingPreparationsFinished;
|
|
3138
|
+
} | {
|
|
3139
|
+
type: "ThpCodeEntryCommitment";
|
|
3140
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpCodeEntryCommitment;
|
|
3141
|
+
} | {
|
|
3142
|
+
type: "ThpCodeEntryChallenge";
|
|
3143
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpCodeEntryChallenge;
|
|
3144
|
+
} | {
|
|
3145
|
+
type: "ThpCodeEntryCpaceTrezor";
|
|
3146
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpCodeEntryCpaceTrezor;
|
|
3147
|
+
} | {
|
|
3148
|
+
type: "ThpCodeEntryCpaceHostTag";
|
|
3149
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpCodeEntryCpaceHostTag;
|
|
3150
|
+
} | {
|
|
3151
|
+
type: "ThpCodeEntrySecret";
|
|
3152
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpCodeEntrySecret;
|
|
3153
|
+
} | {
|
|
3154
|
+
type: "ThpQrCodeTag";
|
|
3155
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpQrCodeTag;
|
|
3156
|
+
} | {
|
|
3157
|
+
type: "ThpQrCodeSecret";
|
|
3158
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpQrCodeSecret;
|
|
3159
|
+
} | {
|
|
3160
|
+
type: "ThpNfcTagHost";
|
|
3161
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpNfcTagHost;
|
|
3162
|
+
} | {
|
|
3163
|
+
type: "ThpNfcTagTrezor";
|
|
3164
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpNfcTagTrezor;
|
|
3165
|
+
} | {
|
|
3166
|
+
type: "ThpCredentialRequest";
|
|
3167
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpCredentialRequest;
|
|
3168
|
+
} | {
|
|
3169
|
+
type: "ThpCredentialResponse";
|
|
3170
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpCredentialResponse;
|
|
3171
|
+
} | {
|
|
3172
|
+
type: "ThpEndRequest";
|
|
3173
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpEndRequest;
|
|
3174
|
+
} | {
|
|
3175
|
+
type: "ThpEndResponse";
|
|
3176
|
+
message: import("@trezor/protocol/libESM/protocol-thp").ThpEndResponse;
|
|
3177
|
+
}>;
|
|
3178
|
+
private callLoop;
|
|
3179
|
+
call(name: string, data: Record<string, unknown>, options?: AbortableOptions): Promise<{
|
|
3180
|
+
success: false;
|
|
3181
|
+
error: Error;
|
|
3182
|
+
} | {
|
|
3183
|
+
success: true;
|
|
3184
|
+
payload: MessageResponse;
|
|
3185
|
+
}>;
|
|
3186
|
+
send(name: string, data: Record<string, unknown>, options?: AbortableOptions): Promise<{
|
|
3187
|
+
success: false;
|
|
3188
|
+
error: Error;
|
|
3189
|
+
} | {
|
|
3190
|
+
success: true;
|
|
3191
|
+
payload: undefined;
|
|
3192
|
+
}>;
|
|
3193
|
+
receive(options?: AbortableOptions): Promise<{
|
|
3194
|
+
success: false;
|
|
3195
|
+
error: Error;
|
|
3196
|
+
} | {
|
|
3197
|
+
success: true;
|
|
3198
|
+
payload: MessageResponse;
|
|
3199
|
+
}>;
|
|
3200
|
+
cancelCall(): Promise<{
|
|
3201
|
+
success: false;
|
|
3202
|
+
error: Error;
|
|
3203
|
+
} | {
|
|
3204
|
+
success: true;
|
|
3205
|
+
payload: MessageResponse;
|
|
3206
|
+
}>;
|
|
3207
|
+
abort(reason: Error): Promise<void>;
|
|
3208
|
+
}
|