@trezor/connect 10.0.0-alpha.1 → 10.0.0-beta.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 +112 -63
- package/README.md +2 -2
- package/lib/api/applyFlags.d.ts +20 -0
- package/lib/api/applyFlags.js +38 -0
- package/lib/api/applySettings.d.ts +20 -0
- package/lib/api/applySettings.js +57 -0
- package/lib/api/authenticateDevice.d.ts +25 -0
- package/lib/api/authenticateDevice.js +195 -0
- package/lib/api/authorizeCoinjoin.d.ts +11 -0
- package/lib/api/authorizeCoinjoin.js +44 -0
- package/lib/api/backupDevice.d.ts +19 -0
- package/lib/api/backupDevice.js +39 -0
- package/lib/api/bitcoin/TransactionComposer.d.ts +46 -0
- package/lib/api/bitcoin/TransactionComposer.js +147 -0
- package/lib/api/bitcoin/createPendingTx.d.ts +37 -0
- package/lib/api/bitcoin/createPendingTx.js +55 -0
- package/lib/api/bitcoin/enhanceSignTx.d.ts +2 -0
- package/lib/api/bitcoin/enhanceSignTx.js +23 -0
- package/lib/api/bitcoin/index.d.ts +9 -0
- package/lib/api/bitcoin/index.js +9 -0
- package/lib/api/bitcoin/inputs.d.ts +4 -0
- package/lib/api/bitcoin/inputs.js +63 -0
- package/lib/api/bitcoin/outputs.d.ts +5 -0
- package/lib/api/bitcoin/outputs.js +128 -0
- package/lib/api/bitcoin/refTx.d.ts +23 -0
- package/lib/api/bitcoin/refTx.js +249 -0
- package/lib/api/bitcoin/signtx.d.ts +30 -0
- package/lib/api/bitcoin/signtx.js +229 -0
- package/lib/api/bitcoin/signtxLegacy.d.ts +10 -0
- package/lib/api/bitcoin/signtxLegacy.js +186 -0
- package/lib/api/bitcoin/signtxVerify.d.ts +12 -0
- package/lib/api/bitcoin/signtxVerify.js +95 -0
- package/lib/api/bitcoin/transactionBytes.d.ts +3 -0
- package/lib/api/bitcoin/transactionBytes.js +65 -0
- package/lib/api/bleUnpair.d.ts +11 -0
- package/lib/api/bleUnpair.js +37 -0
- package/lib/api/blockchainDisconnect.d.ts +16 -0
- package/lib/api/blockchainDisconnect.js +37 -0
- package/lib/api/blockchainEstimateFee.d.ts +16 -0
- package/lib/api/blockchainEstimateFee.js +102 -0
- package/lib/api/blockchainEvmRpcCall.d.ts +19 -0
- package/lib/api/blockchainEvmRpcCall.js +57 -0
- package/lib/api/blockchainGetAccountBalanceHistory.d.ts +16 -0
- package/lib/api/blockchainGetAccountBalanceHistory.js +60 -0
- package/lib/api/blockchainGetContractInfo.d.ts +16 -0
- package/lib/api/blockchainGetContractInfo.js +46 -0
- package/lib/api/blockchainGetCurrentFiatRates.d.ts +20 -0
- package/lib/api/blockchainGetCurrentFiatRates.js +49 -0
- package/lib/api/blockchainGetFiatRatesForTimestamps.d.ts +23 -0
- package/lib/api/blockchainGetFiatRatesForTimestamps.js +55 -0
- package/lib/api/blockchainGetInfo.d.ts +15 -0
- package/lib/api/blockchainGetInfo.js +37 -0
- package/lib/api/blockchainGetTransactions.d.ts +18 -0
- package/lib/api/blockchainGetTransactions.js +47 -0
- package/lib/api/blockchainSetCustomBackend.d.ts +17 -0
- package/lib/api/blockchainSetCustomBackend.js +43 -0
- package/lib/api/blockchainSubscribe.d.ts +19 -0
- package/lib/api/blockchainSubscribe.js +66 -0
- package/lib/api/blockchainSubscribeFiatRates.d.ts +19 -0
- package/lib/api/blockchainSubscribeFiatRates.js +43 -0
- package/lib/api/blockchainUnsubscribe.d.ts +19 -0
- package/lib/api/blockchainUnsubscribe.js +66 -0
- package/lib/api/blockchainUnsubscribeFiatRates.d.ts +17 -0
- package/lib/api/blockchainUnsubscribeFiatRates.js +37 -0
- package/lib/api/blockchainValidateEvmRpcUrl.d.ts +17 -0
- package/lib/api/blockchainValidateEvmRpcUrl.js +54 -0
- package/lib/api/cancelCoinjoinAuthorization.d.ts +11 -0
- package/lib/api/cancelCoinjoinAuthorization.js +33 -0
- package/lib/api/cardano/api/cardanoComposeTransaction.d.ts +10 -0
- package/lib/api/cardano/api/cardanoComposeTransaction.js +84 -0
- package/lib/api/cardano/api/cardanoGetAddress.d.ts +34 -0
- package/lib/api/cardano/api/cardanoGetAddress.js +130 -0
- package/lib/api/cardano/api/cardanoGetNativeScriptHash.d.ts +12 -0
- package/lib/api/cardano/api/cardanoGetNativeScriptHash.js +66 -0
- package/lib/api/cardano/api/cardanoGetPublicKey.d.ts +22 -0
- package/lib/api/cardano/api/cardanoGetPublicKey.js +92 -0
- package/lib/api/cardano/api/cardanoSignMessage.d.ts +22 -0
- package/lib/api/cardano/api/cardanoSignMessage.js +90 -0
- package/lib/api/cardano/api/cardanoSignTransaction.d.ts +81 -0
- package/lib/api/cardano/api/cardanoSignTransaction.js +301 -0
- package/lib/api/cardano/api/index.d.ts +6 -0
- package/lib/api/cardano/api/index.js +6 -0
- package/lib/api/cardano/cardanoAddressParameters.d.ts +6 -0
- package/lib/api/cardano/cardanoAddressParameters.js +79 -0
- package/lib/api/cardano/cardanoAuxiliaryData.d.ts +4 -0
- package/lib/api/cardano/cardanoAuxiliaryData.js +74 -0
- package/lib/api/cardano/cardanoCertificate.d.ts +13 -0
- package/lib/api/cardano/cardanoCertificate.js +142 -0
- package/lib/api/cardano/cardanoInputs.d.ts +25 -0
- package/lib/api/cardano/cardanoInputs.js +39 -0
- package/lib/api/cardano/cardanoOutputs.d.ts +40 -0
- package/lib/api/cardano/cardanoOutputs.js +70 -0
- package/lib/api/cardano/cardanoTokenBundle.d.ts +12 -0
- package/lib/api/cardano/cardanoUtils.d.ts +17 -0
- package/lib/api/cardano/cardanoUtils.js +100 -0
- package/lib/api/cardano/cardanoWitnesses.d.ts +4 -0
- package/lib/api/changeLanguage.d.ts +18 -0
- package/lib/api/changeLanguage.js +49 -0
- package/lib/api/changePin.d.ts +11 -0
- package/lib/api/changePin.js +27 -0
- package/lib/api/changeWipeCode.d.ts +11 -0
- package/lib/api/changeWipeCode.js +29 -0
- package/lib/api/cipherKeyValue.d.ts +17 -0
- package/lib/api/cipherKeyValue.js +58 -0
- package/lib/api/common/AbstractMiscGetAddress.d.ts +37 -0
- package/lib/api/common/AbstractMiscGetAddress.js +126 -0
- package/lib/api/common/Discovery.d.ts +33 -0
- package/lib/api/common/Discovery.js +119 -0
- package/lib/api/common/paramsValidator.d.ts +24 -0
- package/lib/api/common/paramsValidator.js +136 -0
- package/lib/api/common/requestExistingAccounts.d.ts +14 -0
- package/lib/api/common/requestExistingAccounts.js +20 -0
- package/lib/api/composeTransaction.d.ts +36 -0
- package/lib/api/composeTransaction.js +404 -0
- package/lib/api/discoverAccounts.d.ts +40 -0
- package/lib/api/discoverAccounts.js +360 -0
- package/lib/api/ethereum/api/ethereumGetAddress.d.ts +30 -0
- package/lib/api/ethereum/api/ethereumGetAddress.js +150 -0
- package/lib/api/ethereum/api/ethereumGetPublicKey.d.ts +52 -0
- package/lib/api/ethereum/api/ethereumGetPublicKey.js +100 -0
- package/lib/api/ethereum/api/ethereumSignMessage.d.ts +27 -0
- package/lib/api/ethereum/api/ethereumSignMessage.js +64 -0
- package/lib/api/ethereum/api/ethereumSignTransaction.d.ts +83 -0
- package/lib/api/ethereum/api/ethereumSignTransaction.js +148 -0
- package/lib/api/ethereum/api/ethereumSignTypedData.d.ts +117 -0
- package/lib/api/ethereum/api/ethereumSignTypedData.js +203 -0
- package/lib/api/ethereum/api/ethereumVerifyMessage.d.ts +12 -0
- package/lib/api/ethereum/api/ethereumVerifyMessage.js +35 -0
- package/lib/api/ethereum/api/index.d.ts +6 -0
- package/lib/api/ethereum/api/index.js +6 -0
- package/lib/api/ethereum/ethereumDefinitions.d.ts +53 -0
- package/lib/api/ethereum/ethereumDefinitions.js +135 -0
- package/lib/api/ethereum/ethereumSignTx.d.ts +16 -0
- package/lib/api/ethereum/ethereumSignTx.js +144 -0
- package/lib/api/ethereum/ethereumSignTypedData.d.ts +32 -0
- package/lib/api/ethereum/ethereumSignTypedData.js +175 -0
- package/lib/api/evoluGetDelegatedIdentityKey.d.ts +14 -0
- package/lib/api/evoluGetDelegatedIdentityKey.js +29 -0
- package/lib/api/evoluGetNode.d.ts +13 -0
- package/lib/api/evoluGetNode.js +29 -0
- package/lib/api/evoluSignRegistrationRequest.d.ts +16 -0
- package/lib/api/evoluSignRegistrationRequest.js +33 -0
- package/lib/api/firmware/calculateFirmwareHash.d.ts +18 -0
- package/lib/api/firmware/calculateXPubHash.d.ts +14 -0
- package/lib/api/firmware/calculateXPubHash.js +16 -0
- package/lib/api/firmware/getBinary.d.ts +14 -0
- package/lib/api/firmware/getBinary.js +33 -0
- package/lib/api/firmware/index.d.ts +6 -0
- package/lib/api/firmware/index.js +6 -0
- package/lib/api/firmware/modifyFirmware.d.ts +3 -0
- package/lib/api/firmware/parseFirmwareHeaders.d.ts +4 -0
- package/lib/api/firmware/uploadFirmware.d.ts +27 -0
- package/lib/api/firmware/uploadFirmware.js +99 -0
- package/lib/api/firmware/verifyEntropy.d.ts +25 -0
- package/lib/api/firmware/verifyEntropy.js +110 -0
- package/lib/api/getAccountInfo.d.ts +21 -0
- package/lib/api/getAccountInfo.js +253 -0
- package/lib/api/getAddress.d.ts +45 -0
- package/lib/api/getAddress.js +153 -0
- package/lib/api/getCoinInfo.d.ts +148 -0
- package/lib/api/getCoinInfo.js +25 -0
- package/lib/api/getDeviceState.d.ts +8 -0
- package/lib/api/getDeviceState.js +18 -0
- package/lib/api/getFeatures.d.ts +71 -0
- package/lib/api/getFeatures.js +22 -0
- package/lib/api/getFirmwareHash.d.ts +11 -0
- package/lib/api/getFirmwareHash.js +29 -0
- package/lib/api/getNonce.d.ts +10 -0
- package/lib/api/getNonce.js +18 -0
- package/lib/api/getOwnershipId.d.ts +17 -0
- package/lib/api/getOwnershipId.js +88 -0
- package/lib/api/getOwnershipProof.d.ts +17 -0
- package/lib/api/getOwnershipProof.js +95 -0
- package/lib/api/getPublicKey.d.ts +54 -0
- package/lib/api/getPublicKey.js +106 -0
- package/lib/api/getSettings.d.ts +24 -0
- package/lib/api/getSettings.js +21 -0
- package/lib/api/index.d.ts +62 -0
- package/lib/api/index.js +62 -0
- package/lib/api/loadDevice.d.ts +16 -0
- package/lib/api/loadDevice.js +46 -0
- package/lib/api/monero/api/index.d.ts +4 -0
- package/lib/api/monero/api/index.js +4 -0
- package/lib/api/monero/api/moneroGetAddress.d.ts +32 -0
- package/lib/api/monero/api/moneroGetAddress.js +117 -0
- package/lib/api/monero/api/moneroGetWatchKey.d.ts +14 -0
- package/lib/api/monero/api/moneroGetWatchKey.js +45 -0
- package/lib/api/monero/api/moneroKeyImageSync.d.ts +17 -0
- package/lib/api/monero/api/moneroKeyImageSync.js +128 -0
- package/lib/api/monero/api/moneroSignTransaction.d.ts +17 -0
- package/lib/api/monero/api/moneroSignTransaction.js +218 -0
- package/lib/api/nostr/nostrGetPublicKey.d.ts +15 -0
- package/lib/api/nostr/nostrGetPublicKey.js +38 -0
- package/lib/api/nostr/nostrSignEvent.d.ts +13 -0
- package/lib/api/nostr/nostrSignEvent.js +36 -0
- package/lib/api/pingDevice.d.ts +11 -0
- package/lib/api/pingDevice.js +29 -0
- package/lib/api/pushTransaction.d.ts +19 -0
- package/lib/api/pushTransaction.js +39 -0
- package/lib/api/recoveryDevice.d.ts +20 -0
- package/lib/api/recoveryDevice.js +52 -0
- package/lib/api/requestLogin.d.ts +14 -0
- package/lib/api/requestLogin.js +53 -0
- package/lib/api/resetDevice.d.ts +22 -0
- package/lib/api/resetDevice.js +133 -0
- package/lib/api/ripple/api/index.d.ts +2 -0
- package/lib/api/ripple/api/index.js +2 -0
- package/lib/api/ripple/api/rippleGetAddress.d.ts +17 -0
- package/lib/api/ripple/api/rippleGetAddress.js +22 -0
- package/lib/api/ripple/api/rippleSignTransaction.d.ts +13 -0
- package/lib/api/ripple/api/rippleSignTransaction.js +52 -0
- package/lib/api/selectAccount.d.ts +15 -0
- package/lib/api/selectAccount.js +42 -0
- package/lib/api/setBrightness.d.ts +12 -0
- package/lib/api/setBrightness.js +28 -0
- package/lib/api/setBusy.d.ts +11 -0
- package/lib/api/setBusy.js +31 -0
- package/lib/api/showDeviceTutorial.d.ts +11 -0
- package/lib/api/showDeviceTutorial.js +21 -0
- package/lib/api/signMessage.d.ts +25 -0
- package/lib/api/signMessage.js +75 -0
- package/lib/api/signTransaction.d.ts +199 -0
- package/lib/api/signTransaction.js +331 -0
- package/lib/api/solana/api/index.d.ts +4 -0
- package/lib/api/solana/api/index.js +4 -0
- package/lib/api/solana/api/solanaComposeTransaction.d.ts +33 -0
- package/lib/api/solana/api/solanaComposeTransaction.js +73 -0
- package/lib/api/solana/api/solanaGetAddress.d.ts +17 -0
- package/lib/api/solana/api/solanaGetAddress.js +22 -0
- package/lib/api/solana/api/solanaGetPublicKey.d.ts +32 -0
- package/lib/api/solana/api/solanaGetPublicKey.js +86 -0
- package/lib/api/solana/api/solanaSignTransaction.d.ts +41 -0
- package/lib/api/solana/api/solanaSignTransaction.js +204 -0
- package/lib/api/solana/solanaDefinitions.d.ts +9 -0
- package/lib/api/solana/solanaDefinitions.js +33 -0
- package/lib/api/stellar/api/index.d.ts +2 -0
- package/lib/api/stellar/api/index.js +2 -0
- package/lib/api/stellar/api/stellarGetAddress.d.ts +17 -0
- package/lib/api/stellar/api/stellarGetAddress.js +22 -0
- package/lib/api/stellar/api/stellarSignTransaction.d.ts +20 -0
- package/lib/api/stellar/api/stellarSignTransaction.js +65 -0
- package/lib/api/stellar/stellarSignTx.d.ts +7 -0
- package/lib/api/stellar/stellarSignTx.js +183 -0
- package/lib/api/telemetryGet.d.ts +14 -0
- package/lib/api/telemetryGet.js +26 -0
- package/lib/api/tezos/api/index.d.ts +3 -0
- package/lib/api/tezos/api/index.js +3 -0
- package/lib/api/tezos/api/tezosGetAddress.d.ts +17 -0
- package/lib/api/tezos/api/tezosGetAddress.js +22 -0
- package/lib/api/tezos/api/tezosGetPublicKey.d.ts +28 -0
- package/lib/api/tezos/api/tezosGetPublicKey.js +84 -0
- package/lib/api/tezos/api/tezosSignTransaction.d.ts +14 -0
- package/lib/api/tezos/api/tezosSignTransaction.js +30 -0
- package/lib/api/tezos/tezosSignTx.d.ts +71 -0
- package/lib/api/tezos/tezosSignTx.js +204 -0
- package/lib/api/thpGetCredentials.d.ts +13 -0
- package/lib/api/thpGetCredentials.js +30 -0
- package/lib/api/thpRemoveCredentials.d.ts +15 -0
- package/lib/api/thpRemoveCredentials.js +44 -0
- package/lib/api/tron/api/index.d.ts +3 -0
- package/lib/api/tron/api/index.js +3 -0
- package/lib/api/tron/api/tronComposeTransaction.d.ts +17 -0
- package/lib/api/tron/api/tronComposeTransaction.js +52 -0
- package/lib/api/tron/api/tronGetAddress.d.ts +17 -0
- package/lib/api/tron/api/tronGetAddress.js +22 -0
- package/lib/api/tron/api/tronSignTransaction.d.ts +20 -0
- package/lib/api/tron/api/tronSignTransaction.js +137 -0
- package/lib/api/tron/tronEncode.d.ts +11 -0
- package/lib/api/tron/tronEncode.js +157 -0
- package/lib/api/tron/tronProtobuf.d.ts +5 -0
- package/lib/api/unlockPath.d.ts +12 -0
- package/lib/api/unlockPath.js +33 -0
- package/lib/api/verifyMessage.d.ts +16 -0
- package/lib/api/verifyMessage.js +46 -0
- package/lib/api/wipeDevice.d.ts +21 -0
- package/lib/api/wipeDevice.js +49 -0
- package/lib/backend/BackendManager.d.ts +30 -0
- package/lib/backend/BackendManager.js +145 -0
- package/lib/backend/Blockchain.d.ts +81 -0
- package/lib/backend/Blockchain.js +235 -0
- package/lib/backend/BlockchainLink.d.ts +10 -0
- package/lib/backend/BlockchainLink.js +19 -0
- package/lib/backend/fees/BitcoinFeeLevels.d.ts +19 -0
- package/lib/backend/fees/BitcoinFeeLevels.js +44 -0
- package/lib/backend/fees/EthereumFeeLevels.d.ts +17 -0
- package/lib/backend/fees/EthereumFeeLevels.js +63 -0
- package/lib/backend/fees/MiscFeeLevels.d.ts +18 -0
- package/lib/backend/fees/MiscFeeLevels.js +30 -0
- package/lib/backend/fees/index.d.ts +5 -0
- package/lib/backend/fees/index.js +31 -0
- package/lib/core/AbstractMethod.d.ts +63 -0
- package/lib/core/AbstractMethod.js +189 -0
- package/lib/core/index.d.ts +29 -0
- package/lib/core/index.js +805 -0
- package/lib/core/method.d.ts +3 -0
- package/lib/core/method.js +19 -0
- package/lib/core/method.native.d.ts +2 -0
- package/lib/core/method.native.js +29 -0
- package/lib/core/onCallFirmwareUpdate.d.ts +42 -0
- package/lib/core/onCallFirmwareUpdate.js +436 -0
- package/lib/data/coinInfo.d.ts +101 -0
- package/lib/data/coinInfo.js +195 -0
- package/lib/data/config.d.ts +8 -0
- package/lib/data/config.js +273 -0
- package/lib/data/defaultFeeLevels.d.ts +18 -0
- package/lib/data/defaultFeeLevels.js +200 -0
- package/lib/data/enabledNetworksStore.d.ts +5 -0
- package/lib/data/enabledNetworksStore.js +20 -0
- package/lib/data/firmwareInfo.d.ts +55 -0
- package/lib/data/firmwareInfo.js +413 -0
- package/lib/data/firmwareReleaseStore.d.ts +10 -0
- package/lib/data/firmwareReleaseStore.js +16 -0
- package/lib/data/localFirmwareStore.d.ts +3 -0
- package/lib/data/protobufLoader.d.ts +1 -0
- package/lib/data/protobufLoader.js +30 -0
- package/lib/data/settingsStore.d.ts +6 -0
- package/lib/data/settingsStore.js +21 -0
- package/lib/device/Device.d.ts +259 -0
- package/lib/device/Device.js +765 -0
- package/lib/device/DeviceCommands.d.ts +87 -0
- package/lib/device/DeviceCommands.js +248 -0
- package/lib/device/DeviceCurrentSession.d.ts +750 -0
- package/lib/device/DeviceCurrentSession.js +239 -0
- package/lib/device/DeviceList.d.ts +75 -0
- package/lib/device/DeviceList.js +243 -0
- package/lib/device/TransportList.d.ts +3 -0
- package/lib/device/TransportList.js +13 -0
- package/lib/device/TransportManager.d.ts +33 -0
- package/lib/device/TransportManager.js +144 -0
- package/lib/device/calculateRevisionForDevice.d.ts +10 -0
- package/lib/device/calculateRevisionForDevice.js +19 -0
- package/lib/device/checkFirmwareRevision.d.ts +22 -0
- package/lib/device/checkFirmwareRevision.js +104 -0
- package/lib/device/resolveDescriptorForTaproot.d.ts +17 -0
- package/lib/device/resolveDescriptorForTaproot.js +27 -0
- package/lib/device/thp/handshake.d.ts +3 -0
- package/lib/device/thp/handshake.js +100 -0
- package/lib/device/thp/index.d.ts +5 -0
- package/lib/device/thp/index.js +65 -0
- package/lib/device/thp/pairing.d.ts +16 -0
- package/lib/device/thp/pairing.js +242 -0
- package/lib/device/thp/session.d.ts +2 -0
- package/lib/device/thp/session.js +27 -0
- package/lib/device/thp/thpCall.d.ts +31 -0
- package/lib/device/thp/thpCall.js +58 -0
- package/lib/device/validateMessageSize.d.ts +2 -0
- package/lib/device/validateMessageSize.js +9 -0
- package/lib/device/workflow/changeLanguage.d.ts +18 -0
- package/lib/device/workflow/changeLanguage.js +62 -0
- package/lib/device/workflow/checkFirmwareHash.d.ts +12 -0
- package/lib/device/workflow/checkFirmwareHash.js +86 -0
- package/lib/device/workflow/checkFirmwareHashWithRetries.d.ts +8 -0
- package/lib/device/workflow/checkFirmwareHashWithRetries.js +36 -0
- package/lib/device/workflow/handshake.d.ts +13 -0
- package/lib/device/workflow/handshake.js +55 -0
- package/lib/device/workflow/trezorPushNotification.d.ts +5 -0
- package/lib/device/workflow/trezorPushNotification.js +73 -0
- package/lib/device/workflow/validateState.d.ts +2 -0
- package/lib/device/workflow/validateState.js +152 -0
- package/lib/events/ui-promise.d.ts +20 -0
- package/lib/exports.d.ts +3 -0
- package/lib/exports.js +3 -0
- package/lib/impl/core-in-module.d.ts +33 -0
- package/lib/impl/core-in-module.js +194 -0
- package/lib/index.browser.d.ts +7 -0
- package/lib/index.browser.js +34 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +15 -0
- package/lib/types/idevice.d.ts +110 -0
- package/lib/types/typed-call-provider.d.ts +29 -0
- package/lib/types/workflow.d.ts +16 -0
- package/lib/utils/accountUtils.d.ts +10 -0
- package/lib/utils/accountUtils.js +90 -0
- package/lib/utils/addressUtils.d.ts +2 -0
- package/lib/utils/assetUtils.d.ts +13 -0
- package/lib/utils/assetUtils.js +55 -0
- package/lib/utils/assets.browser.d.ts +1 -0
- package/lib/utils/assets.browser.js +1 -0
- package/lib/utils/assets.d.ts +2 -0
- package/lib/utils/assets.js +13 -0
- package/lib/utils/assets.native.d.ts +2 -0
- package/lib/utils/assets.native.js +23 -0
- package/lib/utils/assetsTypes.d.ts +5 -0
- package/lib/utils/buildOutputDescriptor.d.ts +20 -0
- package/lib/utils/deviceFeaturesUtils.d.ts +7 -0
- package/lib/utils/deviceFeaturesUtils.js +109 -0
- package/lib/utils/ethereumUtils.d.ts +3 -0
- package/lib/utils/firmwareReleaseConfigUtils.d.ts +19 -0
- package/lib/utils/firmwareReleaseConfigUtils.js +131 -0
- package/lib/utils/firmwareUtils.d.ts +15 -0
- package/lib/utils/firmwareUtils.js +57 -0
- package/lib/utils/formatUtils.d.ts +13 -0
- package/lib/utils/formatUtils.js +45 -0
- package/lib/utils/hdnodeUtils.d.ts +6 -0
- package/lib/utils/hdnodeUtils.js +62 -0
- package/lib/utils/pathUtils.d.ts +1 -0
- package/lib/utils/pathUtils.js +1 -0
- package/lib/utils/paymentRequest.d.ts +8 -0
- package/lib/utils/paymentRequest.js +25 -0
- package/lib/utils/uiPromiseManager.d.ts +8 -0
- package/lib/workers/workers.browser.d.ts +10 -0
- package/lib/workers/workers.browser.js +16 -0
- package/lib/workers/workers.d.ts +10 -0
- package/lib/workers/workers.js +8 -0
- package/lib/workers/workers.native.d.ts +7 -0
- package/lib/workers/workers.native.js +7 -0
- package/package.json +57 -59
- package/libESM/api/applyFlags.d.mts +0 -20
- package/libESM/api/applyFlags.mjs +0 -36
- package/libESM/api/applySettings.d.mts +0 -20
- package/libESM/api/applySettings.mjs +0 -55
- package/libESM/api/authenticateDevice.d.mts +0 -9
- package/libESM/api/authenticateDevice.mjs +0 -108
- package/libESM/api/authorizeCoinjoin.d.mts +0 -11
- package/libESM/api/authorizeCoinjoin.mjs +0 -44
- package/libESM/api/backupDevice.d.mts +0 -19
- package/libESM/api/backupDevice.mjs +0 -36
- package/libESM/api/bitcoin/TransactionComposer.d.mts +0 -46
- package/libESM/api/bitcoin/TransactionComposer.mjs +0 -139
- package/libESM/api/bitcoin/createPendingTx.d.mts +0 -33
- package/libESM/api/bitcoin/createPendingTx.mjs +0 -54
- package/libESM/api/bitcoin/enhanceSignTx.d.mts +0 -2
- package/libESM/api/bitcoin/enhanceSignTx.mjs +0 -23
- package/libESM/api/bitcoin/index.d.mts +0 -9
- package/libESM/api/bitcoin/index.mjs +0 -9
- package/libESM/api/bitcoin/inputs.d.mts +0 -6
- package/libESM/api/bitcoin/inputs.mjs +0 -75
- package/libESM/api/bitcoin/outputs.d.mts +0 -5
- package/libESM/api/bitcoin/outputs.mjs +0 -128
- package/libESM/api/bitcoin/refTx.d.mts +0 -17
- package/libESM/api/bitcoin/refTx.mjs +0 -252
- package/libESM/api/bitcoin/signtx.d.mts +0 -22
- package/libESM/api/bitcoin/signtx.mjs +0 -213
- package/libESM/api/bitcoin/signtxLegacy.d.mts +0 -3
- package/libESM/api/bitcoin/signtxLegacy.mjs +0 -179
- package/libESM/api/bitcoin/signtxVerify.d.mts +0 -12
- package/libESM/api/bitcoin/signtxVerify.mjs +0 -86
- package/libESM/api/bitcoin/transactionBytes.d.mts +0 -3
- package/libESM/api/bitcoin/transactionBytes.mjs +0 -65
- package/libESM/api/bleUnpair.d.mts +0 -11
- package/libESM/api/bleUnpair.mjs +0 -35
- package/libESM/api/blockchainDisconnect.d.mts +0 -16
- package/libESM/api/blockchainDisconnect.mjs +0 -39
- package/libESM/api/blockchainEstimateFee.d.mts +0 -14
- package/libESM/api/blockchainEstimateFee.mjs +0 -106
- package/libESM/api/blockchainEvmRpcCall.d.mts +0 -17
- package/libESM/api/blockchainEvmRpcCall.mjs +0 -61
- package/libESM/api/blockchainGetAccountBalanceHistory.d.mts +0 -14
- package/libESM/api/blockchainGetAccountBalanceHistory.mjs +0 -64
- package/libESM/api/blockchainGetContractInfo.d.mts +0 -14
- package/libESM/api/blockchainGetContractInfo.mjs +0 -50
- package/libESM/api/blockchainGetCurrentFiatRates.d.mts +0 -18
- package/libESM/api/blockchainGetCurrentFiatRates.mjs +0 -53
- package/libESM/api/blockchainGetFiatRatesForTimestamps.d.mts +0 -21
- package/libESM/api/blockchainGetFiatRatesForTimestamps.mjs +0 -59
- package/libESM/api/blockchainGetInfo.d.mts +0 -13
- package/libESM/api/blockchainGetInfo.mjs +0 -41
- package/libESM/api/blockchainGetTransactions.d.mts +0 -15
- package/libESM/api/blockchainGetTransactions.mjs +0 -47
- package/libESM/api/blockchainSetCustomBackend.d.mts +0 -13
- package/libESM/api/blockchainSetCustomBackend.mjs +0 -41
- package/libESM/api/blockchainSubscribe.d.mts +0 -17
- package/libESM/api/blockchainSubscribe.mjs +0 -68
- package/libESM/api/blockchainSubscribeFiatRates.d.mts +0 -17
- package/libESM/api/blockchainSubscribeFiatRates.mjs +0 -47
- package/libESM/api/blockchainUnsubscribe.d.mts +0 -17
- package/libESM/api/blockchainUnsubscribe.mjs +0 -68
- package/libESM/api/blockchainUnsubscribeFiatRates.d.mts +0 -15
- package/libESM/api/blockchainUnsubscribeFiatRates.mjs +0 -41
- package/libESM/api/blockchainValidateEvmRpcUrl.d.mts +0 -17
- package/libESM/api/blockchainValidateEvmRpcUrl.mjs +0 -54
- package/libESM/api/cancelCoinjoinAuthorization.d.mts +0 -11
- package/libESM/api/cancelCoinjoinAuthorization.mjs +0 -31
- package/libESM/api/cardano/api/cardanoComposeTransaction.d.mts +0 -10
- package/libESM/api/cardano/api/cardanoComposeTransaction.mjs +0 -79
- package/libESM/api/cardano/api/cardanoGetAddress.d.mts +0 -30
- package/libESM/api/cardano/api/cardanoGetAddress.mjs +0 -116
- package/libESM/api/cardano/api/cardanoGetNativeScriptHash.d.mts +0 -12
- package/libESM/api/cardano/api/cardanoGetNativeScriptHash.mjs +0 -66
- package/libESM/api/cardano/api/cardanoGetPublicKey.d.mts +0 -20
- package/libESM/api/cardano/api/cardanoGetPublicKey.mjs +0 -72
- package/libESM/api/cardano/api/cardanoSignMessage.d.mts +0 -27
- package/libESM/api/cardano/api/cardanoSignMessage.mjs +0 -96
- package/libESM/api/cardano/api/cardanoSignTransaction.d.mts +0 -81
- package/libESM/api/cardano/api/cardanoSignTransaction.mjs +0 -298
- package/libESM/api/cardano/api/index.d.mts +0 -6
- package/libESM/api/cardano/api/index.mjs +0 -6
- package/libESM/api/cardano/cardanoAddressParameters.d.mts +0 -6
- package/libESM/api/cardano/cardanoAddressParameters.mjs +0 -79
- package/libESM/api/cardano/cardanoAuxiliaryData.d.mts +0 -4
- package/libESM/api/cardano/cardanoAuxiliaryData.mjs +0 -74
- package/libESM/api/cardano/cardanoCertificate.d.mts +0 -13
- package/libESM/api/cardano/cardanoCertificate.mjs +0 -142
- package/libESM/api/cardano/cardanoInputs.d.mts +0 -25
- package/libESM/api/cardano/cardanoInputs.mjs +0 -39
- package/libESM/api/cardano/cardanoOutputs.d.mts +0 -40
- package/libESM/api/cardano/cardanoOutputs.mjs +0 -70
- package/libESM/api/cardano/cardanoTokenBundle.d.mts +0 -12
- package/libESM/api/cardano/cardanoUtils.d.mts +0 -9
- package/libESM/api/cardano/cardanoUtils.mjs +0 -101
- package/libESM/api/cardano/cardanoWitnesses.d.mts +0 -4
- package/libESM/api/changeLanguage.d.mts +0 -18
- package/libESM/api/changeLanguage.mjs +0 -47
- package/libESM/api/changePin.d.mts +0 -11
- package/libESM/api/changePin.mjs +0 -25
- package/libESM/api/changeWipeCode.d.mts +0 -11
- package/libESM/api/changeWipeCode.mjs +0 -27
- package/libESM/api/cipherKeyValue.d.mts +0 -15
- package/libESM/api/cipherKeyValue.mjs +0 -51
- package/libESM/api/common/AbstractMiscGetAddress.d.mts +0 -35
- package/libESM/api/common/AbstractMiscGetAddress.mjs +0 -102
- package/libESM/api/common/Discovery.d.mts +0 -33
- package/libESM/api/common/Discovery.mjs +0 -116
- package/libESM/api/common/paramsValidator.d.mts +0 -23
- package/libESM/api/common/paramsValidator.mjs +0 -134
- package/libESM/api/common/requestExistingAccounts.d.mts +0 -9
- package/libESM/api/common/requestExistingAccounts.mjs +0 -20
- package/libESM/api/composeTransaction.d.mts +0 -36
- package/libESM/api/composeTransaction.mjs +0 -386
- package/libESM/api/discoverAccounts.d.mts +0 -38
- package/libESM/api/discoverAccounts.mjs +0 -363
- package/libESM/api/ethereum/api/ethereumGetAddress.d.mts +0 -28
- package/libESM/api/ethereum/api/ethereumGetAddress.mjs +0 -135
- package/libESM/api/ethereum/api/ethereumGetPublicKey.d.mts +0 -48
- package/libESM/api/ethereum/api/ethereumGetPublicKey.mjs +0 -90
- package/libESM/api/ethereum/api/ethereumSignMessage.d.mts +0 -27
- package/libESM/api/ethereum/api/ethereumSignMessage.mjs +0 -64
- package/libESM/api/ethereum/api/ethereumSignTransaction.d.mts +0 -83
- package/libESM/api/ethereum/api/ethereumSignTransaction.mjs +0 -148
- package/libESM/api/ethereum/api/ethereumSignTypedData.d.mts +0 -116
- package/libESM/api/ethereum/api/ethereumSignTypedData.mjs +0 -202
- package/libESM/api/ethereum/api/ethereumVerifyMessage.d.mts +0 -12
- package/libESM/api/ethereum/api/ethereumVerifyMessage.mjs +0 -33
- package/libESM/api/ethereum/api/index.d.mts +0 -6
- package/libESM/api/ethereum/api/index.mjs +0 -6
- package/libESM/api/ethereum/ethereumDefinitions.d.mts +0 -46
- package/libESM/api/ethereum/ethereumDefinitions.mjs +0 -103
- package/libESM/api/ethereum/ethereumSignTx.d.mts +0 -20
- package/libESM/api/ethereum/ethereumSignTx.mjs +0 -131
- package/libESM/api/ethereum/ethereumSignTypedData.d.mts +0 -32
- package/libESM/api/ethereum/ethereumSignTypedData.mjs +0 -169
- package/libESM/api/evoluGetDelegatedIdentityKey.d.mts +0 -14
- package/libESM/api/evoluGetDelegatedIdentityKey.mjs +0 -26
- package/libESM/api/evoluGetNode.d.mts +0 -13
- package/libESM/api/evoluGetNode.mjs +0 -27
- package/libESM/api/evoluSignRegistrationRequest.d.mts +0 -15
- package/libESM/api/evoluSignRegistrationRequest.mjs +0 -31
- package/libESM/api/firmware/calculateFirmwareHash.d.mts +0 -13
- package/libESM/api/firmware/calculateXPubHash.d.mts +0 -10
- package/libESM/api/firmware/calculateXPubHash.mjs +0 -14
- package/libESM/api/firmware/getBinary.d.mts +0 -10
- package/libESM/api/firmware/getBinary.mjs +0 -33
- package/libESM/api/firmware/index.d.mts +0 -6
- package/libESM/api/firmware/index.mjs +0 -6
- package/libESM/api/firmware/modifyFirmware.d.mts +0 -3
- package/libESM/api/firmware/parseFirmwareHeaders.d.mts +0 -4
- package/libESM/api/firmware/uploadFirmware.d.mts +0 -19
- package/libESM/api/firmware/uploadFirmware.mjs +0 -99
- package/libESM/api/firmware/verifyEntropy.d.mts +0 -18
- package/libESM/api/firmware/verifyEntropy.mjs +0 -107
- package/libESM/api/getAccountInfo.d.mts +0 -94
- package/libESM/api/getAccountInfo.mjs +0 -385
- package/libESM/api/getAddress.d.mts +0 -39
- package/libESM/api/getAddress.mjs +0 -142
- package/libESM/api/getCoinInfo.d.mts +0 -148
- package/libESM/api/getCoinInfo.mjs +0 -29
- package/libESM/api/getDeviceState.d.mts +0 -8
- package/libESM/api/getDeviceState.mjs +0 -16
- package/libESM/api/getFeatures.d.mts +0 -70
- package/libESM/api/getFeatures.mjs +0 -20
- package/libESM/api/getFirmwareHash.d.mts +0 -11
- package/libESM/api/getFirmwareHash.mjs +0 -27
- package/libESM/api/getNonce.d.mts +0 -10
- package/libESM/api/getNonce.mjs +0 -16
- package/libESM/api/getOwnershipId.d.mts +0 -15
- package/libESM/api/getOwnershipId.mjs +0 -79
- package/libESM/api/getOwnershipProof.d.mts +0 -15
- package/libESM/api/getOwnershipProof.mjs +0 -86
- package/libESM/api/getPublicKey.d.mts +0 -50
- package/libESM/api/getPublicKey.mjs +0 -88
- package/libESM/api/getSettings.d.mts +0 -8
- package/libESM/api/getSettings.mjs +0 -15
- package/libESM/api/index.d.mts +0 -59
- package/libESM/api/index.mjs +0 -59
- package/libESM/api/loadDevice.d.mts +0 -16
- package/libESM/api/loadDevice.mjs +0 -44
- package/libESM/api/monero/api/index.d.mts +0 -4
- package/libESM/api/monero/api/index.mjs +0 -4
- package/libESM/api/monero/api/moneroGetAddress.d.mts +0 -30
- package/libESM/api/monero/api/moneroGetAddress.mjs +0 -109
- package/libESM/api/monero/api/moneroGetWatchKey.d.mts +0 -14
- package/libESM/api/monero/api/moneroGetWatchKey.mjs +0 -44
- package/libESM/api/monero/api/moneroKeyImageSync.d.mts +0 -17
- package/libESM/api/monero/api/moneroKeyImageSync.mjs +0 -127
- package/libESM/api/monero/api/moneroSignTransaction.d.mts +0 -17
- package/libESM/api/monero/api/moneroSignTransaction.mjs +0 -202
- package/libESM/api/pingDevice.d.mts +0 -11
- package/libESM/api/pingDevice.mjs +0 -27
- package/libESM/api/pushTransaction.d.mts +0 -17
- package/libESM/api/pushTransaction.mjs +0 -42
- package/libESM/api/recoveryDevice.d.mts +0 -20
- package/libESM/api/recoveryDevice.mjs +0 -50
- package/libESM/api/requestLogin.d.mts +0 -14
- package/libESM/api/requestLogin.mjs +0 -48
- package/libESM/api/resetDevice.d.mts +0 -22
- package/libESM/api/resetDevice.mjs +0 -131
- package/libESM/api/ripple/api/index.d.mts +0 -2
- package/libESM/api/ripple/api/index.mjs +0 -2
- package/libESM/api/ripple/api/rippleGetAddress.d.mts +0 -15
- package/libESM/api/ripple/api/rippleGetAddress.mjs +0 -22
- package/libESM/api/ripple/api/rippleSignTransaction.d.mts +0 -13
- package/libESM/api/ripple/api/rippleSignTransaction.mjs +0 -52
- package/libESM/api/setBrightness.d.mts +0 -12
- package/libESM/api/setBrightness.mjs +0 -26
- package/libESM/api/setBusy.d.mts +0 -11
- package/libESM/api/setBusy.mjs +0 -32
- package/libESM/api/showDeviceTutorial.d.mts +0 -11
- package/libESM/api/showDeviceTutorial.mjs +0 -21
- package/libESM/api/signMessage.d.mts +0 -25
- package/libESM/api/signMessage.mjs +0 -71
- package/libESM/api/signTransaction.d.mts +0 -197
- package/libESM/api/signTransaction.mjs +0 -334
- package/libESM/api/solana/api/index.d.mts +0 -4
- package/libESM/api/solana/api/index.mjs +0 -4
- package/libESM/api/solana/api/solanaComposeTransaction.d.mts +0 -31
- package/libESM/api/solana/api/solanaComposeTransaction.mjs +0 -76
- package/libESM/api/solana/api/solanaGetAddress.d.mts +0 -15
- package/libESM/api/solana/api/solanaGetAddress.mjs +0 -22
- package/libESM/api/solana/api/solanaGetPublicKey.d.mts +0 -28
- package/libESM/api/solana/api/solanaGetPublicKey.mjs +0 -67
- package/libESM/api/solana/api/solanaSignTransaction.d.mts +0 -41
- package/libESM/api/solana/api/solanaSignTransaction.mjs +0 -203
- package/libESM/api/solana/solanaDefinitions.d.mts +0 -7
- package/libESM/api/solana/solanaDefinitions.mjs +0 -33
- package/libESM/api/stellar/api/index.d.mts +0 -2
- package/libESM/api/stellar/api/index.mjs +0 -2
- package/libESM/api/stellar/api/stellarGetAddress.d.mts +0 -15
- package/libESM/api/stellar/api/stellarGetAddress.mjs +0 -22
- package/libESM/api/stellar/api/stellarSignTransaction.d.mts +0 -26
- package/libESM/api/stellar/api/stellarSignTransaction.mjs +0 -66
- package/libESM/api/stellar/stellarSignTx.d.mts +0 -7
- package/libESM/api/stellar/stellarSignTx.mjs +0 -191
- package/libESM/api/telemetryGet.d.mts +0 -14
- package/libESM/api/telemetryGet.mjs +0 -24
- package/libESM/api/tezos/api/index.d.mts +0 -3
- package/libESM/api/tezos/api/index.mjs +0 -3
- package/libESM/api/tezos/api/tezosGetAddress.d.mts +0 -15
- package/libESM/api/tezos/api/tezosGetAddress.mjs +0 -22
- package/libESM/api/tezos/api/tezosGetPublicKey.d.mts +0 -24
- package/libESM/api/tezos/api/tezosGetPublicKey.mjs +0 -66
- package/libESM/api/tezos/api/tezosSignTransaction.d.mts +0 -14
- package/libESM/api/tezos/api/tezosSignTransaction.mjs +0 -30
- package/libESM/api/tezos/tezosSignTx.d.mts +0 -71
- package/libESM/api/tezos/tezosSignTx.mjs +0 -204
- package/libESM/api/thpGetCredentials.d.mts +0 -13
- package/libESM/api/thpGetCredentials.mjs +0 -28
- package/libESM/api/thpRemoveCredentials.d.mts +0 -15
- package/libESM/api/thpRemoveCredentials.mjs +0 -42
- package/libESM/api/tron/api/index.d.mts +0 -3
- package/libESM/api/tron/api/index.mjs +0 -3
- package/libESM/api/tron/api/tronComposeTransaction.d.mts +0 -17
- package/libESM/api/tron/api/tronComposeTransaction.mjs +0 -51
- package/libESM/api/tron/api/tronGetAddress.d.mts +0 -15
- package/libESM/api/tron/api/tronGetAddress.mjs +0 -20
- package/libESM/api/tron/api/tronSignTransaction.d.mts +0 -19
- package/libESM/api/tron/api/tronSignTransaction.mjs +0 -129
- package/libESM/api/tron/tronEncode.d.mts +0 -12
- package/libESM/api/tron/tronEncode.mjs +0 -77
- package/libESM/api/tron/tronProtobuf.d.mts +0 -5
- package/libESM/api/unlockPath.d.mts +0 -12
- package/libESM/api/unlockPath.mjs +0 -31
- package/libESM/api/verifyMessage.d.mts +0 -16
- package/libESM/api/verifyMessage.mjs +0 -46
- package/libESM/api/wipeDevice.d.mts +0 -21
- package/libESM/api/wipeDevice.mjs +0 -47
- package/libESM/backend/BackendManager.d.mts +0 -24
- package/libESM/backend/BackendManager.mjs +0 -137
- package/libESM/backend/Blockchain.d.mts +0 -81
- package/libESM/backend/Blockchain.mjs +0 -232
- package/libESM/backend/BlockchainLink.d.mts +0 -9
- package/libESM/backend/BlockchainLink.mjs +0 -13
- package/libESM/backend/fees/BitcoinFeeLevels.d.mts +0 -19
- package/libESM/backend/fees/BitcoinFeeLevels.mjs +0 -43
- package/libESM/backend/fees/EthereumFeeLevels.d.mts +0 -17
- package/libESM/backend/fees/EthereumFeeLevels.mjs +0 -52
- package/libESM/backend/fees/MiscFeeLevels.d.mts +0 -18
- package/libESM/backend/fees/MiscFeeLevels.mjs +0 -25
- package/libESM/backend/fees/index.d.mts +0 -5
- package/libESM/backend/fees/index.mjs +0 -30
- package/libESM/core/AbstractMethod.d.mts +0 -65
- package/libESM/core/AbstractMethod.mjs +0 -153
- package/libESM/core/index.d.mts +0 -27
- package/libESM/core/index.mjs +0 -795
- package/libESM/core/method.d.mts +0 -3
- package/libESM/core/method.mjs +0 -19
- package/libESM/core/method.native.d.mts +0 -2
- package/libESM/core/method.native.mjs +0 -29
- package/libESM/core/onCallFirmwareUpdate.d.mts +0 -39
- package/libESM/core/onCallFirmwareUpdate.mjs +0 -436
- package/libESM/data/coinInfo.d.mts +0 -374
- package/libESM/data/coinInfo.mjs +0 -183
- package/libESM/data/config.d.mts +0 -8
- package/libESM/data/config.mjs +0 -265
- package/libESM/data/defaultFeeLevels.d.mts +0 -18
- package/libESM/data/defaultFeeLevels.mjs +0 -174
- package/libESM/data/firmwareInfo.d.mts +0 -41
- package/libESM/data/firmwareInfo.mjs +0 -411
- package/libESM/data/firmwareReleaseStore.d.mts +0 -10
- package/libESM/data/firmwareReleaseStore.mjs +0 -16
- package/libESM/data/localFirmwareStore.d.mts +0 -3
- package/libESM/data/protobufLoader.d.mts +0 -1
- package/libESM/data/protobufLoader.mjs +0 -29
- package/libESM/data/settingsStore.d.mts +0 -6
- package/libESM/data/settingsStore.mjs +0 -21
- package/libESM/device/Device.d.mts +0 -237
- package/libESM/device/Device.mjs +0 -729
- package/libESM/device/DeviceCommands.d.mts +0 -77
- package/libESM/device/DeviceCommands.mjs +0 -245
- package/libESM/device/DeviceCurrentSession.d.mts +0 -3208
- package/libESM/device/DeviceCurrentSession.mjs +0 -240
- package/libESM/device/DeviceList.d.mts +0 -68
- package/libESM/device/DeviceList.mjs +0 -246
- package/libESM/device/TransportList.d.mts +0 -9
- package/libESM/device/TransportList.mjs +0 -41
- package/libESM/device/TransportManager.d.mts +0 -30
- package/libESM/device/TransportManager.mjs +0 -142
- package/libESM/device/calculateRevisionForDevice.d.mts +0 -7
- package/libESM/device/calculateRevisionForDevice.mjs +0 -19
- package/libESM/device/checkFirmwareRevision.d.mts +0 -12
- package/libESM/device/checkFirmwareRevision.mjs +0 -75
- package/libESM/device/resolveDescriptorForTaproot.d.mts +0 -14
- package/libESM/device/resolveDescriptorForTaproot.mjs +0 -25
- package/libESM/device/thp/handshake.d.mts +0 -3
- package/libESM/device/thp/handshake.mjs +0 -100
- package/libESM/device/thp/index.d.mts +0 -5
- package/libESM/device/thp/index.mjs +0 -65
- package/libESM/device/thp/pairing.d.mts +0 -16
- package/libESM/device/thp/pairing.mjs +0 -237
- package/libESM/device/thp/session.d.mts +0 -2
- package/libESM/device/thp/session.mjs +0 -27
- package/libESM/device/thp/thpCall.d.mts +0 -40
- package/libESM/device/thp/thpCall.mjs +0 -58
- package/libESM/device/validateMessageSize.d.mts +0 -2
- package/libESM/device/validateMessageSize.mjs +0 -9
- package/libESM/device/workflow/changeLanguage.d.mts +0 -14
- package/libESM/device/workflow/changeLanguage.mjs +0 -59
- package/libESM/device/workflow/checkFirmwareHash.d.mts +0 -9
- package/libESM/device/workflow/checkFirmwareHash.mjs +0 -86
- package/libESM/device/workflow/checkFirmwareHashWithRetries.d.mts +0 -8
- package/libESM/device/workflow/checkFirmwareHashWithRetries.mjs +0 -36
- package/libESM/device/workflow/handshake.d.mts +0 -9
- package/libESM/device/workflow/handshake.mjs +0 -55
- package/libESM/device/workflow/trezorPushNotification.d.mts +0 -2
- package/libESM/device/workflow/trezorPushNotification.mjs +0 -73
- package/libESM/device/workflow/validateState.d.mts +0 -2
- package/libESM/device/workflow/validateState.mjs +0 -153
- package/libESM/events/ui-promise.d.mts +0 -22
- package/libESM/exports.d.mts +0 -3
- package/libESM/exports.mjs +0 -3
- package/libESM/impl/core-in-module.d.mts +0 -27
- package/libESM/impl/core-in-module.mjs +0 -173
- package/libESM/index.browser.d.mts +0 -9
- package/libESM/index.browser.mjs +0 -50
- package/libESM/index.d.mts +0 -6
- package/libESM/index.mjs +0 -32
- package/libESM/index.renderer.d.mts +0 -6
- package/libESM/index.renderer.mjs +0 -19
- package/libESM/tsconfig.libESM.tsbuildinfo +0 -1
- package/libESM/types/idevice.d.mts +0 -109
- package/libESM/types/typed-call-provider.d.mts +0 -29
- package/libESM/types/workflow.d.mts +0 -16
- package/libESM/utils/accountUtils.d.mts +0 -10
- package/libESM/utils/accountUtils.mjs +0 -83
- package/libESM/utils/addressUtils.d.mts +0 -2
- package/libESM/utils/assetUtils.d.mts +0 -13
- package/libESM/utils/assetUtils.mjs +0 -56
- package/libESM/utils/assets.browser.d.mts +0 -1
- package/libESM/utils/assets.browser.mjs +0 -1
- package/libESM/utils/assets.d.mts +0 -2
- package/libESM/utils/assets.mjs +0 -13
- package/libESM/utils/assets.native.d.mts +0 -2
- package/libESM/utils/assets.native.mjs +0 -23
- package/libESM/utils/assetsTypes.d.mts +0 -5
- package/libESM/utils/buildOutputDescriptor.d.mts +0 -12
- package/libESM/utils/deviceFeaturesUtils.d.mts +0 -7
- package/libESM/utils/deviceFeaturesUtils.mjs +0 -109
- package/libESM/utils/ethereumUtils.d.mts +0 -3
- package/libESM/utils/firmwareReleaseConfigUtils.d.mts +0 -19
- package/libESM/utils/firmwareReleaseConfigUtils.mjs +0 -131
- package/libESM/utils/firmwareUtils.d.mts +0 -13
- package/libESM/utils/firmwareUtils.mjs +0 -54
- package/libESM/utils/formatUtils.d.mts +0 -15
- package/libESM/utils/formatUtils.mjs +0 -45
- package/libESM/utils/hdnodeUtils.d.mts +0 -6
- package/libESM/utils/hdnodeUtils.mjs +0 -62
- package/libESM/utils/pathUtils.d.mts +0 -17
- package/libESM/utils/pathUtils.mjs +0 -141
- package/libESM/utils/paymentRequest.d.mts +0 -8
- package/libESM/utils/paymentRequest.mjs +0 -25
- package/libESM/utils/uiPromiseManager.d.mts +0 -8
- package/libESM/workers/workers.browser.d.mts +0 -10
- package/libESM/workers/workers.browser.mjs +0 -16
- package/libESM/workers/workers.d.mts +0 -10
- package/libESM/workers/workers.mjs +0 -8
- package/libESM/workers/workers.native.d.mts +0 -7
- package/libESM/workers/workers.native.mjs +0 -7
- /package/{libESM/api/cardano/cardanoTokenBundle.mjs → lib/api/cardano/cardanoTokenBundle.js} +0 -0
- /package/{libESM/api/cardano/cardanoWitnesses.mjs → lib/api/cardano/cardanoWitnesses.js} +0 -0
- /package/{libESM/api/firmware/calculateFirmwareHash.mjs → lib/api/firmware/calculateFirmwareHash.js} +0 -0
- /package/{libESM/api/firmware/modifyFirmware.mjs → lib/api/firmware/modifyFirmware.js} +0 -0
- /package/{libESM/api/firmware/parseFirmwareHeaders.mjs → lib/api/firmware/parseFirmwareHeaders.js} +0 -0
- /package/{libESM/api/tron/tronProtobuf.mjs → lib/api/tron/tronProtobuf.js} +0 -0
- /package/{libESM/data/localFirmwareStore.mjs → lib/data/localFirmwareStore.js} +0 -0
- /package/{libESM/events/ui-promise.mjs → lib/events/ui-promise.js} +0 -0
- /package/{libESM/types/idevice.mjs → lib/types/idevice.js} +0 -0
- /package/{libESM/types/typed-call-provider.mjs → lib/types/typed-call-provider.js} +0 -0
- /package/{libESM/types/workflow.mjs → lib/types/workflow.js} +0 -0
- /package/{libESM/utils/addressUtils.mjs → lib/utils/addressUtils.js} +0 -0
- /package/{libESM/utils/assetsTypes.mjs → lib/utils/assetsTypes.js} +0 -0
- /package/{libESM/utils/buildOutputDescriptor.mjs → lib/utils/buildOutputDescriptor.js} +0 -0
- /package/{libESM/utils/ethereumUtils.mjs → lib/utils/ethereumUtils.js} +0 -0
- /package/{libESM/utils/uiPromiseManager.mjs → lib/utils/uiPromiseManager.js} +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { MessagesSchema as Messages } from '@trezor/protobuf';
|
|
2
|
+
import type { MessageResponse } from '@trezor/transport-common';
|
|
3
|
+
type AbortableOptions = {
|
|
4
|
+
timeout?: number;
|
|
5
|
+
signal?: AbortSignal;
|
|
6
|
+
};
|
|
7
|
+
type CallResult = {
|
|
8
|
+
success: true;
|
|
9
|
+
payload: MessageResponse;
|
|
10
|
+
} | {
|
|
11
|
+
success: false;
|
|
12
|
+
error: Error;
|
|
13
|
+
};
|
|
14
|
+
type SendResult = {
|
|
15
|
+
success: true;
|
|
16
|
+
payload: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
success: false;
|
|
19
|
+
error: Error;
|
|
20
|
+
};
|
|
21
|
+
export interface TypedCallProvider {
|
|
22
|
+
typedCall: Messages.TypedCall;
|
|
23
|
+
isDisposed: () => boolean;
|
|
24
|
+
cancelCall: () => Promise<CallResult>;
|
|
25
|
+
call: (name: string, data: Record<string, unknown>, options?: AbortableOptions) => Promise<CallResult>;
|
|
26
|
+
send: (name: string, data: Record<string, unknown>, options?: AbortableOptions) => Promise<SendResult>;
|
|
27
|
+
receive: (options?: AbortableOptions) => Promise<CallResult>;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { CoreEventMessage } from '@trezor/connect-common';
|
|
2
|
+
import type { IDevice } from "./idevice.js";
|
|
3
|
+
export interface WorkflowMethod {
|
|
4
|
+
preauthorized?: boolean;
|
|
5
|
+
useCardanoDerivation: boolean;
|
|
6
|
+
}
|
|
7
|
+
export type WorkflowContext = {
|
|
8
|
+
device: IDevice;
|
|
9
|
+
method: WorkflowMethod;
|
|
10
|
+
signal: AbortSignal;
|
|
11
|
+
sendCoreMessage: (message: CoreEventMessage) => void;
|
|
12
|
+
};
|
|
13
|
+
export type TpnWorkflowContext = {
|
|
14
|
+
device: IDevice;
|
|
15
|
+
message: number[];
|
|
16
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { BitcoinNetworkInfo, CoinInfo } from '@trezor/connect-common';
|
|
2
|
+
type Bip44Options = {
|
|
3
|
+
purpose?: number;
|
|
4
|
+
coinType?: number;
|
|
5
|
+
};
|
|
6
|
+
export declare const getAccountAddressN: (coinInfo: CoinInfo, accountIndex: number, bip44?: Bip44Options) => number[];
|
|
7
|
+
export declare const getAccountLabel: (path: number[], coinInfo: CoinInfo) => string;
|
|
8
|
+
export declare const getPublicKeyLabel: (path: number[], coinInfo?: BitcoinNetworkInfo) => string;
|
|
9
|
+
export declare const isUtxoBased: (coinInfo: CoinInfo) => boolean;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { ERRORS } from "@trezor/connect-common/lib/constants/index.js";
|
|
2
|
+
import { fromHardenedPathPart, toHardenedPathPart } from "@trezor/crypto-utils";
|
|
3
|
+
import { getCoinName } from "../data/coinInfo.js";
|
|
4
|
+
export const getAccountAddressN = (coinInfo, accountIndex, bip44) => {
|
|
5
|
+
if (!coinInfo) {
|
|
6
|
+
throw ERRORS.TypedError('Method_UnknownCoin');
|
|
7
|
+
}
|
|
8
|
+
const index = typeof accountIndex === 'number' ? accountIndex : 0;
|
|
9
|
+
const options = {
|
|
10
|
+
purpose: 44,
|
|
11
|
+
coinType: coinInfo.slip44,
|
|
12
|
+
...bip44
|
|
13
|
+
};
|
|
14
|
+
if (coinInfo.type === 'bitcoin') {
|
|
15
|
+
return [toHardenedPathPart(options.purpose), toHardenedPathPart(options.coinType), toHardenedPathPart(index)];
|
|
16
|
+
}
|
|
17
|
+
if (coinInfo.shortcut === 'ADA' || coinInfo.shortcut === 'tADA') {
|
|
18
|
+
return [toHardenedPathPart(1852), toHardenedPathPart(options.coinType), toHardenedPathPart(index)];
|
|
19
|
+
}
|
|
20
|
+
if (coinInfo.type === 'ethereum') {
|
|
21
|
+
return [toHardenedPathPart(options.purpose), toHardenedPathPart(options.coinType), toHardenedPathPart(0), 0, index];
|
|
22
|
+
}
|
|
23
|
+
if (coinInfo.shortcut === 'tXRP') {
|
|
24
|
+
return [toHardenedPathPart(options.purpose), toHardenedPathPart(144), toHardenedPathPart(index), 0, 0];
|
|
25
|
+
}
|
|
26
|
+
return [toHardenedPathPart(options.purpose), toHardenedPathPart(options.coinType), toHardenedPathPart(index), 0, 0];
|
|
27
|
+
};
|
|
28
|
+
export const getAccountLabel = (path, coinInfo) => {
|
|
29
|
+
if (coinInfo.type === 'bitcoin') {
|
|
30
|
+
const path0 = path[0];
|
|
31
|
+
const path2 = path[2];
|
|
32
|
+
const accountType = fromHardenedPathPart(path0);
|
|
33
|
+
const account = fromHardenedPathPart(path2);
|
|
34
|
+
let prefix = '';
|
|
35
|
+
if (accountType === 48) {
|
|
36
|
+
prefix = 'multisig';
|
|
37
|
+
} else if (accountType === 49 && coinInfo.segwit) {
|
|
38
|
+
prefix = 'segwit';
|
|
39
|
+
} else if (accountType === 44 && coinInfo.segwit) {
|
|
40
|
+
prefix = 'legacy';
|
|
41
|
+
}
|
|
42
|
+
return `${prefix} account #${account + 1}`;
|
|
43
|
+
}
|
|
44
|
+
const path4 = path[4];
|
|
45
|
+
const account = fromHardenedPathPart(path4);
|
|
46
|
+
return `account #${account + 1}`;
|
|
47
|
+
};
|
|
48
|
+
export const getPublicKeyLabel = (path, coinInfo) => {
|
|
49
|
+
let hasSegwit = false;
|
|
50
|
+
let coinLabel = 'Unknown coin';
|
|
51
|
+
if (coinInfo) {
|
|
52
|
+
coinLabel = coinInfo.label;
|
|
53
|
+
hasSegwit = coinInfo.segwit;
|
|
54
|
+
} else {
|
|
55
|
+
coinLabel = getCoinName(path);
|
|
56
|
+
}
|
|
57
|
+
const pubKeyPath0 = path[0];
|
|
58
|
+
const p1 = fromHardenedPathPart(pubKeyPath0);
|
|
59
|
+
const pubKeyPath2 = path[2];
|
|
60
|
+
let account = path.length >= 3 ? fromHardenedPathPart(pubKeyPath2) : -1;
|
|
61
|
+
let realAccountId = account + 1;
|
|
62
|
+
let prefix = 'Export public key';
|
|
63
|
+
let accountType = '';
|
|
64
|
+
if (p1 === 45342) {
|
|
65
|
+
const pubKeyPath1 = path[1];
|
|
66
|
+
const p2 = fromHardenedPathPart(pubKeyPath1);
|
|
67
|
+
const pubKeyPath3 = path[3];
|
|
68
|
+
account = fromHardenedPathPart(pubKeyPath3);
|
|
69
|
+
realAccountId = account + 1;
|
|
70
|
+
prefix = 'Export Copay ID of';
|
|
71
|
+
if (p2 === 48) {
|
|
72
|
+
accountType = 'multisig';
|
|
73
|
+
} else if (p2 === 44) {
|
|
74
|
+
accountType = 'legacy';
|
|
75
|
+
}
|
|
76
|
+
} else if (p1 === 48) {
|
|
77
|
+
accountType = `${coinLabel} multisig`;
|
|
78
|
+
} else if (p1 === 44 && hasSegwit) {
|
|
79
|
+
accountType = `${coinLabel} legacy`;
|
|
80
|
+
} else if (p1 === 84 && hasSegwit) {
|
|
81
|
+
accountType = `${coinLabel} native segwit`;
|
|
82
|
+
} else {
|
|
83
|
+
accountType = coinLabel;
|
|
84
|
+
}
|
|
85
|
+
if (realAccountId > 0) {
|
|
86
|
+
return `${prefix} of ${accountType} account #${realAccountId}`;
|
|
87
|
+
}
|
|
88
|
+
return prefix;
|
|
89
|
+
};
|
|
90
|
+
export const isUtxoBased = coinInfo => coinInfo.type === 'bitcoin' || coinInfo.shortcut === 'ADA' || coinInfo.shortcut === 'tADA';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { DeviceModelInternal, FirmwareRelease, FirmwareReleaseConfig } from '@trezor/device-utils';
|
|
2
|
+
import { FirmwareType } from '@trezor/device-utils';
|
|
3
|
+
import type { VersionArray } from '@trezor/utils/lib/versionUtils';
|
|
4
|
+
import type { HttpRequestOptions, HttpRequestReturnType, HttpRequestType } from "./assetsTypes.js";
|
|
5
|
+
export declare class HttpRequestError extends Error {
|
|
6
|
+
response: Response;
|
|
7
|
+
constructor(response: Response);
|
|
8
|
+
}
|
|
9
|
+
export declare const getReleasesAssetByDeviceModelAndFirmwareType: (deviceModel: DeviceModelInternal, firmwareType: FirmwareType) => FirmwareRelease[];
|
|
10
|
+
export declare const getReleaseAsset: (deviceModel: DeviceModelInternal, version: VersionArray, firmwareType: FirmwareType) => FirmwareRelease;
|
|
11
|
+
export declare const firmwareReleaseConfigAssets: FirmwareReleaseConfig;
|
|
12
|
+
export declare const tryLocalAssetRequire: (url: string) => unknown;
|
|
13
|
+
export declare const httpRequest: <T extends HttpRequestType>(url: string, type?: T, options?: HttpRequestOptions) => Promise<HttpRequestReturnType<T>>;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { firmwareAssets } from "@trezor/connect-data";
|
|
2
|
+
import connectDataCoinsEth from "@trezor/connect-data/files/coins-eth.json" with { type: "json" };
|
|
3
|
+
import connectDataCoins from "@trezor/connect-data/files/coins.json" with { type: "json" };
|
|
4
|
+
import firmwareReleaseConfigAssetsJson from "@trezor/connect-data/files/firmware/release/releases.v1.json" with { type: "json" };
|
|
5
|
+
import { FirmwareType } from "@trezor/device-utils";
|
|
6
|
+
import { versionUtils } from "@trezor/utils";
|
|
7
|
+
export class HttpRequestError extends Error {
|
|
8
|
+
response;
|
|
9
|
+
constructor(response) {
|
|
10
|
+
const message = `${response.status} while fetching ${response.url}`;
|
|
11
|
+
super(message);
|
|
12
|
+
this.response = response;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export const getReleasesAssetByDeviceModelAndFirmwareType = (deviceModel, firmwareType) => {
|
|
16
|
+
const firmwareTypeInFileName = firmwareType === FirmwareType.BitcoinOnly ? 'bitcoinonly' : 'universal';
|
|
17
|
+
const availableReleasesRecord = firmwareAssets?.[deviceModel.toLowerCase()]?.[firmwareTypeInFileName] ?? {};
|
|
18
|
+
return Object.values(availableReleasesRecord).sort((a, b) => versionUtils.isNewer(b.version, a.version) ? 1 : -1);
|
|
19
|
+
};
|
|
20
|
+
export const getReleaseAsset = (deviceModel, version, firmwareType) => {
|
|
21
|
+
const firmwareTypeInFileName = firmwareType === FirmwareType.BitcoinOnly ? 'bitcoinonly' : 'universal';
|
|
22
|
+
const fileName = `${deviceModel.toLowerCase()}-${version.join('.')}-${firmwareTypeInFileName}`;
|
|
23
|
+
const deviceModelLower = deviceModel.toLowerCase();
|
|
24
|
+
const asset = firmwareAssets?.[deviceModelLower]?.[firmwareTypeInFileName]?.[fileName];
|
|
25
|
+
return asset;
|
|
26
|
+
};
|
|
27
|
+
export const firmwareReleaseConfigAssets = firmwareReleaseConfigAssetsJson;
|
|
28
|
+
export const tryLocalAssetRequire = url => {
|
|
29
|
+
const fileUrl = url.split('?')[0];
|
|
30
|
+
switch (fileUrl) {
|
|
31
|
+
case './data/coins.json':
|
|
32
|
+
return connectDataCoins;
|
|
33
|
+
case './data/coins-eth.json':
|
|
34
|
+
return connectDataCoinsEth;
|
|
35
|
+
}
|
|
36
|
+
return null;
|
|
37
|
+
};
|
|
38
|
+
export const httpRequest = async (url, type = 'text', options) => {
|
|
39
|
+
const init = {
|
|
40
|
+
...options,
|
|
41
|
+
credentials: 'same-origin'
|
|
42
|
+
};
|
|
43
|
+
const response = await fetch(url, init);
|
|
44
|
+
if (response.ok) {
|
|
45
|
+
if (type === 'json') {
|
|
46
|
+
const txt = await response.text();
|
|
47
|
+
return JSON.parse(txt);
|
|
48
|
+
}
|
|
49
|
+
if (type === 'binary') {
|
|
50
|
+
return response.arrayBuffer();
|
|
51
|
+
}
|
|
52
|
+
return response.text();
|
|
53
|
+
}
|
|
54
|
+
throw new HttpRequestError(response);
|
|
55
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { httpRequest } from "./assetUtils.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { httpRequest } from "./assetUtils.js";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import fetch from "cross-fetch";
|
|
2
|
+
import { promises as fs } from "fs";
|
|
3
|
+
import { httpRequest as browserHttpRequest, tryLocalAssetRequire } from "./assetUtils.js";
|
|
4
|
+
if (global && typeof global.fetch !== 'function') {
|
|
5
|
+
global.fetch = fetch;
|
|
6
|
+
}
|
|
7
|
+
export function httpRequest(url, type, options) {
|
|
8
|
+
const asset = options?.skipLocalForceDownload ? null : tryLocalAssetRequire(url);
|
|
9
|
+
if (!asset) {
|
|
10
|
+
return /^https?/.test(url) ? browserHttpRequest(url, type, options) : fs.readFile(url);
|
|
11
|
+
}
|
|
12
|
+
return asset;
|
|
13
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { HttpRequestError, tryLocalAssetRequire } from "./assetUtils.js";
|
|
2
|
+
export function httpRequest(url, type, options) {
|
|
3
|
+
const asset = options?.skipLocalForceDownload ? null : tryLocalAssetRequire(url);
|
|
4
|
+
if (!asset) {
|
|
5
|
+
return fetch(url, {
|
|
6
|
+
...options
|
|
7
|
+
}).then(response => {
|
|
8
|
+
if (!response.ok) {
|
|
9
|
+
throw new HttpRequestError(response);
|
|
10
|
+
}
|
|
11
|
+
if (type === 'binary') {
|
|
12
|
+
return response.arrayBuffer();
|
|
13
|
+
}
|
|
14
|
+
if (type === 'json') {
|
|
15
|
+
return response.json();
|
|
16
|
+
}
|
|
17
|
+
return response.text();
|
|
18
|
+
}).catch(error => {
|
|
19
|
+
throw error;
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
return asset;
|
|
23
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export type HttpRequestType = 'text' | 'binary' | 'json';
|
|
2
|
+
export type HttpRequestReturnType<T extends HttpRequestType> = T extends 'text' ? string : T extends 'binary' ? ArrayBuffer | Buffer : T extends 'json' ? Record<string, any> : never;
|
|
3
|
+
export interface HttpRequestOptions extends RequestInit {
|
|
4
|
+
skipLocalForceDownload?: boolean;
|
|
5
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { MessagesSchema as PROTO } from '@trezor/protobuf';
|
|
2
|
+
type BuildOutputDescriptorBip380Params = {
|
|
3
|
+
coin?: string;
|
|
4
|
+
account: number;
|
|
5
|
+
purpose?: number;
|
|
6
|
+
scriptType?: PROTO.InternalInputScriptType;
|
|
7
|
+
xpub: string;
|
|
8
|
+
rootFingerprint?: number;
|
|
9
|
+
descriptor?: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const buildOutputDescriptor: ({
|
|
12
|
+
coin,
|
|
13
|
+
account,
|
|
14
|
+
purpose,
|
|
15
|
+
scriptType,
|
|
16
|
+
xpub,
|
|
17
|
+
rootFingerprint,
|
|
18
|
+
descriptor
|
|
19
|
+
}: BuildOutputDescriptorBip380Params) => string | undefined;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { CoinInfo, Features } from '@trezor/connect-common';
|
|
2
|
+
import { DeviceModelInternal } from '@trezor/device-utils';
|
|
3
|
+
import type { MessagesSchema as PROTO } from '@trezor/protobuf';
|
|
4
|
+
export declare const parseCapabilities: (features?: Features) => PROTO.Capability[];
|
|
5
|
+
export declare const getUnavailableCapabilities: (features: Features, coins: CoinInfo[]) => Partial<Record<import("@trezor/connect-common").FirmwareCapability | (string & {}), import("@trezor/connect-common").UnavailableCapability>>;
|
|
6
|
+
export declare const parseRevision: (features: Features) => string | null;
|
|
7
|
+
export declare const ensureInternalModelFeature: (model: Features["model"]) => DeviceModelInternal;
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { DeviceModelInternal, getFirmwareOrBootloaderVersionArray } from "@trezor/device-utils";
|
|
2
|
+
import { isArrayMember, versionUtils } from "@trezor/utils";
|
|
3
|
+
import { isDebugFirmware } from "./firmwareUtils.js";
|
|
4
|
+
import { config } from "../data/config.js";
|
|
5
|
+
const DEFAULT_CAPABILITIES_T1 = ['Capability_Bitcoin', 'Capability_Bitcoin_like', 'Capability_Crypto', 'Capability_Ethereum', 'Capability_Stellar', 'Capability_U2F'];
|
|
6
|
+
const DEFAULT_CAPABILITIES_TT = ['Capability_Bitcoin', 'Capability_Bitcoin_like', 'Capability_Cardano', 'Capability_Crypto', 'Capability_Ethereum', 'Capability_Monero', 'Capability_Ripple', 'Capability_Solana', 'Capability_Stellar', 'Capability_Tezos', 'Capability_U2F'];
|
|
7
|
+
export const parseCapabilities = features => {
|
|
8
|
+
if (!features || features.firmware_present === false) return [];
|
|
9
|
+
if (!features.capabilities?.length) {
|
|
10
|
+
return features.major_version === 1 ? DEFAULT_CAPABILITIES_T1 : DEFAULT_CAPABILITIES_TT;
|
|
11
|
+
}
|
|
12
|
+
return features.capabilities;
|
|
13
|
+
};
|
|
14
|
+
export const getUnavailableCapabilities = (features, coins) => {
|
|
15
|
+
const {
|
|
16
|
+
capabilities
|
|
17
|
+
} = features;
|
|
18
|
+
const list = {};
|
|
19
|
+
if (!capabilities) return list;
|
|
20
|
+
const fw = getFirmwareOrBootloaderVersionArray(features).join('.');
|
|
21
|
+
const key = features.internal_model;
|
|
22
|
+
const supported = coins.filter(info => {
|
|
23
|
+
if (!info.support || info.support[key] === false) {
|
|
24
|
+
const shortcut = info.shortcut.toLowerCase();
|
|
25
|
+
const occurrences = coins.filter(coin => shortcut == coin.shortcut.toLowerCase());
|
|
26
|
+
const allUnsupported = occurrences.every(info2 => !info2.support || info2.support[key] === false);
|
|
27
|
+
if (allUnsupported) {
|
|
28
|
+
list[shortcut] = 'no-support';
|
|
29
|
+
}
|
|
30
|
+
return false;
|
|
31
|
+
}
|
|
32
|
+
return true;
|
|
33
|
+
});
|
|
34
|
+
const unavailable = supported.filter(info => {
|
|
35
|
+
if (info.type === 'bitcoin') {
|
|
36
|
+
if (info.name === 'Bitcoin' || info.name === 'Testnet' || info.name === 'Regtest') {
|
|
37
|
+
return !capabilities.includes('Capability_Bitcoin');
|
|
38
|
+
}
|
|
39
|
+
return !capabilities.includes('Capability_Bitcoin_like');
|
|
40
|
+
}
|
|
41
|
+
if (info.type === 'ethereum') {
|
|
42
|
+
return !capabilities.includes('Capability_Ethereum');
|
|
43
|
+
}
|
|
44
|
+
if ((info.shortcut === 'TRX' || info.shortcut === 'tTRX') && info.type === 'misc') {
|
|
45
|
+
return !capabilities.includes('Capability_Tron');
|
|
46
|
+
}
|
|
47
|
+
if (info.shortcut === 'ADA' || info.shortcut === 'tADA') {
|
|
48
|
+
return !capabilities.includes('Capability_Cardano');
|
|
49
|
+
}
|
|
50
|
+
if (info.shortcut === 'XRP' || info.shortcut === 'tXRP') {
|
|
51
|
+
return !capabilities.includes('Capability_Ripple');
|
|
52
|
+
}
|
|
53
|
+
if (info.shortcut === 'XLM' || info.shortcut === 'tXLM') {
|
|
54
|
+
return !capabilities.includes('Capability_Stellar');
|
|
55
|
+
}
|
|
56
|
+
if (info.shortcut === 'SOL' || info.shortcut === 'DSOL') {
|
|
57
|
+
return !capabilities.includes('Capability_Solana');
|
|
58
|
+
}
|
|
59
|
+
return !isArrayMember(`Capability_${info.name}`, capabilities);
|
|
60
|
+
});
|
|
61
|
+
unavailable.forEach(info => {
|
|
62
|
+
list[info.shortcut.toLowerCase()] = 'no-capability';
|
|
63
|
+
});
|
|
64
|
+
supported.filter(info => !unavailable.includes(info)).forEach(info => {
|
|
65
|
+
const supportVersion = info.support[key];
|
|
66
|
+
if (typeof supportVersion === 'string' && versionUtils.isNewer(supportVersion, fw)) {
|
|
67
|
+
list[info.shortcut.toLowerCase()] = 'update-required';
|
|
68
|
+
unavailable.push(info);
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
const isDebug = isDebugFirmware(features);
|
|
72
|
+
config.supportedFirmware.forEach(s => {
|
|
73
|
+
if (!s.capabilities) return;
|
|
74
|
+
if (s.firmwareType && s.firmwareType === 'debug' !== isDebug) return;
|
|
75
|
+
const min = s.min ? s.min[key] : null;
|
|
76
|
+
const max = s.max ? s.max[key] : null;
|
|
77
|
+
if (min && (min === '0' || versionUtils.isNewer(min, fw))) {
|
|
78
|
+
const value = min === '0' ? 'no-support' : 'update-required';
|
|
79
|
+
s.capabilities.forEach(m => {
|
|
80
|
+
list[m] = value;
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
if (max && !versionUtils.isNewerOrEqual(max, fw)) {
|
|
84
|
+
s.capabilities.forEach(m => {
|
|
85
|
+
list[m] = 'trezor-connect-outdated';
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
return list;
|
|
90
|
+
};
|
|
91
|
+
export const parseRevision = features => {
|
|
92
|
+
const {
|
|
93
|
+
revision
|
|
94
|
+
} = features;
|
|
95
|
+
if (!revision) return null;
|
|
96
|
+
if (/^(?=.*[a-f])([a-f0-9]*)$/gi.test(revision)) return revision;
|
|
97
|
+
const revisionUtf8 = Buffer.from(revision, 'hex').toString('utf-8');
|
|
98
|
+
return /^([a-f0-9])*$/gi.test(revisionUtf8) ? revisionUtf8 : revision;
|
|
99
|
+
};
|
|
100
|
+
export const ensureInternalModelFeature = model => {
|
|
101
|
+
switch (model.toUpperCase()) {
|
|
102
|
+
case 'T':
|
|
103
|
+
return DeviceModelInternal.T2T1;
|
|
104
|
+
case '1':
|
|
105
|
+
return DeviceModelInternal.T1B1;
|
|
106
|
+
default:
|
|
107
|
+
return DeviceModelInternal.UNKNOWN;
|
|
108
|
+
}
|
|
109
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { FirmwareChannel } from '@trezor/connect-common/lib/types/firmware';
|
|
2
|
+
import type { FirmwareReleaseConfig } from '@trezor/device-utils';
|
|
3
|
+
interface RemoteBaseInfo {
|
|
4
|
+
BASE_URL: string;
|
|
5
|
+
MIDDLE_PATH: string;
|
|
6
|
+
}
|
|
7
|
+
type OnlineFirmwareBaseUrl = RemoteBaseInfo & {
|
|
8
|
+
firmwareChannel: FirmwareChannel;
|
|
9
|
+
};
|
|
10
|
+
export declare const getOnlineFirmwareBaseUrl: (firmwareChannel?: FirmwareChannel) => OnlineFirmwareBaseUrl;
|
|
11
|
+
export declare const getFirmwareReleaseConfig: (firmwareChannel?: FirmwareChannel) => Promise<{
|
|
12
|
+
config: FirmwareReleaseConfig;
|
|
13
|
+
isRemote: boolean;
|
|
14
|
+
}>;
|
|
15
|
+
export declare const getOnlyLocalFirmwareReleaseConfig: () => {
|
|
16
|
+
config: FirmwareReleaseConfig;
|
|
17
|
+
isRemote: false;
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { decode, verify } from "jws";
|
|
2
|
+
import { getFirmwareReleaseJwsPublicKey } from "@trezor/connect-data";
|
|
3
|
+
import { firmwareReleaseConfigAssets } from "./assetUtils.js";
|
|
4
|
+
const RELEASES_URL_REMOTE_BASE = {
|
|
5
|
+
BASE_URL: 'https://data.trezor.io',
|
|
6
|
+
MIDDLE_PATH: 'firmware'
|
|
7
|
+
};
|
|
8
|
+
const UNSIGNED_URL_REMOTE_BASE = {
|
|
9
|
+
BASE_URL: 'https://data.trezor.io',
|
|
10
|
+
MIDDLE_PATH: 'dev/firmware/releases/unsigned'
|
|
11
|
+
};
|
|
12
|
+
const UNSIGNED_STABLE_URL_REMOTE_BASE = {
|
|
13
|
+
BASE_URL: 'https://data.trezor.io',
|
|
14
|
+
MIDDLE_PATH: 'dev/firmware/releases/unsigned-stable'
|
|
15
|
+
};
|
|
16
|
+
const SIGNED_URL_REMOTE_BASE = {
|
|
17
|
+
BASE_URL: 'https://suite.corp.sldev.cz',
|
|
18
|
+
MIDDLE_PATH: 'firmware/signed'
|
|
19
|
+
};
|
|
20
|
+
const SIGNED_LOCALHOST = {
|
|
21
|
+
BASE_URL: 'http://localhost:3000',
|
|
22
|
+
MIDDLE_PATH: 'firmware/signed'
|
|
23
|
+
};
|
|
24
|
+
const UNSIGNED_LOCALHOST = {
|
|
25
|
+
BASE_URL: 'http://localhost:3000',
|
|
26
|
+
MIDDLE_PATH: 'firmware/unsigned'
|
|
27
|
+
};
|
|
28
|
+
const FIRMWARE_REMOTE_BASE_URLS = {
|
|
29
|
+
production: RELEASES_URL_REMOTE_BASE,
|
|
30
|
+
'production-early-access': RELEASES_URL_REMOTE_BASE,
|
|
31
|
+
'test-unsigned': UNSIGNED_URL_REMOTE_BASE,
|
|
32
|
+
'test-unsigned-stable': UNSIGNED_STABLE_URL_REMOTE_BASE,
|
|
33
|
+
'test-signed': SIGNED_URL_REMOTE_BASE,
|
|
34
|
+
'localhost-unsigned': UNSIGNED_LOCALHOST,
|
|
35
|
+
'localhost-signed': SIGNED_LOCALHOST
|
|
36
|
+
};
|
|
37
|
+
export const getOnlineFirmwareBaseUrl = firmwareChannel => {
|
|
38
|
+
if (!firmwareChannel) {
|
|
39
|
+
return {
|
|
40
|
+
...FIRMWARE_REMOTE_BASE_URLS['production'],
|
|
41
|
+
firmwareChannel: 'production'
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
return {
|
|
45
|
+
...FIRMWARE_REMOTE_BASE_URLS[firmwareChannel],
|
|
46
|
+
firmwareChannel
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
const JWS_CONFIG = {
|
|
50
|
+
SIGN_ALGORITHM: 'ES256',
|
|
51
|
+
VERSION: 1,
|
|
52
|
+
REMOTE_FILENAME: 'releases.v1.json',
|
|
53
|
+
REQUEST_TIMEOUT_MS: 5000
|
|
54
|
+
};
|
|
55
|
+
const CONFIG_PATH_BY_CHANNEL = {
|
|
56
|
+
production: 'config/',
|
|
57
|
+
'production-early-access': 'config-early-access/'
|
|
58
|
+
};
|
|
59
|
+
const fetchRemoteJws = async firmwareChannel => {
|
|
60
|
+
const {
|
|
61
|
+
BASE_URL,
|
|
62
|
+
MIDDLE_PATH,
|
|
63
|
+
firmwareChannel: resolvedChannel
|
|
64
|
+
} = getOnlineFirmwareBaseUrl(firmwareChannel);
|
|
65
|
+
const configPath = CONFIG_PATH_BY_CHANNEL[resolvedChannel] ?? '';
|
|
66
|
+
const path = `${MIDDLE_PATH}/${configPath}${JWS_CONFIG.REMOTE_FILENAME}`;
|
|
67
|
+
const remoteReleasesUrl = new URL(path, BASE_URL);
|
|
68
|
+
try {
|
|
69
|
+
const controller = new AbortController();
|
|
70
|
+
const timeoutId = setTimeout(() => controller.abort('Request timed out'), JWS_CONFIG.REQUEST_TIMEOUT_MS);
|
|
71
|
+
const response = await fetch(remoteReleasesUrl.toString(), {
|
|
72
|
+
signal: controller.signal
|
|
73
|
+
});
|
|
74
|
+
clearTimeout(timeoutId);
|
|
75
|
+
if (!response.ok) {
|
|
76
|
+
throw new Error(`HTTP error! Status: ${response.status}`);
|
|
77
|
+
}
|
|
78
|
+
const data = await response.json();
|
|
79
|
+
if (typeof data.jws !== 'string') {
|
|
80
|
+
throw new Error('Invalid response format: "jws" property missing or not a string.');
|
|
81
|
+
}
|
|
82
|
+
return {
|
|
83
|
+
jws: data.jws,
|
|
84
|
+
firmwareChannel: resolvedChannel
|
|
85
|
+
};
|
|
86
|
+
} catch (error) {
|
|
87
|
+
throw new Error(`Failed to fetch remote JWS: ${error instanceof Error ? error.message : String(error)}`);
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
const verifyAndDecodeJws = (jws, publicKey) => {
|
|
91
|
+
const decoded = decode(jws);
|
|
92
|
+
if (!decoded?.payload || !decoded.header) {
|
|
93
|
+
throw new Error('Invalid JWS structure.');
|
|
94
|
+
}
|
|
95
|
+
const parsedPayload = JSON.parse(decoded.payload);
|
|
96
|
+
if (decoded.header.alg !== JWS_CONFIG.SIGN_ALGORITHM) {
|
|
97
|
+
throw new Error('Invalid JWS algorithm');
|
|
98
|
+
}
|
|
99
|
+
if (parsedPayload.version !== JWS_CONFIG.VERSION) {
|
|
100
|
+
throw new Error('Config version mismatch.');
|
|
101
|
+
}
|
|
102
|
+
if (!verify(jws, JWS_CONFIG.SIGN_ALGORITHM, publicKey)) {
|
|
103
|
+
throw new Error('JWS signature is invalid.');
|
|
104
|
+
}
|
|
105
|
+
return parsedPayload;
|
|
106
|
+
};
|
|
107
|
+
export const getFirmwareReleaseConfig = async firmwareChannel => {
|
|
108
|
+
try {
|
|
109
|
+
const {
|
|
110
|
+
jws,
|
|
111
|
+
firmwareChannel: resolvedChannel
|
|
112
|
+
} = await fetchRemoteJws(firmwareChannel);
|
|
113
|
+
const useProductionKey = ['test-signed', 'production-early-access', 'production'].includes(resolvedChannel);
|
|
114
|
+
const publicKey = getFirmwareReleaseJwsPublicKey(useProductionKey);
|
|
115
|
+
const remoteConfig = verifyAndDecodeJws(jws, publicKey);
|
|
116
|
+
if (remoteConfig.sequence > firmwareReleaseConfigAssets.sequence) {
|
|
117
|
+
return {
|
|
118
|
+
config: remoteConfig,
|
|
119
|
+
isRemote: true
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
} catch {}
|
|
123
|
+
return {
|
|
124
|
+
config: firmwareReleaseConfigAssets,
|
|
125
|
+
isRemote: false
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
export const getOnlyLocalFirmwareReleaseConfig = () => ({
|
|
129
|
+
config: firmwareReleaseConfigAssets,
|
|
130
|
+
isRemote: false
|
|
131
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { CurrentVersion, Features, FirmwareChannel, StrictFeatures } from '@trezor/connect-common';
|
|
2
|
+
import { type DeviceModelInternal, type FirmwareRelease, FirmwareType } from '@trezor/device-utils';
|
|
3
|
+
import { type VersionArray } from '@trezor/utils';
|
|
4
|
+
export declare const isStrictFeatures: (extFeatures: Features) => extFeatures is StrictFeatures;
|
|
5
|
+
type VersionCheckProperty = 'min_firmware_version' | 'min_bootloader_version';
|
|
6
|
+
export declare const findBestCompatibleRelease: (availableFirmwares: FirmwareRelease[], currentVesion: CurrentVersion, checkProperty: VersionCheckProperty) => FirmwareRelease | undefined;
|
|
7
|
+
export declare const buildLocalReleaseName: (firmwareType: FirmwareType, deviceModel: DeviceModelInternal, version: VersionArray) => string;
|
|
8
|
+
export declare const buildLocalFirmwareFileName: (firmwareType: FirmwareType, deviceModel: DeviceModelInternal, version: VersionArray) => string;
|
|
9
|
+
export declare const buildIntermediaryFirmwareFileName: (internalModel: DeviceModelInternal, version: number) => string;
|
|
10
|
+
export declare const getFirmwareMode: (features: Features) => "normal" | "bootloader" | "initialize" | "seedless";
|
|
11
|
+
export declare const isDebugFirmware: (features: Features) => boolean;
|
|
12
|
+
export declare const getFirmwareType: (features: Features) => FirmwareType;
|
|
13
|
+
export declare const isProductionFirmwareChannel: (firmwareChannel?: FirmwareChannel) => firmwareChannel is "production" | "production-early-access" | undefined;
|
|
14
|
+
export declare const isFirmwareCacheUsedForSelectedSource: (firmwareChannel?: FirmwareChannel) => firmwareChannel is "production" | "production-early-access" | undefined;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { FirmwareType } from "@trezor/device-utils";
|
|
2
|
+
import { versionUtils } from "@trezor/utils";
|
|
3
|
+
export const isStrictFeatures = extFeatures => [1, 2].includes(extFeatures.major_version) && (extFeatures.firmware_present === false || extFeatures.bootloader_mode == null || extFeatures.bootloader_mode === true);
|
|
4
|
+
export const findBestCompatibleRelease = (availableFirmwares, currentVesion, checkProperty) => {
|
|
5
|
+
if (!availableFirmwares || availableFirmwares.length === 0) {
|
|
6
|
+
return;
|
|
7
|
+
}
|
|
8
|
+
const currentFirmwareVersion = currentVesion.firmwareVersion;
|
|
9
|
+
const currentBootloaderVersion = currentVesion.bootloaderVersion;
|
|
10
|
+
let versionToCompare = currentFirmwareVersion;
|
|
11
|
+
if (checkProperty === 'min_bootloader_version' && currentBootloaderVersion) {
|
|
12
|
+
versionToCompare = currentBootloaderVersion;
|
|
13
|
+
} else if (checkProperty === 'min_bootloader_version' && currentFirmwareVersion) {
|
|
14
|
+
const currentRelease = availableFirmwares.find(fw => versionUtils.isEqual(currentFirmwareVersion, fw.version));
|
|
15
|
+
if (!currentRelease?.bootloader_version) {
|
|
16
|
+
return;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
if (!versionToCompare) {
|
|
20
|
+
return;
|
|
21
|
+
}
|
|
22
|
+
const sortedFirmwares = availableFirmwares.sort((a, b) => versionUtils.isNewer(b.version, a.version) ? 1 : -1);
|
|
23
|
+
const compatibleFirmware = sortedFirmwares.find(fw => versionUtils.isNewerOrEqual(versionToCompare, fw[checkProperty]));
|
|
24
|
+
return compatibleFirmware;
|
|
25
|
+
};
|
|
26
|
+
const buildLocalFileBaseName = (firmwareType, deviceModel, version) => {
|
|
27
|
+
const firmwareSuffix = firmwareType === FirmwareType.BitcoinOnly ? '-bitcoinonly' : '';
|
|
28
|
+
const model = deviceModel.toLowerCase();
|
|
29
|
+
const versionString = version.join('.');
|
|
30
|
+
return `trezor-${model}-${versionString}${firmwareSuffix}`;
|
|
31
|
+
};
|
|
32
|
+
export const buildLocalReleaseName = (firmwareType, deviceModel, version) => `${buildLocalFileBaseName(firmwareType, deviceModel, version)}.json`;
|
|
33
|
+
export const buildLocalFirmwareFileName = (firmwareType, deviceModel, version) => `${buildLocalFileBaseName(firmwareType, deviceModel, version)}.bin`;
|
|
34
|
+
export const buildIntermediaryFirmwareFileName = (internalModel, version) => `trezor-${internalModel.toLowerCase()}-inter-v${version}.bin`;
|
|
35
|
+
export const getFirmwareMode = features => {
|
|
36
|
+
if (features.bootloader_mode) return 'bootloader';
|
|
37
|
+
if (!features.initialized) return 'initialize';
|
|
38
|
+
if (features.no_backup) return 'seedless';
|
|
39
|
+
return 'normal';
|
|
40
|
+
};
|
|
41
|
+
const PRODUCTION_FIRMWARE_VENDORS = new Set(['Trezor', 'Trezor Bitcoin-only']);
|
|
42
|
+
export const isDebugFirmware = features => !PRODUCTION_FIRMWARE_VENDORS.has(features.fw_vendor ?? '');
|
|
43
|
+
export const getFirmwareType = features => {
|
|
44
|
+
let type = FirmwareType.Universal;
|
|
45
|
+
if (features.fw_vendor === 'Trezor Bitcoin-only') {
|
|
46
|
+
type = FirmwareType.BitcoinOnly;
|
|
47
|
+
} else if (features.fw_vendor === 'Trezor') {
|
|
48
|
+
type = FirmwareType.Universal;
|
|
49
|
+
} else if (getFirmwareMode(features) !== 'bootloader') {
|
|
50
|
+
type = features.capabilities && features.capabilities.length > 0 && !features.capabilities.includes('Capability_Bitcoin_like') ? FirmwareType.BitcoinOnly : FirmwareType.Universal;
|
|
51
|
+
} else if (getFirmwareMode(features) === 'bootloader' && features.unit_btconly) {
|
|
52
|
+
type = FirmwareType.BitcoinOnly;
|
|
53
|
+
}
|
|
54
|
+
return type;
|
|
55
|
+
};
|
|
56
|
+
export const isProductionFirmwareChannel = firmwareChannel => firmwareChannel === undefined || firmwareChannel === 'production' || firmwareChannel === 'production-early-access';
|
|
57
|
+
export const isFirmwareCacheUsedForSelectedSource = firmwareChannel => isProductionFirmwareChannel(firmwareChannel);
|