├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .github ├── ISSUE_TEMPLATE │ └── config.yml └── workflows │ ├── fixup_check.yml │ ├── test.yml │ ├── test_with_trezor-user-env.yml │ └── version_check.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── babel.config.js ├── browserslist ├── docs ├── dependencies.md ├── deployment │ └── index.md ├── events.md ├── index.md ├── methods.md ├── methods │ ├── binanceGetAddress.md │ ├── binanceGetPublicKey.md │ ├── binanceSignTransaction.md │ ├── cardanoGetAddress.md │ ├── cardanoGetNativeScriptHash.md │ ├── cardanoGetPublicKey.md │ ├── cardanoSignTransaction.md │ ├── cipherKeyValue.md │ ├── commonParams.md │ ├── composeTransaction.md │ ├── eosGetPublicKey.md │ ├── eosSignTransaction.md │ ├── ethereumGetAddress.md │ ├── ethereumSignMessage.md │ ├── ethereumSignTransaction.md │ ├── ethereumSignTypedData.md │ ├── ethereumVerifyMessage.md │ ├── getAccountInfo.md │ ├── getAddress.md │ ├── getCoinInfo.md │ ├── getPublicKey.md │ ├── nemGetAddress.md │ ├── nemSignTransaction.md │ ├── path.md │ ├── pushTransaction.md │ ├── requestLogin.md │ ├── resetDevice.md │ ├── rippleGetAddress.md │ ├── rippleSignTransaction.md │ ├── server │ │ ├── server.cs │ │ ├── server.go │ │ ├── server.js │ │ ├── server.php │ │ ├── server.py │ │ └── server.rb │ ├── signMessage.md │ ├── signTransaction.md │ ├── stellarGetAddress.md │ ├── stellarSignTransaction.md │ ├── tezosGetAddress.md │ ├── tezosGetPublicKey.md │ ├── tezosSignTransaction.md │ ├── verifyMessage.md │ └── wipeDevice.md ├── protobuf-type-definitions.md └── supported-coins.md ├── examples ├── .gitignore ├── electron │ ├── main-process │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── electron.js │ │ │ ├── index.html │ │ │ ├── preload.js │ │ │ ├── renderer.js │ │ │ └── trezor-connect-ipc.js │ ├── renderer-with-assets │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── electron.js │ │ │ ├── index.html │ │ │ └── renderer.js │ │ └── webpack │ │ │ ├── config.connect.js │ │ │ ├── config.dev.js │ │ │ ├── config.prod.js │ │ │ └── iframe.html │ └── renderer-with-popup │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ ├── electron.js │ │ ├── index.html │ │ └── renderer.js ├── node │ └── index.js └── webextension │ ├── README.md │ ├── background │ └── index.js │ ├── icons │ └── 48.png │ ├── manifest-firefox.json │ ├── manifest.json │ ├── trezor-usb-permissions.html │ └── vendor │ ├── trezor-connect.js │ ├── trezor-content-script.js │ └── trezor-usb-permissions.js ├── jest.config.integration.js ├── jest.config.unit.js ├── karma.config.production.js ├── package.json ├── robots.txt ├── scripts ├── babel-collect-imports.js ├── build-npm-extended.js ├── build-npm.js ├── check-extended-dependencies.js ├── ci-check-beta-version.sh ├── ci-check-version.js ├── coins-build.sh ├── docker-build.sh ├── protobuf-build.sh └── s3sync.sh ├── shell.nix ├── src ├── data │ ├── coins.json │ ├── config.json │ ├── icons │ │ └── metamask.svg │ └── udev │ │ ├── trezor-udev-2-1.noarch.rpm │ │ └── trezor-udev_2_all.deb ├── flowtype │ ├── empty.js │ ├── index.js │ └── npm │ │ ├── jasmine.js │ │ └── trezor-utxo-lib.js ├── fonts │ ├── icomoon │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── roboto │ │ ├── RobotoZero.eot │ │ ├── RobotoZero.ttf │ │ ├── RobotoZero.woff │ │ ├── roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.eot │ │ ├── roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.svg │ │ ├── roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.ttf │ │ ├── roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.woff │ │ └── roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.woff2 │ └── text-security │ │ ├── disc.svg │ │ ├── text-security-disc.eot │ │ ├── text-security-disc.svg │ │ ├── text-security-disc.ttf │ │ └── text-security-disc.woff ├── html │ ├── extension-permissions.html │ ├── extension.html │ ├── iframe.html │ ├── index.html │ ├── popup.html │ └── webusb.html ├── images │ ├── icon-trezor.png │ ├── icon-trezorT.png │ └── icon-unknown.png ├── js │ ├── backend │ │ └── BlockchainLink.js │ ├── constants │ │ ├── blockchain.js │ │ ├── cardano.js │ │ ├── device.js │ │ ├── errors.js │ │ ├── iframe.js │ │ ├── index.js │ │ ├── network.js │ │ ├── popup.js │ │ ├── transport.js │ │ └── ui.js │ ├── core │ │ ├── Core.js │ │ └── methods │ │ │ ├── AbstractMethod.js │ │ │ ├── ApplyFlags.js │ │ │ ├── ApplySettings.js │ │ │ ├── BackupDevice.js │ │ │ ├── BinanceGetAddress.js │ │ │ ├── BinanceGetPublicKey.js │ │ │ ├── BinanceSignTransaction.js │ │ │ ├── CardanoGetAddress.js │ │ │ ├── CardanoGetNativeScriptHash.js │ │ │ ├── CardanoGetPublicKey.js │ │ │ ├── CardanoSignTransaction.js │ │ │ ├── ChangePin.js │ │ │ ├── CipherKeyValue.js │ │ │ ├── ComposeTransaction.js │ │ │ ├── CustomMessage.js │ │ │ ├── EosGetPublicKey.js │ │ │ ├── EosSignTransaction.js │ │ │ ├── EthereumGetAddress.js │ │ │ ├── EthereumGetPublicKey.js │ │ │ ├── EthereumSignMessage.js │ │ │ ├── EthereumSignTransaction.js │ │ │ ├── EthereumSignTypedData.js │ │ │ ├── EthereumVerifyMessage.js │ │ │ ├── FirmwareUpdate.js │ │ │ ├── GetAccountInfo.js │ │ │ ├── GetAddress.js │ │ │ ├── GetCoinInfo.js │ │ │ ├── GetDeviceState.js │ │ │ ├── GetFeatures.js │ │ │ ├── GetPublicKey.js │ │ │ ├── GetSettings.js │ │ │ ├── LiskDeprecated.js │ │ │ ├── NEMGetAddress.js │ │ │ ├── NEMSignTransaction.js │ │ │ ├── PushTransaction.js │ │ │ ├── RebootToBootloader.js │ │ │ ├── RecoveryDevice.js │ │ │ ├── RequestLogin.js │ │ │ ├── ResetDevice.js │ │ │ ├── RippleGetAddress.js │ │ │ ├── RippleSignTransaction.js │ │ │ ├── SetProxy.js │ │ │ ├── SignMessage.js │ │ │ ├── SignTransaction.js │ │ │ ├── StellarGetAddress.js │ │ │ ├── StellarSignTransaction.js │ │ │ ├── TezosGetAddress.js │ │ │ ├── TezosGetPublicKey.js │ │ │ ├── TezosSignTransaction.js │ │ │ ├── VerifyMessage.js │ │ │ ├── WipeDevice.js │ │ │ ├── blockchain │ │ │ ├── BlockchainDisconnect.js │ │ │ ├── BlockchainEstimateFee.js │ │ │ ├── BlockchainGetAccountBalanceHistory.js │ │ │ ├── BlockchainGetCurrentFiatRates.js │ │ │ ├── BlockchainGetFiatRatesForTimestamps.js │ │ │ ├── BlockchainGetTokenBalance.js │ │ │ ├── BlockchainGetTokenInfo.js │ │ │ ├── BlockchainGetTransactions.js │ │ │ ├── BlockchainSetCustomBackend.js │ │ │ ├── BlockchainSubscribe.js │ │ │ ├── BlockchainSubscribeFiatRates.js │ │ │ ├── BlockchainUnsubscribe.js │ │ │ └── BlockchainUnsubscribeFiatRates.js │ │ │ ├── helpers │ │ │ ├── Discovery.js │ │ │ ├── __fixtures__ │ │ │ │ ├── ethereumSignTypedData.js │ │ │ │ ├── paramsValidator.js │ │ │ │ └── signtxVerify.js │ │ │ ├── __tests__ │ │ │ │ ├── ethereumSignTypedData.test.js │ │ │ │ ├── paramsValidator.test.js │ │ │ │ └── signtxVerify.test.js │ │ │ ├── binanceSignTx.js │ │ │ ├── cardanoAddressParameters.js │ │ │ ├── cardanoAuxiliaryData.js │ │ │ ├── cardanoCertificate.js │ │ │ ├── cardanoInputs.js │ │ │ ├── cardanoOutputs.js │ │ │ ├── cardanoSignTxLegacy.js │ │ │ ├── cardanoTokenBundle.js │ │ │ ├── cardanoWitnesses.js │ │ │ ├── eosSignTx.js │ │ │ ├── ethereumSignTx.js │ │ │ ├── ethereumSignTypedData.js │ │ │ ├── nemSignTx.js │ │ │ ├── paramsValidator.js │ │ │ ├── signtx-legacy.js │ │ │ ├── signtx.js │ │ │ ├── signtxVerify.js │ │ │ ├── stellarSignTx.js │ │ │ ├── tezosSignTx.js │ │ │ └── uploadFirmware.js │ │ │ ├── index.js │ │ │ └── tx │ │ │ ├── Fees.js │ │ │ ├── TransactionComposer.js │ │ │ ├── __fixtures__ │ │ │ └── inputs.js │ │ │ ├── __tests__ │ │ │ ├── inputs.test.js │ │ │ └── refTx.test.js │ │ │ ├── index.js │ │ │ ├── inputs.js │ │ │ ├── outputs.js │ │ │ └── refTx.js │ ├── data │ │ ├── CoinInfo.js │ │ ├── ConnectSettings.js │ │ ├── DataManager.js │ │ ├── FirmwareInfo.js │ │ ├── TransportInfo.js │ │ ├── UdevInfo.js │ │ └── __tests__ │ │ │ ├── CoinInfo.test.js │ │ │ └── ConnectSettings.test.js │ ├── device │ │ ├── AbortController.js │ │ ├── DescriptorStream.js │ │ ├── Device.js │ │ ├── DeviceCommands.js │ │ └── DeviceList.js │ ├── env │ │ ├── browser │ │ │ ├── __tests__ │ │ │ │ └── browserUtils.test.js │ │ │ ├── browserUtils.js │ │ │ ├── index.js │ │ │ ├── networkUtils.js │ │ │ └── workers.js │ │ ├── node │ │ │ ├── index-empty.js │ │ │ ├── index.js │ │ │ ├── networkUtils.js │ │ │ └── workers.js │ │ └── react-native │ │ │ ├── RNUsbPlugin.js │ │ │ ├── index.js │ │ │ ├── networkUtils.js │ │ │ └── workers.js │ ├── iframe │ │ ├── builder.js │ │ ├── iframe.js │ │ └── inline-styles.js │ ├── index.js │ ├── message │ │ ├── builder.js │ │ └── index.js │ ├── plugins │ │ ├── ethereum │ │ │ ├── package.json │ │ │ ├── typedData.js │ │ │ ├── typedData.test.js │ │ │ └── yarn.lock │ │ ├── stellar │ │ │ └── plugin.js │ │ └── webextension │ │ │ ├── README.md │ │ │ ├── trezor-content-script.js │ │ │ ├── trezor-usb-permissions.html │ │ │ └── trezor-usb-permissions.js │ ├── popup │ │ ├── PopupManager.js │ │ ├── popup.js │ │ ├── showPopupRequest.js │ │ └── view │ │ │ ├── browser.js │ │ │ ├── common.js │ │ │ ├── confirmation.js │ │ │ ├── firmwareNotCompatible.js │ │ │ ├── firmwareNotSupported.js │ │ │ ├── firmwareRequiredUpdate.js │ │ │ ├── index.js │ │ │ ├── invalidPassphrase.js │ │ │ ├── notification.js │ │ │ ├── passphrase.js │ │ │ ├── passphraseOnDevice.js │ │ │ ├── permissions.js │ │ │ ├── pin.js │ │ │ ├── requestButton.js │ │ │ ├── selectAccount.js │ │ │ ├── selectDevice.js │ │ │ ├── selectFee.js │ │ │ └── word.js │ ├── storage │ │ └── index.js │ ├── types │ │ ├── __tests__ │ │ │ ├── binance.js │ │ │ ├── bitcoin.js │ │ │ ├── blockchain.js │ │ │ ├── cardano.js │ │ │ ├── eos.js │ │ │ ├── ethereum.js │ │ │ ├── index.js │ │ │ ├── management.js │ │ │ ├── misc.js │ │ │ ├── nem.js │ │ │ ├── ripple.js │ │ │ ├── stellar.js │ │ │ └── tezos.js │ │ ├── account.js │ │ ├── api.js │ │ ├── backend │ │ │ ├── blockchain.js │ │ │ └── transactions.js │ │ ├── events.js │ │ ├── index.js │ │ ├── misc.js │ │ ├── networks │ │ │ ├── binance.js │ │ │ ├── bitcoin.js │ │ │ ├── cardano.js │ │ │ ├── coinInfo.js │ │ │ ├── eos.js │ │ │ ├── ethereum.js │ │ │ ├── nem.js │ │ │ ├── ripple.js │ │ │ ├── stellar.js │ │ │ └── tezos.js │ │ ├── params.js │ │ └── trezor │ │ │ ├── device.js │ │ │ ├── management.js │ │ │ └── protobuf.js │ ├── utils │ │ ├── __fixtures__ │ │ │ ├── addressUtils.js │ │ │ └── hdnodeUtils.js │ │ ├── __tests__ │ │ │ ├── addressUtils.test.js │ │ │ ├── bufferUtils.test.js │ │ │ ├── debug.test.js │ │ │ ├── deviceFeaturesUtils.test.js │ │ │ ├── hdnodeUtils.test.js │ │ │ ├── urlUtils.test.js │ │ │ └── versionUtils.test.js │ │ ├── accountUtils.js │ │ ├── addressUtils.js │ │ ├── bip39.js │ │ ├── bufferUtils.js │ │ ├── debug.js │ │ ├── deferred.js │ │ ├── deviceFeaturesUtils.js │ │ ├── ethereumUtils.js │ │ ├── formatUtils.js │ │ ├── hdnodeUtils.js │ │ ├── interactionTimeout.js │ │ ├── objectUtils.js │ │ ├── pathUtils.js │ │ ├── promiseUtils.js │ │ ├── urlUtils.js │ │ ├── versionUtils.js │ │ └── windowsUtils.js │ └── webusb │ │ ├── button.js │ │ ├── extensionPermissions.js │ │ └── index.js ├── styles │ ├── colors.less │ ├── extensionPermissions.less │ ├── iframe │ │ └── index.less │ ├── popup.less │ ├── popup │ │ ├── alerts.less │ │ ├── aside.less │ │ ├── base.less │ │ ├── buttons.less │ │ ├── fonts.less │ │ ├── footer.less │ │ ├── header.less │ │ ├── inputs.less │ │ ├── loader.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── notification.less │ │ ├── tooltip.less │ │ ├── view.less │ │ └── view │ │ │ ├── accounts.less │ │ │ ├── bootloader.less │ │ │ ├── browser.less │ │ │ ├── checkAddress.less │ │ │ ├── confirmOutput.less │ │ │ ├── connect.less │ │ │ ├── deviceManagement.less │ │ │ ├── exportAccountInfo.less │ │ │ ├── exportAddress.less │ │ │ ├── exportPubKey.less │ │ │ ├── fees.less │ │ │ ├── firmwareNotCompatible.less │ │ │ ├── firmwareUpgrade.less │ │ │ ├── followDevice.less │ │ │ ├── iframeFailure.less │ │ │ ├── initialization.less │ │ │ ├── invalidPassphrase.less │ │ │ ├── noBackup.less │ │ │ ├── passphrase.less │ │ │ ├── permissions.less │ │ │ ├── pin.less │ │ │ ├── selectDevice.less │ │ │ ├── smartphonesNotSupported.less │ │ │ ├── transport.less │ │ │ └── word.less │ └── webusb.less └── ts │ └── types │ ├── __tests__ │ ├── binance.ts │ ├── bitcoin.ts │ ├── blockchain.ts │ ├── cardano.ts │ ├── eos.ts │ ├── ethereum.ts │ ├── index.ts │ ├── management.ts │ ├── misc.ts │ ├── nem.ts │ ├── ripple.ts │ ├── stellar.ts │ └── tezos.ts │ ├── account.d.ts │ ├── api.d.ts │ ├── backend │ ├── blockchain.d.ts │ └── transactions.d.ts │ ├── constants.d.ts │ ├── events.d.ts │ ├── index.d.ts │ ├── misc.d.ts │ ├── networks │ ├── binance.d.ts │ ├── bitcoin.d.ts │ ├── cardano.d.ts │ ├── coinInfo.d.ts │ ├── eos.d.ts │ ├── ethereum.d.ts │ ├── nem.d.ts │ ├── ripple.d.ts │ ├── stellar.d.ts │ └── tezos.d.ts │ ├── params.d.ts │ ├── trezor │ ├── device.d.ts │ ├── management.d.ts │ └── protobuf.d.ts │ └── tsconfig.json ├── tests ├── README.md ├── __fixtures__ │ ├── applyFlags.js │ ├── applySettings.js │ ├── binanceSignTransaction.js │ ├── cardanoGetAddress.js │ ├── cardanoGetNativeScriptHash.js │ ├── cardanoGetPublicKey.js │ ├── cardanoSignTransaction.js │ ├── composeTransaction.js │ ├── eosGetPublicKey.js │ ├── eosSignTransaction.js │ ├── ethereumGetAddress.js │ ├── ethereumGetPublicKey.js │ ├── ethereumSignMessage.js │ ├── ethereumSignTransaction.js │ ├── ethereumSignTransactionEip155.js │ ├── ethereumSignTransactionEip1559.js │ ├── ethereumSignTypedData.js │ ├── ethereumVerifyMessage.js │ ├── getAccountInfo.js │ ├── getAddress.js │ ├── getAddressMultisig.js │ ├── getAddressSegwit.js │ ├── getFeatures.js │ ├── getPublicKey.js │ ├── index.js │ ├── nemGetAddress.js │ ├── nemSignTransactionMosaic.js │ ├── nemSignTransactionMultisig.js │ ├── nemSignTransactionOthers.js │ ├── nemSignTransactionTransfer.js │ ├── resetDevice.js │ ├── rippleGetAddress.js │ ├── rippleSignTransaction.js │ ├── signMessage.js │ ├── signTransaction.js │ ├── signTransactionBcash.js │ ├── signTransactionBech32.js │ ├── signTransactionBgold.js │ ├── signTransactionCapricoin.js │ ├── signTransactionDash.js │ ├── signTransactionDecred.js │ ├── signTransactionDoge.js │ ├── signTransactionExternal.js │ ├── signTransactionKomodo.js │ ├── signTransactionMultisig.js │ ├── signTransactionMultisigChange.js │ ├── signTransactionPeercoin.js │ ├── signTransactionReplace.js │ ├── signTransactionSegwit.js │ ├── signTransactionZcash.js │ ├── stellarGetAddress.js │ ├── stellarSignTransaction.js │ ├── tezosGetAddress.js │ ├── tezosGetPublicKey.js │ ├── verifyMessage.js │ ├── verifyMessageSegwit.js │ ├── verifyMessageSegwitNative.js │ └── wipeDevice.js ├── __txcache__ │ ├── bcash │ │ ├── 502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c.json │ │ └── bc37c28dfb467d2ecb50261387bf752a3977d7e5337915071bb4151e6b711a78.json │ ├── bgold │ │ ├── 6f0398f8bac639312afc2e40210ce5253535f92326167f40e1f38dd7047b00ec.json │ │ ├── 7f1f6bfe8d5a23e038c58bdcf47e6eb3b5ddb93300176b273564951105206b39.json │ │ ├── aae50f8dc1c19c35517e5bbc2214d38e1ce4b4ff7cb3151b5b31bf0f723f8e06.json │ │ └── db7239c358352c10996115b3de9e3f37ea0a97be4ea8c4b9e08996e257a21d0e.json │ ├── bitcoin │ │ ├── 074b0070939db4c2635c1bef0c8e68412ccc8d3c8782137547c7a2bbde073fc0.json │ │ ├── 0dac366fd8a67b2a89fbb0d31086e7acded7a5bbf9ef9daa935bc873229ef5b5.json │ │ ├── 1f326f65768d55ef146efbb345bd87abe84ac7185726d0457a026fc347a26ef3.json │ │ ├── 39a29e954977662ab3879c66fb251ef753e0912223a83d1dcb009111d28265e5.json │ │ ├── 50f6f1209ca92d7359564be803cb2c932cde7d370f7cee50fd1fad6790f6206d.json │ │ ├── 58d56a5d1325cf83543ee4c87fd73a784e4ba1499ced574be359fa2bdcb9ac8e.json │ │ ├── ac4ca0e7827a1228f44449cb57b4b9a809a667ca044dc43bb124627fed4bc10a.json │ │ ├── beafc7cbd873d06dbee88a7002768ad5864228639db514c81cfb29f108bb1e7a.json │ │ ├── c63e24ed820c5851b60c54613fbc4bcb37df6cd49b4c96143e99580a472f79fb.json │ │ └── d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882.json │ ├── dash │ │ ├── 15575a1c874bd60a819884e116c42e6791c8283ce1fc3b79f0d18531a61bbb8a.json │ │ ├── 24522992fb42f85d2d43efa3a1ddb98de23ed28583e19128e6e200a9fa6bc665.json │ │ └── adb43bcd8fc99d6ed353c30ca8e5bd5996cd7bcf719bd4253f103dfb7227f6ed.json │ ├── decred_testnet │ │ ├── 48f5b85f8b1cf796d0d07388ced491f154e2d26b0615529d2d6ba9c170542df3.json │ │ ├── 4d8acde26d5efc7f5df1b3cdada6b11027616520c883e09c919b88f0f0cb6410.json │ │ ├── 51bc9c71f10a81eef3caedb5333062eb4b1f70998adf02916fe98fdc04c572e8.json │ │ ├── 5f3a7d29623eba20788e967439c1ccf122688589dfc07cddcedd1b27dc14b568.json │ │ ├── 9ac7d222f4460ccf4ef38eee047eaf8b3a09505364afe4fe27b765e4c5508fd1.json │ │ ├── f341fde6a78c2e150619d1c5ecbd90fabeb9e278024cc38ea4190d0b4a6d61d8.json │ │ └── f8e2f2b4eab772f6e3743cba92db341f64b84d9c16ae375c7690fbf0bf02fc7b.json │ ├── doge │ │ └── 0a4cb7d5c27455333701f0e53812e4be56a0272ad7f168279acfed7b065ee118.json │ ├── gen-reftx.js │ ├── index.js │ ├── komodo │ │ ├── 2807c5b126ec8e2b078cab0f12e4c8b4ce1d7724905f8ebef8dca26b0c8e0f1d.json │ │ └── 7b28bd91119e9776f0d4ebd80e570165818a829bbf4477cd1afe5149dbcd34b1.json │ ├── peercoin │ │ └── 41b29ad615d8eea40a4654a052d18bb10cd08f203c351f4d241f88b031357d3d.json │ ├── testnet │ │ ├── 005f6f7ff4b70aa09a15b3bc36607d378fad104c4efa4f0a1c8e970538622b3e.json │ │ ├── 0d5b5648d47b5650edea1af3d47bbe5624213abb577cf1b1c96f98321f75cdbc.json │ │ ├── 1010b25957a30110377a33bd3b0bd39045b3cc488d0e534d1ea5ec238812c0fc.json │ │ ├── 16c6c8471b8db7a628f2b2bb86bfeefae1766463ce8692438c7fd3fce3f43ce5.json │ │ ├── 1c022d9da3aa8bc8cf2a617c42c8f2c343e810af76b3ab9770c5ab6ca54ddab5.json │ │ ├── 20912f98ea3ed849042efed0fdac8cb4fc301961c5988cba56902d8ffb61c337.json │ │ ├── 25fee583181847cbe9d9fd9a483a8b8626c99854a72d01de848ef40508d0f3bc.json │ │ ├── 2d5dfc5068b81e25185a655d2dcd10833b2f4e6a3d029c0d40b2fd3b63f09b48.json │ │ ├── 334cd7ad982b3b15d07dd1c84e939e95efb0803071648048a7f289492e7b4c8a.json │ │ ├── 338e2d02e0eaf8848e38925904e51546cf22e58db5b1860c4a0e72b69c56afe5.json │ │ ├── 4012d9abb675243758b8f2cfd0042ce9a6c1459aaf5327dcac16c80f9eff1cbf.json │ │ ├── 4083973799f05c52f556b603ab0f93d9c4c50be50da03c770a492d0990ca7809.json │ │ ├── 43d273d3caf41759ad843474f960fbf80ff2ec961135d018b61e9fab3ad1fc06.json │ │ ├── 56ebd82cdc91548617a1756f8e271dedda94e7c4d267d3c6d4f65d2654e5f3e2.json │ │ ├── 5bf10db6244c703d7f831043e6b6b0d6f3974bb5cf9fd216397e7620dc2e1015.json │ │ ├── 5e7667690076ae4737e2f872005de6f6b57592f32108ed9b301eeece6de24ad6.json │ │ ├── 65b768dacccfb209eebd95a1fb80a04f1dd6a3abc6d7b41d5e9d9f91605b37d9.json │ │ ├── 6673b7248e324882b2f9d02fdd1ff1d0f9ed216a234e836b8d3ac65661cbb457.json │ │ ├── 6b07c1321b52d9c85743f9695e13eb431b41708cdf4e1585258d51208e5b93fc.json │ │ ├── 70f9871eb03a38405cfd7a01e0e1448678132d815e2c9f552ad83ae23969509e.json │ │ ├── 927784e07bbcefc4c738f5c31c7a739978fc86f35514edf7e7da25d53d83030b.json │ │ ├── ae0949b1b050ac6f92c7d9c1570f2f06c21a997eef8be9ef5edc2a38cb92a879.json │ │ ├── afde2d41702948e922150825742cda3294d80d43b8e508865c1e2d648f6d4dae.json │ │ ├── ba917a2b563966e324ab37ed7de5f5cd7503b970b0f0bb9a5208f5835557e99c.json │ │ ├── bb5169091f09e833e155b291b662019df56870effe388c626221c5ea84274bc4.json │ │ ├── d80c34ee14143a8bf61125102b7ef594118a3796cad670fa8ee15080ae155318.json │ │ ├── d830b877c3d9237a0a68be88825a296da01ac282a2efd2f671d8f17f15117b74.json │ │ ├── e294c4c172c3d87991b0369e45d6af8584be92914d01e3060fad1ed31d12ff00.json │ │ ├── e5040e1bc1ae7667ffb9e5248e90b2fb93cd9150234151ce90e14ab2f5933bcd.json │ │ ├── e5b7e21b5ba720e81efd6bfa9f854ababdcddc75a43bfa60bf0fe069cfd1bb8a.json │ │ ├── ec16dc5a539c5d60001a7471c37dbb0b5294c289c77df8bd07870b30d73e2231.json │ │ ├── ed89acb52cfa438e3653007478e7c7feae89fdde12867943eec91293139730d1.json │ │ ├── efaa41ff3e67edf508846c1a1ed56894cfd32725c590300108f40c9edc1aac35.json │ │ └── f405b50dff7053f3697f485f95fe1c0f6a4f5e52446281b4ef470c2762a15dae.json │ ├── zcash │ │ ├── 29d25589db4623d1a33c58745b8f95b131f49841c79dcd171847d0d7e9e2dc3a.json │ │ ├── 4264f5f339c9fd498976dabb6d7b8819e112d25a0c1770a0f3ee81de525de8f8.json │ │ ├── 6df53ccdc6fa17e1cd248f7ec57e86178d6f96f2736bdf978602992b5850ac79.json │ │ ├── 84533aa6244bcee68040d851dc4f502838ed3fd9ce838e2e48dbf440e7f4df2a.json │ │ └── e7e1d11992e8fcb88e051e59c2917d78dd9fcd857ee042e0263e995590f02ee3.json │ └── zcash_testnet │ │ ├── 4b6cecb81c825180786ebe07b65bcc76078afc5be0f1c64e08d764005012380d.json │ │ ├── 86850826b043dd9826b4700c555c06bc8b5713938b4e47cb5ecd60679c6d81dc.json │ │ └── e3820602226974b1dd87b7113cc8aea8c63e5ae29293991e7bfa80c126930368.json ├── __wscache__ │ ├── blockbook.js │ ├── blockfrost.js │ ├── getAccountInfo │ │ ├── 0x3f2329C9ADFbcCd9A84f52c906E936A42dA18CB8.json │ │ ├── 5d010cf16fdeff40955633d6c565f3844a288a24967cf6b76acbeb271b4f13c1f123474e140a2c360b01f0fa66f2f22e2e965a5b07a80358cf75f77abbd66088.json │ │ ├── rfkV3EoXimH6JrG1QAyofgbVhnyZZDjWSj.json │ │ ├── rh5ZnEVySAy7oGd3nebT3wrohGDrsNS83E.json │ │ ├── upub5Eo1frmiD2QQL6L5x5toFyJVZQuFijQTwiDK7S7KDkgCNykDJtG4TApkdv23L5MDLgRuxMJQEucxXVio2ciKCqfx6Y41skKTZhxNjSgJ6pU.json │ │ ├── xpub6D1weXBcFAo8CqBbpP4TbH5sxQH8ZkqC5pDEvJ95rNNBZC9zrKmZP2fXMuve7ZRBe18pWQQsGg68jkq24mZchHwYENd8cCiSb71u3KD4AFH.json │ │ ├── xpub6DExuxjQ16sWy5TF4KkLV65YGqCJ5pyv7Ej7d9yJNAXz7C1M9intqszXfaNZG99KsDJdQ29wUKBTZHZFXUaPbKTZ5Z6f4yowNvAQ8fEJw2G.json │ │ └── ypub6Y5EDdQK9nQzpNeMtgXxhBB3SoLk2SyR2MFLQYsBkAusAHpaQNxTTwefgnL9G3oFGrRS9VkVvyY1SaApFAzQPZ99wto5etdReeE3XFkkMZt.json │ ├── index.js │ ├── ripple.js │ ├── server.js │ └── worker.js ├── api │ └── init.test.js ├── common.setup.js ├── device │ └── methods.test.js ├── get-latest-firmware.js ├── jest.globalSetup.js ├── jest.globalTeardown.js ├── jest.setup.js ├── karma.plugin.js ├── karma.setup.js ├── run.sh └── websocket-client.js ├── webpack ├── config.dev.babel.js ├── config.inline.babel.js ├── config.nodejs.babel.js ├── config.prod.babel.js ├── config.reactnative.babel.js ├── constants.js ├── data.dependencies.js ├── generate_dev_cert.js └── stylesheet.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/fixup_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.github/workflows/fixup_check.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test_with_trezor-user-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.github/workflows/test_with_trezor-user-env.yml -------------------------------------------------------------------------------- /.github/workflows/version_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.github/workflows/version_check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/babel.config.js -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- 1 | # Browsers that we support 2 | > 5% 3 | IE > 9 # sorry 4 | last 10 versions 5 | -------------------------------------------------------------------------------- /docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/dependencies.md -------------------------------------------------------------------------------- /docs/deployment/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/deployment/index.md -------------------------------------------------------------------------------- /docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/events.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods.md -------------------------------------------------------------------------------- /docs/methods/binanceGetAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/binanceGetAddress.md -------------------------------------------------------------------------------- /docs/methods/binanceGetPublicKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/binanceGetPublicKey.md -------------------------------------------------------------------------------- /docs/methods/binanceSignTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/binanceSignTransaction.md -------------------------------------------------------------------------------- /docs/methods/cardanoGetAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/cardanoGetAddress.md -------------------------------------------------------------------------------- /docs/methods/cardanoGetNativeScriptHash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/cardanoGetNativeScriptHash.md -------------------------------------------------------------------------------- /docs/methods/cardanoGetPublicKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/cardanoGetPublicKey.md -------------------------------------------------------------------------------- /docs/methods/cardanoSignTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/cardanoSignTransaction.md -------------------------------------------------------------------------------- /docs/methods/cipherKeyValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/cipherKeyValue.md -------------------------------------------------------------------------------- /docs/methods/commonParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/commonParams.md -------------------------------------------------------------------------------- /docs/methods/composeTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/composeTransaction.md -------------------------------------------------------------------------------- /docs/methods/eosGetPublicKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/eosGetPublicKey.md -------------------------------------------------------------------------------- /docs/methods/eosSignTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/eosSignTransaction.md -------------------------------------------------------------------------------- /docs/methods/ethereumGetAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/ethereumGetAddress.md -------------------------------------------------------------------------------- /docs/methods/ethereumSignMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/ethereumSignMessage.md -------------------------------------------------------------------------------- /docs/methods/ethereumSignTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/ethereumSignTransaction.md -------------------------------------------------------------------------------- /docs/methods/ethereumSignTypedData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/ethereumSignTypedData.md -------------------------------------------------------------------------------- /docs/methods/ethereumVerifyMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/ethereumVerifyMessage.md -------------------------------------------------------------------------------- /docs/methods/getAccountInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/getAccountInfo.md -------------------------------------------------------------------------------- /docs/methods/getAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/getAddress.md -------------------------------------------------------------------------------- /docs/methods/getCoinInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/getCoinInfo.md -------------------------------------------------------------------------------- /docs/methods/getPublicKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/getPublicKey.md -------------------------------------------------------------------------------- /docs/methods/nemGetAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/nemGetAddress.md -------------------------------------------------------------------------------- /docs/methods/nemSignTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/nemSignTransaction.md -------------------------------------------------------------------------------- /docs/methods/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/path.md -------------------------------------------------------------------------------- /docs/methods/pushTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/pushTransaction.md -------------------------------------------------------------------------------- /docs/methods/requestLogin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/requestLogin.md -------------------------------------------------------------------------------- /docs/methods/resetDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/resetDevice.md -------------------------------------------------------------------------------- /docs/methods/rippleGetAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/rippleGetAddress.md -------------------------------------------------------------------------------- /docs/methods/rippleSignTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/rippleSignTransaction.md -------------------------------------------------------------------------------- /docs/methods/server/server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/server/server.cs -------------------------------------------------------------------------------- /docs/methods/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/server/server.go -------------------------------------------------------------------------------- /docs/methods/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/server/server.js -------------------------------------------------------------------------------- /docs/methods/server/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/server/server.php -------------------------------------------------------------------------------- /docs/methods/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/server/server.py -------------------------------------------------------------------------------- /docs/methods/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/server/server.rb -------------------------------------------------------------------------------- /docs/methods/signMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/signMessage.md -------------------------------------------------------------------------------- /docs/methods/signTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/signTransaction.md -------------------------------------------------------------------------------- /docs/methods/stellarGetAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/stellarGetAddress.md -------------------------------------------------------------------------------- /docs/methods/stellarSignTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/stellarSignTransaction.md -------------------------------------------------------------------------------- /docs/methods/tezosGetAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/tezosGetAddress.md -------------------------------------------------------------------------------- /docs/methods/tezosGetPublicKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/tezosGetPublicKey.md -------------------------------------------------------------------------------- /docs/methods/tezosSignTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/tezosSignTransaction.md -------------------------------------------------------------------------------- /docs/methods/verifyMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/verifyMessage.md -------------------------------------------------------------------------------- /docs/methods/wipeDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/methods/wipeDevice.md -------------------------------------------------------------------------------- /docs/protobuf-type-definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/protobuf-type-definitions.md -------------------------------------------------------------------------------- /docs/supported-coins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/docs/supported-coins.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | yarn.lock 2 | build-electron -------------------------------------------------------------------------------- /examples/electron/main-process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/main-process/README.md -------------------------------------------------------------------------------- /examples/electron/main-process/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/main-process/package.json -------------------------------------------------------------------------------- /examples/electron/main-process/src/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/main-process/src/electron.js -------------------------------------------------------------------------------- /examples/electron/main-process/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/main-process/src/index.html -------------------------------------------------------------------------------- /examples/electron/main-process/src/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/main-process/src/preload.js -------------------------------------------------------------------------------- /examples/electron/main-process/src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/main-process/src/renderer.js -------------------------------------------------------------------------------- /examples/electron/main-process/src/trezor-connect-ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/main-process/src/trezor-connect-ipc.js -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/.gitignore: -------------------------------------------------------------------------------- 1 | assets -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/README.md -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/package.json -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/src/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/src/electron.js -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/src/index.html -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/src/renderer.js -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/webpack/config.connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/webpack/config.connect.js -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/webpack/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/webpack/config.dev.js -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/webpack/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/webpack/config.prod.js -------------------------------------------------------------------------------- /examples/electron/renderer-with-assets/webpack/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-assets/webpack/iframe.html -------------------------------------------------------------------------------- /examples/electron/renderer-with-popup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-popup/README.md -------------------------------------------------------------------------------- /examples/electron/renderer-with-popup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-popup/package.json -------------------------------------------------------------------------------- /examples/electron/renderer-with-popup/src/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-popup/src/electron.js -------------------------------------------------------------------------------- /examples/electron/renderer-with-popup/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-popup/src/index.html -------------------------------------------------------------------------------- /examples/electron/renderer-with-popup/src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/electron/renderer-with-popup/src/renderer.js -------------------------------------------------------------------------------- /examples/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/node/index.js -------------------------------------------------------------------------------- /examples/webextension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/README.md -------------------------------------------------------------------------------- /examples/webextension/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/background/index.js -------------------------------------------------------------------------------- /examples/webextension/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/icons/48.png -------------------------------------------------------------------------------- /examples/webextension/manifest-firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/manifest-firefox.json -------------------------------------------------------------------------------- /examples/webextension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/manifest.json -------------------------------------------------------------------------------- /examples/webextension/trezor-usb-permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/trezor-usb-permissions.html -------------------------------------------------------------------------------- /examples/webextension/vendor/trezor-connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/vendor/trezor-connect.js -------------------------------------------------------------------------------- /examples/webextension/vendor/trezor-content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/vendor/trezor-content-script.js -------------------------------------------------------------------------------- /examples/webextension/vendor/trezor-usb-permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/examples/webextension/vendor/trezor-usb-permissions.js -------------------------------------------------------------------------------- /jest.config.integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/jest.config.integration.js -------------------------------------------------------------------------------- /jest.config.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/jest.config.unit.js -------------------------------------------------------------------------------- /karma.config.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/karma.config.production.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/package.json -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /scripts/babel-collect-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/babel-collect-imports.js -------------------------------------------------------------------------------- /scripts/build-npm-extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/build-npm-extended.js -------------------------------------------------------------------------------- /scripts/build-npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/build-npm.js -------------------------------------------------------------------------------- /scripts/check-extended-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/check-extended-dependencies.js -------------------------------------------------------------------------------- /scripts/ci-check-beta-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/ci-check-beta-version.sh -------------------------------------------------------------------------------- /scripts/ci-check-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/ci-check-version.js -------------------------------------------------------------------------------- /scripts/coins-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/coins-build.sh -------------------------------------------------------------------------------- /scripts/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/docker-build.sh -------------------------------------------------------------------------------- /scripts/protobuf-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/protobuf-build.sh -------------------------------------------------------------------------------- /scripts/s3sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/scripts/s3sync.sh -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/shell.nix -------------------------------------------------------------------------------- /src/data/coins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/data/coins.json -------------------------------------------------------------------------------- /src/data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/data/config.json -------------------------------------------------------------------------------- /src/data/icons/metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/data/icons/metamask.svg -------------------------------------------------------------------------------- /src/data/udev/trezor-udev-2-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/data/udev/trezor-udev-2-1.noarch.rpm -------------------------------------------------------------------------------- /src/data/udev/trezor-udev_2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/data/udev/trezor-udev_2_all.deb -------------------------------------------------------------------------------- /src/flowtype/empty.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/flowtype/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/flowtype/index.js -------------------------------------------------------------------------------- /src/flowtype/npm/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/flowtype/npm/jasmine.js -------------------------------------------------------------------------------- /src/flowtype/npm/trezor-utxo-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/flowtype/npm/trezor-utxo-lib.js -------------------------------------------------------------------------------- /src/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /src/fonts/icomoon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/icomoon/icomoon.svg -------------------------------------------------------------------------------- /src/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /src/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /src/fonts/roboto/RobotoZero.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/roboto/RobotoZero.eot -------------------------------------------------------------------------------- /src/fonts/roboto/RobotoZero.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/roboto/RobotoZero.ttf -------------------------------------------------------------------------------- /src/fonts/roboto/RobotoZero.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/roboto/RobotoZero.woff -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.eot -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.svg -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.ttf -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.woff -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.woff2 -------------------------------------------------------------------------------- /src/fonts/text-security/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/text-security/disc.svg -------------------------------------------------------------------------------- /src/fonts/text-security/text-security-disc.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/text-security/text-security-disc.eot -------------------------------------------------------------------------------- /src/fonts/text-security/text-security-disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/text-security/text-security-disc.svg -------------------------------------------------------------------------------- /src/fonts/text-security/text-security-disc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/text-security/text-security-disc.ttf -------------------------------------------------------------------------------- /src/fonts/text-security/text-security-disc.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/fonts/text-security/text-security-disc.woff -------------------------------------------------------------------------------- /src/html/extension-permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/html/extension-permissions.html -------------------------------------------------------------------------------- /src/html/extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/html/extension.html -------------------------------------------------------------------------------- /src/html/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/html/iframe.html -------------------------------------------------------------------------------- /src/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/html/index.html -------------------------------------------------------------------------------- /src/html/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/html/popup.html -------------------------------------------------------------------------------- /src/html/webusb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/html/webusb.html -------------------------------------------------------------------------------- /src/images/icon-trezor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/images/icon-trezor.png -------------------------------------------------------------------------------- /src/images/icon-trezorT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/images/icon-trezorT.png -------------------------------------------------------------------------------- /src/images/icon-unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/images/icon-unknown.png -------------------------------------------------------------------------------- /src/js/backend/BlockchainLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/backend/BlockchainLink.js -------------------------------------------------------------------------------- /src/js/constants/blockchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/blockchain.js -------------------------------------------------------------------------------- /src/js/constants/cardano.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/cardano.js -------------------------------------------------------------------------------- /src/js/constants/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/device.js -------------------------------------------------------------------------------- /src/js/constants/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/errors.js -------------------------------------------------------------------------------- /src/js/constants/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/iframe.js -------------------------------------------------------------------------------- /src/js/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/index.js -------------------------------------------------------------------------------- /src/js/constants/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/network.js -------------------------------------------------------------------------------- /src/js/constants/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/popup.js -------------------------------------------------------------------------------- /src/js/constants/transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/transport.js -------------------------------------------------------------------------------- /src/js/constants/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/constants/ui.js -------------------------------------------------------------------------------- /src/js/core/Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/Core.js -------------------------------------------------------------------------------- /src/js/core/methods/AbstractMethod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/AbstractMethod.js -------------------------------------------------------------------------------- /src/js/core/methods/ApplyFlags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/ApplyFlags.js -------------------------------------------------------------------------------- /src/js/core/methods/ApplySettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/ApplySettings.js -------------------------------------------------------------------------------- /src/js/core/methods/BackupDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/BackupDevice.js -------------------------------------------------------------------------------- /src/js/core/methods/BinanceGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/BinanceGetAddress.js -------------------------------------------------------------------------------- /src/js/core/methods/BinanceGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/BinanceGetPublicKey.js -------------------------------------------------------------------------------- /src/js/core/methods/BinanceSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/BinanceSignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/CardanoGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/CardanoGetAddress.js -------------------------------------------------------------------------------- /src/js/core/methods/CardanoGetNativeScriptHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/CardanoGetNativeScriptHash.js -------------------------------------------------------------------------------- /src/js/core/methods/CardanoGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/CardanoGetPublicKey.js -------------------------------------------------------------------------------- /src/js/core/methods/CardanoSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/CardanoSignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/ChangePin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/ChangePin.js -------------------------------------------------------------------------------- /src/js/core/methods/CipherKeyValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/CipherKeyValue.js -------------------------------------------------------------------------------- /src/js/core/methods/ComposeTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/ComposeTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/CustomMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/CustomMessage.js -------------------------------------------------------------------------------- /src/js/core/methods/EosGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/EosGetPublicKey.js -------------------------------------------------------------------------------- /src/js/core/methods/EosSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/EosSignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/EthereumGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/EthereumGetAddress.js -------------------------------------------------------------------------------- /src/js/core/methods/EthereumGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/EthereumGetPublicKey.js -------------------------------------------------------------------------------- /src/js/core/methods/EthereumSignMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/EthereumSignMessage.js -------------------------------------------------------------------------------- /src/js/core/methods/EthereumSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/EthereumSignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/EthereumSignTypedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/EthereumSignTypedData.js -------------------------------------------------------------------------------- /src/js/core/methods/EthereumVerifyMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/EthereumVerifyMessage.js -------------------------------------------------------------------------------- /src/js/core/methods/FirmwareUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/FirmwareUpdate.js -------------------------------------------------------------------------------- /src/js/core/methods/GetAccountInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/GetAccountInfo.js -------------------------------------------------------------------------------- /src/js/core/methods/GetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/GetAddress.js -------------------------------------------------------------------------------- /src/js/core/methods/GetCoinInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/GetCoinInfo.js -------------------------------------------------------------------------------- /src/js/core/methods/GetDeviceState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/GetDeviceState.js -------------------------------------------------------------------------------- /src/js/core/methods/GetFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/GetFeatures.js -------------------------------------------------------------------------------- /src/js/core/methods/GetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/GetPublicKey.js -------------------------------------------------------------------------------- /src/js/core/methods/GetSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/GetSettings.js -------------------------------------------------------------------------------- /src/js/core/methods/LiskDeprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/LiskDeprecated.js -------------------------------------------------------------------------------- /src/js/core/methods/NEMGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/NEMGetAddress.js -------------------------------------------------------------------------------- /src/js/core/methods/NEMSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/NEMSignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/PushTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/PushTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/RebootToBootloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/RebootToBootloader.js -------------------------------------------------------------------------------- /src/js/core/methods/RecoveryDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/RecoveryDevice.js -------------------------------------------------------------------------------- /src/js/core/methods/RequestLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/RequestLogin.js -------------------------------------------------------------------------------- /src/js/core/methods/ResetDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/ResetDevice.js -------------------------------------------------------------------------------- /src/js/core/methods/RippleGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/RippleGetAddress.js -------------------------------------------------------------------------------- /src/js/core/methods/RippleSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/RippleSignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/SetProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/SetProxy.js -------------------------------------------------------------------------------- /src/js/core/methods/SignMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/SignMessage.js -------------------------------------------------------------------------------- /src/js/core/methods/SignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/SignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/StellarGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/StellarGetAddress.js -------------------------------------------------------------------------------- /src/js/core/methods/StellarSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/StellarSignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/TezosGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/TezosGetAddress.js -------------------------------------------------------------------------------- /src/js/core/methods/TezosGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/TezosGetPublicKey.js -------------------------------------------------------------------------------- /src/js/core/methods/TezosSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/TezosSignTransaction.js -------------------------------------------------------------------------------- /src/js/core/methods/VerifyMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/VerifyMessage.js -------------------------------------------------------------------------------- /src/js/core/methods/WipeDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/WipeDevice.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainDisconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainDisconnect.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainEstimateFee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainEstimateFee.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainGetAccountBalanceHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainGetAccountBalanceHistory.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainGetCurrentFiatRates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainGetCurrentFiatRates.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainGetFiatRatesForTimestamps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainGetFiatRatesForTimestamps.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainGetTokenBalance.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainGetTokenInfo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainGetTransactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainGetTransactions.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainSetCustomBackend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainSetCustomBackend.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainSubscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainSubscribe.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainSubscribeFiatRates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainSubscribeFiatRates.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainUnsubscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainUnsubscribe.js -------------------------------------------------------------------------------- /src/js/core/methods/blockchain/BlockchainUnsubscribeFiatRates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/blockchain/BlockchainUnsubscribeFiatRates.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/Discovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/Discovery.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/__fixtures__/ethereumSignTypedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/__fixtures__/ethereumSignTypedData.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/__fixtures__/paramsValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/__fixtures__/paramsValidator.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/__fixtures__/signtxVerify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/__fixtures__/signtxVerify.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/__tests__/ethereumSignTypedData.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/__tests__/ethereumSignTypedData.test.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/__tests__/paramsValidator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/__tests__/paramsValidator.test.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/__tests__/signtxVerify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/__tests__/signtxVerify.test.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/binanceSignTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/binanceSignTx.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/cardanoAddressParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/cardanoAddressParameters.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/cardanoAuxiliaryData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/cardanoAuxiliaryData.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/cardanoCertificate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/cardanoCertificate.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/cardanoInputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/cardanoInputs.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/cardanoOutputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/cardanoOutputs.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/cardanoSignTxLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/cardanoSignTxLegacy.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/cardanoTokenBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/cardanoTokenBundle.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/cardanoWitnesses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/cardanoWitnesses.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/eosSignTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/eosSignTx.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/ethereumSignTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/ethereumSignTx.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/ethereumSignTypedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/ethereumSignTypedData.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/nemSignTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/nemSignTx.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/paramsValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/paramsValidator.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/signtx-legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/signtx-legacy.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/signtx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/signtx.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/signtxVerify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/signtxVerify.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/stellarSignTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/stellarSignTx.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/tezosSignTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/tezosSignTx.js -------------------------------------------------------------------------------- /src/js/core/methods/helpers/uploadFirmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/helpers/uploadFirmware.js -------------------------------------------------------------------------------- /src/js/core/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/index.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/Fees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/Fees.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/TransactionComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/TransactionComposer.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/__fixtures__/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/__fixtures__/inputs.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/__tests__/inputs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/__tests__/inputs.test.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/__tests__/refTx.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/__tests__/refTx.test.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/index.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/inputs.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/outputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/outputs.js -------------------------------------------------------------------------------- /src/js/core/methods/tx/refTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/core/methods/tx/refTx.js -------------------------------------------------------------------------------- /src/js/data/CoinInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/data/CoinInfo.js -------------------------------------------------------------------------------- /src/js/data/ConnectSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/data/ConnectSettings.js -------------------------------------------------------------------------------- /src/js/data/DataManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/data/DataManager.js -------------------------------------------------------------------------------- /src/js/data/FirmwareInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/data/FirmwareInfo.js -------------------------------------------------------------------------------- /src/js/data/TransportInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/data/TransportInfo.js -------------------------------------------------------------------------------- /src/js/data/UdevInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/data/UdevInfo.js -------------------------------------------------------------------------------- /src/js/data/__tests__/CoinInfo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/data/__tests__/CoinInfo.test.js -------------------------------------------------------------------------------- /src/js/data/__tests__/ConnectSettings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/data/__tests__/ConnectSettings.test.js -------------------------------------------------------------------------------- /src/js/device/AbortController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/device/AbortController.js -------------------------------------------------------------------------------- /src/js/device/DescriptorStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/device/DescriptorStream.js -------------------------------------------------------------------------------- /src/js/device/Device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/device/Device.js -------------------------------------------------------------------------------- /src/js/device/DeviceCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/device/DeviceCommands.js -------------------------------------------------------------------------------- /src/js/device/DeviceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/device/DeviceList.js -------------------------------------------------------------------------------- /src/js/env/browser/__tests__/browserUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/browser/__tests__/browserUtils.test.js -------------------------------------------------------------------------------- /src/js/env/browser/browserUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/browser/browserUtils.js -------------------------------------------------------------------------------- /src/js/env/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/browser/index.js -------------------------------------------------------------------------------- /src/js/env/browser/networkUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/browser/networkUtils.js -------------------------------------------------------------------------------- /src/js/env/browser/workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/browser/workers.js -------------------------------------------------------------------------------- /src/js/env/node/index-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/node/index-empty.js -------------------------------------------------------------------------------- /src/js/env/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/node/index.js -------------------------------------------------------------------------------- /src/js/env/node/networkUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/node/networkUtils.js -------------------------------------------------------------------------------- /src/js/env/node/workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/node/workers.js -------------------------------------------------------------------------------- /src/js/env/react-native/RNUsbPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/react-native/RNUsbPlugin.js -------------------------------------------------------------------------------- /src/js/env/react-native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/react-native/index.js -------------------------------------------------------------------------------- /src/js/env/react-native/networkUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/react-native/networkUtils.js -------------------------------------------------------------------------------- /src/js/env/react-native/workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/env/react-native/workers.js -------------------------------------------------------------------------------- /src/js/iframe/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/iframe/builder.js -------------------------------------------------------------------------------- /src/js/iframe/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/iframe/iframe.js -------------------------------------------------------------------------------- /src/js/iframe/inline-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/iframe/inline-styles.js -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/index.js -------------------------------------------------------------------------------- /src/js/message/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/message/builder.js -------------------------------------------------------------------------------- /src/js/message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/message/index.js -------------------------------------------------------------------------------- /src/js/plugins/ethereum/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/ethereum/package.json -------------------------------------------------------------------------------- /src/js/plugins/ethereum/typedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/ethereum/typedData.js -------------------------------------------------------------------------------- /src/js/plugins/ethereum/typedData.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/ethereum/typedData.test.js -------------------------------------------------------------------------------- /src/js/plugins/ethereum/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/ethereum/yarn.lock -------------------------------------------------------------------------------- /src/js/plugins/stellar/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/stellar/plugin.js -------------------------------------------------------------------------------- /src/js/plugins/webextension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/webextension/README.md -------------------------------------------------------------------------------- /src/js/plugins/webextension/trezor-content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/webextension/trezor-content-script.js -------------------------------------------------------------------------------- /src/js/plugins/webextension/trezor-usb-permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/webextension/trezor-usb-permissions.html -------------------------------------------------------------------------------- /src/js/plugins/webextension/trezor-usb-permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/plugins/webextension/trezor-usb-permissions.js -------------------------------------------------------------------------------- /src/js/popup/PopupManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/PopupManager.js -------------------------------------------------------------------------------- /src/js/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/popup.js -------------------------------------------------------------------------------- /src/js/popup/showPopupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/showPopupRequest.js -------------------------------------------------------------------------------- /src/js/popup/view/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/browser.js -------------------------------------------------------------------------------- /src/js/popup/view/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/common.js -------------------------------------------------------------------------------- /src/js/popup/view/confirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/confirmation.js -------------------------------------------------------------------------------- /src/js/popup/view/firmwareNotCompatible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/firmwareNotCompatible.js -------------------------------------------------------------------------------- /src/js/popup/view/firmwareNotSupported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/firmwareNotSupported.js -------------------------------------------------------------------------------- /src/js/popup/view/firmwareRequiredUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/firmwareRequiredUpdate.js -------------------------------------------------------------------------------- /src/js/popup/view/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/index.js -------------------------------------------------------------------------------- /src/js/popup/view/invalidPassphrase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/invalidPassphrase.js -------------------------------------------------------------------------------- /src/js/popup/view/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/notification.js -------------------------------------------------------------------------------- /src/js/popup/view/passphrase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/passphrase.js -------------------------------------------------------------------------------- /src/js/popup/view/passphraseOnDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/passphraseOnDevice.js -------------------------------------------------------------------------------- /src/js/popup/view/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/permissions.js -------------------------------------------------------------------------------- /src/js/popup/view/pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/pin.js -------------------------------------------------------------------------------- /src/js/popup/view/requestButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/requestButton.js -------------------------------------------------------------------------------- /src/js/popup/view/selectAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/selectAccount.js -------------------------------------------------------------------------------- /src/js/popup/view/selectDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/selectDevice.js -------------------------------------------------------------------------------- /src/js/popup/view/selectFee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/selectFee.js -------------------------------------------------------------------------------- /src/js/popup/view/word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/popup/view/word.js -------------------------------------------------------------------------------- /src/js/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/storage/index.js -------------------------------------------------------------------------------- /src/js/types/__tests__/binance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/binance.js -------------------------------------------------------------------------------- /src/js/types/__tests__/bitcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/bitcoin.js -------------------------------------------------------------------------------- /src/js/types/__tests__/blockchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/blockchain.js -------------------------------------------------------------------------------- /src/js/types/__tests__/cardano.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/cardano.js -------------------------------------------------------------------------------- /src/js/types/__tests__/eos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/eos.js -------------------------------------------------------------------------------- /src/js/types/__tests__/ethereum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/ethereum.js -------------------------------------------------------------------------------- /src/js/types/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/index.js -------------------------------------------------------------------------------- /src/js/types/__tests__/management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/management.js -------------------------------------------------------------------------------- /src/js/types/__tests__/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/misc.js -------------------------------------------------------------------------------- /src/js/types/__tests__/nem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/nem.js -------------------------------------------------------------------------------- /src/js/types/__tests__/ripple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/ripple.js -------------------------------------------------------------------------------- /src/js/types/__tests__/stellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/stellar.js -------------------------------------------------------------------------------- /src/js/types/__tests__/tezos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/__tests__/tezos.js -------------------------------------------------------------------------------- /src/js/types/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/account.js -------------------------------------------------------------------------------- /src/js/types/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/api.js -------------------------------------------------------------------------------- /src/js/types/backend/blockchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/backend/blockchain.js -------------------------------------------------------------------------------- /src/js/types/backend/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/backend/transactions.js -------------------------------------------------------------------------------- /src/js/types/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/events.js -------------------------------------------------------------------------------- /src/js/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/index.js -------------------------------------------------------------------------------- /src/js/types/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/misc.js -------------------------------------------------------------------------------- /src/js/types/networks/binance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/binance.js -------------------------------------------------------------------------------- /src/js/types/networks/bitcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/bitcoin.js -------------------------------------------------------------------------------- /src/js/types/networks/cardano.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/cardano.js -------------------------------------------------------------------------------- /src/js/types/networks/coinInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/coinInfo.js -------------------------------------------------------------------------------- /src/js/types/networks/eos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/eos.js -------------------------------------------------------------------------------- /src/js/types/networks/ethereum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/ethereum.js -------------------------------------------------------------------------------- /src/js/types/networks/nem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/nem.js -------------------------------------------------------------------------------- /src/js/types/networks/ripple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/ripple.js -------------------------------------------------------------------------------- /src/js/types/networks/stellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/stellar.js -------------------------------------------------------------------------------- /src/js/types/networks/tezos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/networks/tezos.js -------------------------------------------------------------------------------- /src/js/types/params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/params.js -------------------------------------------------------------------------------- /src/js/types/trezor/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/trezor/device.js -------------------------------------------------------------------------------- /src/js/types/trezor/management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/trezor/management.js -------------------------------------------------------------------------------- /src/js/types/trezor/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/types/trezor/protobuf.js -------------------------------------------------------------------------------- /src/js/utils/__fixtures__/addressUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__fixtures__/addressUtils.js -------------------------------------------------------------------------------- /src/js/utils/__fixtures__/hdnodeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__fixtures__/hdnodeUtils.js -------------------------------------------------------------------------------- /src/js/utils/__tests__/addressUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__tests__/addressUtils.test.js -------------------------------------------------------------------------------- /src/js/utils/__tests__/bufferUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__tests__/bufferUtils.test.js -------------------------------------------------------------------------------- /src/js/utils/__tests__/debug.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__tests__/debug.test.js -------------------------------------------------------------------------------- /src/js/utils/__tests__/deviceFeaturesUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__tests__/deviceFeaturesUtils.test.js -------------------------------------------------------------------------------- /src/js/utils/__tests__/hdnodeUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__tests__/hdnodeUtils.test.js -------------------------------------------------------------------------------- /src/js/utils/__tests__/urlUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__tests__/urlUtils.test.js -------------------------------------------------------------------------------- /src/js/utils/__tests__/versionUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/__tests__/versionUtils.test.js -------------------------------------------------------------------------------- /src/js/utils/accountUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/accountUtils.js -------------------------------------------------------------------------------- /src/js/utils/addressUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/addressUtils.js -------------------------------------------------------------------------------- /src/js/utils/bip39.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/bip39.js -------------------------------------------------------------------------------- /src/js/utils/bufferUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/bufferUtils.js -------------------------------------------------------------------------------- /src/js/utils/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/debug.js -------------------------------------------------------------------------------- /src/js/utils/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/deferred.js -------------------------------------------------------------------------------- /src/js/utils/deviceFeaturesUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/deviceFeaturesUtils.js -------------------------------------------------------------------------------- /src/js/utils/ethereumUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/ethereumUtils.js -------------------------------------------------------------------------------- /src/js/utils/formatUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/formatUtils.js -------------------------------------------------------------------------------- /src/js/utils/hdnodeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/hdnodeUtils.js -------------------------------------------------------------------------------- /src/js/utils/interactionTimeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/interactionTimeout.js -------------------------------------------------------------------------------- /src/js/utils/objectUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/objectUtils.js -------------------------------------------------------------------------------- /src/js/utils/pathUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/pathUtils.js -------------------------------------------------------------------------------- /src/js/utils/promiseUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/promiseUtils.js -------------------------------------------------------------------------------- /src/js/utils/urlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/urlUtils.js -------------------------------------------------------------------------------- /src/js/utils/versionUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/versionUtils.js -------------------------------------------------------------------------------- /src/js/utils/windowsUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/utils/windowsUtils.js -------------------------------------------------------------------------------- /src/js/webusb/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/webusb/button.js -------------------------------------------------------------------------------- /src/js/webusb/extensionPermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/webusb/extensionPermissions.js -------------------------------------------------------------------------------- /src/js/webusb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/js/webusb/index.js -------------------------------------------------------------------------------- /src/styles/colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/colors.less -------------------------------------------------------------------------------- /src/styles/extensionPermissions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/extensionPermissions.less -------------------------------------------------------------------------------- /src/styles/iframe/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/iframe/index.less -------------------------------------------------------------------------------- /src/styles/popup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup.less -------------------------------------------------------------------------------- /src/styles/popup/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/alerts.less -------------------------------------------------------------------------------- /src/styles/popup/aside.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/aside.less -------------------------------------------------------------------------------- /src/styles/popup/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/base.less -------------------------------------------------------------------------------- /src/styles/popup/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/buttons.less -------------------------------------------------------------------------------- /src/styles/popup/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/fonts.less -------------------------------------------------------------------------------- /src/styles/popup/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/footer.less -------------------------------------------------------------------------------- /src/styles/popup/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/header.less -------------------------------------------------------------------------------- /src/styles/popup/inputs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/inputs.less -------------------------------------------------------------------------------- /src/styles/popup/loader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/loader.less -------------------------------------------------------------------------------- /src/styles/popup/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/media.less -------------------------------------------------------------------------------- /src/styles/popup/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/mixins.less -------------------------------------------------------------------------------- /src/styles/popup/notification.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/notification.less -------------------------------------------------------------------------------- /src/styles/popup/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/tooltip.less -------------------------------------------------------------------------------- /src/styles/popup/view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view.less -------------------------------------------------------------------------------- /src/styles/popup/view/accounts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/accounts.less -------------------------------------------------------------------------------- /src/styles/popup/view/bootloader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/bootloader.less -------------------------------------------------------------------------------- /src/styles/popup/view/browser.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/browser.less -------------------------------------------------------------------------------- /src/styles/popup/view/checkAddress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/checkAddress.less -------------------------------------------------------------------------------- /src/styles/popup/view/confirmOutput.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/confirmOutput.less -------------------------------------------------------------------------------- /src/styles/popup/view/connect.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/connect.less -------------------------------------------------------------------------------- /src/styles/popup/view/deviceManagement.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/deviceManagement.less -------------------------------------------------------------------------------- /src/styles/popup/view/exportAccountInfo.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/exportAccountInfo.less -------------------------------------------------------------------------------- /src/styles/popup/view/exportAddress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/exportAddress.less -------------------------------------------------------------------------------- /src/styles/popup/view/exportPubKey.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/exportPubKey.less -------------------------------------------------------------------------------- /src/styles/popup/view/fees.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/fees.less -------------------------------------------------------------------------------- /src/styles/popup/view/firmwareNotCompatible.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/firmwareNotCompatible.less -------------------------------------------------------------------------------- /src/styles/popup/view/firmwareUpgrade.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/firmwareUpgrade.less -------------------------------------------------------------------------------- /src/styles/popup/view/followDevice.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/followDevice.less -------------------------------------------------------------------------------- /src/styles/popup/view/iframeFailure.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/iframeFailure.less -------------------------------------------------------------------------------- /src/styles/popup/view/initialization.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/initialization.less -------------------------------------------------------------------------------- /src/styles/popup/view/invalidPassphrase.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/invalidPassphrase.less -------------------------------------------------------------------------------- /src/styles/popup/view/noBackup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/noBackup.less -------------------------------------------------------------------------------- /src/styles/popup/view/passphrase.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/passphrase.less -------------------------------------------------------------------------------- /src/styles/popup/view/permissions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/permissions.less -------------------------------------------------------------------------------- /src/styles/popup/view/pin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/pin.less -------------------------------------------------------------------------------- /src/styles/popup/view/selectDevice.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/selectDevice.less -------------------------------------------------------------------------------- /src/styles/popup/view/smartphonesNotSupported.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/smartphonesNotSupported.less -------------------------------------------------------------------------------- /src/styles/popup/view/transport.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/transport.less -------------------------------------------------------------------------------- /src/styles/popup/view/word.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/popup/view/word.less -------------------------------------------------------------------------------- /src/styles/webusb.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/styles/webusb.less -------------------------------------------------------------------------------- /src/ts/types/__tests__/binance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/binance.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/bitcoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/bitcoin.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/blockchain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/blockchain.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/cardano.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/cardano.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/eos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/eos.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/ethereum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/ethereum.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/index.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/management.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/misc.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/nem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/nem.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/ripple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/ripple.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/stellar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/stellar.ts -------------------------------------------------------------------------------- /src/ts/types/__tests__/tezos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/__tests__/tezos.ts -------------------------------------------------------------------------------- /src/ts/types/account.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/account.d.ts -------------------------------------------------------------------------------- /src/ts/types/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/api.d.ts -------------------------------------------------------------------------------- /src/ts/types/backend/blockchain.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/backend/blockchain.d.ts -------------------------------------------------------------------------------- /src/ts/types/backend/transactions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/backend/transactions.d.ts -------------------------------------------------------------------------------- /src/ts/types/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/constants.d.ts -------------------------------------------------------------------------------- /src/ts/types/events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/events.d.ts -------------------------------------------------------------------------------- /src/ts/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/index.d.ts -------------------------------------------------------------------------------- /src/ts/types/misc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/misc.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/binance.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/binance.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/bitcoin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/bitcoin.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/cardano.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/cardano.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/coinInfo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/coinInfo.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/eos.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/eos.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/ethereum.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/ethereum.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/nem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/nem.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/ripple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/ripple.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/stellar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/stellar.d.ts -------------------------------------------------------------------------------- /src/ts/types/networks/tezos.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/networks/tezos.d.ts -------------------------------------------------------------------------------- /src/ts/types/params.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/params.d.ts -------------------------------------------------------------------------------- /src/ts/types/trezor/device.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/trezor/device.d.ts -------------------------------------------------------------------------------- /src/ts/types/trezor/management.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/trezor/management.d.ts -------------------------------------------------------------------------------- /src/ts/types/trezor/protobuf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/trezor/protobuf.d.ts -------------------------------------------------------------------------------- /src/ts/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/src/ts/types/tsconfig.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__fixtures__/applyFlags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/applyFlags.js -------------------------------------------------------------------------------- /tests/__fixtures__/applySettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/applySettings.js -------------------------------------------------------------------------------- /tests/__fixtures__/binanceSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/binanceSignTransaction.js -------------------------------------------------------------------------------- /tests/__fixtures__/cardanoGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/cardanoGetAddress.js -------------------------------------------------------------------------------- /tests/__fixtures__/cardanoGetNativeScriptHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/cardanoGetNativeScriptHash.js -------------------------------------------------------------------------------- /tests/__fixtures__/cardanoGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/cardanoGetPublicKey.js -------------------------------------------------------------------------------- /tests/__fixtures__/cardanoSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/cardanoSignTransaction.js -------------------------------------------------------------------------------- /tests/__fixtures__/composeTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/composeTransaction.js -------------------------------------------------------------------------------- /tests/__fixtures__/eosGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/eosGetPublicKey.js -------------------------------------------------------------------------------- /tests/__fixtures__/eosSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/eosSignTransaction.js -------------------------------------------------------------------------------- /tests/__fixtures__/ethereumGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/ethereumGetAddress.js -------------------------------------------------------------------------------- /tests/__fixtures__/ethereumGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/ethereumGetPublicKey.js -------------------------------------------------------------------------------- /tests/__fixtures__/ethereumSignMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/ethereumSignMessage.js -------------------------------------------------------------------------------- /tests/__fixtures__/ethereumSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/ethereumSignTransaction.js -------------------------------------------------------------------------------- /tests/__fixtures__/ethereumSignTransactionEip155.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/ethereumSignTransactionEip155.js -------------------------------------------------------------------------------- /tests/__fixtures__/ethereumSignTransactionEip1559.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/ethereumSignTransactionEip1559.js -------------------------------------------------------------------------------- /tests/__fixtures__/ethereumSignTypedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/ethereumSignTypedData.js -------------------------------------------------------------------------------- /tests/__fixtures__/ethereumVerifyMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/ethereumVerifyMessage.js -------------------------------------------------------------------------------- /tests/__fixtures__/getAccountInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/getAccountInfo.js -------------------------------------------------------------------------------- /tests/__fixtures__/getAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/getAddress.js -------------------------------------------------------------------------------- /tests/__fixtures__/getAddressMultisig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/getAddressMultisig.js -------------------------------------------------------------------------------- /tests/__fixtures__/getAddressSegwit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/getAddressSegwit.js -------------------------------------------------------------------------------- /tests/__fixtures__/getFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/getFeatures.js -------------------------------------------------------------------------------- /tests/__fixtures__/getPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/getPublicKey.js -------------------------------------------------------------------------------- /tests/__fixtures__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/index.js -------------------------------------------------------------------------------- /tests/__fixtures__/nemGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/nemGetAddress.js -------------------------------------------------------------------------------- /tests/__fixtures__/nemSignTransactionMosaic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/nemSignTransactionMosaic.js -------------------------------------------------------------------------------- /tests/__fixtures__/nemSignTransactionMultisig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/nemSignTransactionMultisig.js -------------------------------------------------------------------------------- /tests/__fixtures__/nemSignTransactionOthers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/nemSignTransactionOthers.js -------------------------------------------------------------------------------- /tests/__fixtures__/nemSignTransactionTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/nemSignTransactionTransfer.js -------------------------------------------------------------------------------- /tests/__fixtures__/resetDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/resetDevice.js -------------------------------------------------------------------------------- /tests/__fixtures__/rippleGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/rippleGetAddress.js -------------------------------------------------------------------------------- /tests/__fixtures__/rippleSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/rippleSignTransaction.js -------------------------------------------------------------------------------- /tests/__fixtures__/signMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signMessage.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransaction.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionBcash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionBcash.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionBech32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionBech32.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionBgold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionBgold.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionCapricoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionCapricoin.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionDash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionDash.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionDecred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionDecred.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionDoge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionDoge.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionExternal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionExternal.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionKomodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionKomodo.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionMultisig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionMultisig.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionMultisigChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionMultisigChange.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionPeercoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionPeercoin.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionReplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionReplace.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionSegwit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionSegwit.js -------------------------------------------------------------------------------- /tests/__fixtures__/signTransactionZcash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/signTransactionZcash.js -------------------------------------------------------------------------------- /tests/__fixtures__/stellarGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/stellarGetAddress.js -------------------------------------------------------------------------------- /tests/__fixtures__/stellarSignTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/stellarSignTransaction.js -------------------------------------------------------------------------------- /tests/__fixtures__/tezosGetAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/tezosGetAddress.js -------------------------------------------------------------------------------- /tests/__fixtures__/tezosGetPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/tezosGetPublicKey.js -------------------------------------------------------------------------------- /tests/__fixtures__/verifyMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/verifyMessage.js -------------------------------------------------------------------------------- /tests/__fixtures__/verifyMessageSegwit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/verifyMessageSegwit.js -------------------------------------------------------------------------------- /tests/__fixtures__/verifyMessageSegwitNative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/verifyMessageSegwitNative.js -------------------------------------------------------------------------------- /tests/__fixtures__/wipeDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__fixtures__/wipeDevice.js -------------------------------------------------------------------------------- /tests/__txcache__/bcash/502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bcash/502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c.json -------------------------------------------------------------------------------- /tests/__txcache__/bcash/bc37c28dfb467d2ecb50261387bf752a3977d7e5337915071bb4151e6b711a78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bcash/bc37c28dfb467d2ecb50261387bf752a3977d7e5337915071bb4151e6b711a78.json -------------------------------------------------------------------------------- /tests/__txcache__/bgold/6f0398f8bac639312afc2e40210ce5253535f92326167f40e1f38dd7047b00ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bgold/6f0398f8bac639312afc2e40210ce5253535f92326167f40e1f38dd7047b00ec.json -------------------------------------------------------------------------------- /tests/__txcache__/bgold/7f1f6bfe8d5a23e038c58bdcf47e6eb3b5ddb93300176b273564951105206b39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bgold/7f1f6bfe8d5a23e038c58bdcf47e6eb3b5ddb93300176b273564951105206b39.json -------------------------------------------------------------------------------- /tests/__txcache__/bgold/aae50f8dc1c19c35517e5bbc2214d38e1ce4b4ff7cb3151b5b31bf0f723f8e06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bgold/aae50f8dc1c19c35517e5bbc2214d38e1ce4b4ff7cb3151b5b31bf0f723f8e06.json -------------------------------------------------------------------------------- /tests/__txcache__/bgold/db7239c358352c10996115b3de9e3f37ea0a97be4ea8c4b9e08996e257a21d0e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bgold/db7239c358352c10996115b3de9e3f37ea0a97be4ea8c4b9e08996e257a21d0e.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/074b0070939db4c2635c1bef0c8e68412ccc8d3c8782137547c7a2bbde073fc0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/074b0070939db4c2635c1bef0c8e68412ccc8d3c8782137547c7a2bbde073fc0.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/0dac366fd8a67b2a89fbb0d31086e7acded7a5bbf9ef9daa935bc873229ef5b5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/0dac366fd8a67b2a89fbb0d31086e7acded7a5bbf9ef9daa935bc873229ef5b5.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/1f326f65768d55ef146efbb345bd87abe84ac7185726d0457a026fc347a26ef3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/1f326f65768d55ef146efbb345bd87abe84ac7185726d0457a026fc347a26ef3.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/39a29e954977662ab3879c66fb251ef753e0912223a83d1dcb009111d28265e5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/39a29e954977662ab3879c66fb251ef753e0912223a83d1dcb009111d28265e5.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/50f6f1209ca92d7359564be803cb2c932cde7d370f7cee50fd1fad6790f6206d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/50f6f1209ca92d7359564be803cb2c932cde7d370f7cee50fd1fad6790f6206d.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/58d56a5d1325cf83543ee4c87fd73a784e4ba1499ced574be359fa2bdcb9ac8e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/58d56a5d1325cf83543ee4c87fd73a784e4ba1499ced574be359fa2bdcb9ac8e.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/ac4ca0e7827a1228f44449cb57b4b9a809a667ca044dc43bb124627fed4bc10a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/ac4ca0e7827a1228f44449cb57b4b9a809a667ca044dc43bb124627fed4bc10a.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/beafc7cbd873d06dbee88a7002768ad5864228639db514c81cfb29f108bb1e7a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/beafc7cbd873d06dbee88a7002768ad5864228639db514c81cfb29f108bb1e7a.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/c63e24ed820c5851b60c54613fbc4bcb37df6cd49b4c96143e99580a472f79fb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/c63e24ed820c5851b60c54613fbc4bcb37df6cd49b4c96143e99580a472f79fb.json -------------------------------------------------------------------------------- /tests/__txcache__/bitcoin/d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/bitcoin/d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882.json -------------------------------------------------------------------------------- /tests/__txcache__/dash/15575a1c874bd60a819884e116c42e6791c8283ce1fc3b79f0d18531a61bbb8a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/dash/15575a1c874bd60a819884e116c42e6791c8283ce1fc3b79f0d18531a61bbb8a.json -------------------------------------------------------------------------------- /tests/__txcache__/dash/24522992fb42f85d2d43efa3a1ddb98de23ed28583e19128e6e200a9fa6bc665.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/dash/24522992fb42f85d2d43efa3a1ddb98de23ed28583e19128e6e200a9fa6bc665.json -------------------------------------------------------------------------------- /tests/__txcache__/dash/adb43bcd8fc99d6ed353c30ca8e5bd5996cd7bcf719bd4253f103dfb7227f6ed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/dash/adb43bcd8fc99d6ed353c30ca8e5bd5996cd7bcf719bd4253f103dfb7227f6ed.json -------------------------------------------------------------------------------- /tests/__txcache__/decred_testnet/48f5b85f8b1cf796d0d07388ced491f154e2d26b0615529d2d6ba9c170542df3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/decred_testnet/48f5b85f8b1cf796d0d07388ced491f154e2d26b0615529d2d6ba9c170542df3.json -------------------------------------------------------------------------------- /tests/__txcache__/decred_testnet/4d8acde26d5efc7f5df1b3cdada6b11027616520c883e09c919b88f0f0cb6410.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/decred_testnet/4d8acde26d5efc7f5df1b3cdada6b11027616520c883e09c919b88f0f0cb6410.json -------------------------------------------------------------------------------- /tests/__txcache__/decred_testnet/51bc9c71f10a81eef3caedb5333062eb4b1f70998adf02916fe98fdc04c572e8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/decred_testnet/51bc9c71f10a81eef3caedb5333062eb4b1f70998adf02916fe98fdc04c572e8.json -------------------------------------------------------------------------------- /tests/__txcache__/decred_testnet/5f3a7d29623eba20788e967439c1ccf122688589dfc07cddcedd1b27dc14b568.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/decred_testnet/5f3a7d29623eba20788e967439c1ccf122688589dfc07cddcedd1b27dc14b568.json -------------------------------------------------------------------------------- /tests/__txcache__/decred_testnet/9ac7d222f4460ccf4ef38eee047eaf8b3a09505364afe4fe27b765e4c5508fd1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/decred_testnet/9ac7d222f4460ccf4ef38eee047eaf8b3a09505364afe4fe27b765e4c5508fd1.json -------------------------------------------------------------------------------- /tests/__txcache__/decred_testnet/f341fde6a78c2e150619d1c5ecbd90fabeb9e278024cc38ea4190d0b4a6d61d8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/decred_testnet/f341fde6a78c2e150619d1c5ecbd90fabeb9e278024cc38ea4190d0b4a6d61d8.json -------------------------------------------------------------------------------- /tests/__txcache__/decred_testnet/f8e2f2b4eab772f6e3743cba92db341f64b84d9c16ae375c7690fbf0bf02fc7b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/decred_testnet/f8e2f2b4eab772f6e3743cba92db341f64b84d9c16ae375c7690fbf0bf02fc7b.json -------------------------------------------------------------------------------- /tests/__txcache__/doge/0a4cb7d5c27455333701f0e53812e4be56a0272ad7f168279acfed7b065ee118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/doge/0a4cb7d5c27455333701f0e53812e4be56a0272ad7f168279acfed7b065ee118.json -------------------------------------------------------------------------------- /tests/__txcache__/gen-reftx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/gen-reftx.js -------------------------------------------------------------------------------- /tests/__txcache__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/index.js -------------------------------------------------------------------------------- /tests/__txcache__/komodo/2807c5b126ec8e2b078cab0f12e4c8b4ce1d7724905f8ebef8dca26b0c8e0f1d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/komodo/2807c5b126ec8e2b078cab0f12e4c8b4ce1d7724905f8ebef8dca26b0c8e0f1d.json -------------------------------------------------------------------------------- /tests/__txcache__/komodo/7b28bd91119e9776f0d4ebd80e570165818a829bbf4477cd1afe5149dbcd34b1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/komodo/7b28bd91119e9776f0d4ebd80e570165818a829bbf4477cd1afe5149dbcd34b1.json -------------------------------------------------------------------------------- /tests/__txcache__/peercoin/41b29ad615d8eea40a4654a052d18bb10cd08f203c351f4d241f88b031357d3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/peercoin/41b29ad615d8eea40a4654a052d18bb10cd08f203c351f4d241f88b031357d3d.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/005f6f7ff4b70aa09a15b3bc36607d378fad104c4efa4f0a1c8e970538622b3e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/005f6f7ff4b70aa09a15b3bc36607d378fad104c4efa4f0a1c8e970538622b3e.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/0d5b5648d47b5650edea1af3d47bbe5624213abb577cf1b1c96f98321f75cdbc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/0d5b5648d47b5650edea1af3d47bbe5624213abb577cf1b1c96f98321f75cdbc.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/1010b25957a30110377a33bd3b0bd39045b3cc488d0e534d1ea5ec238812c0fc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/1010b25957a30110377a33bd3b0bd39045b3cc488d0e534d1ea5ec238812c0fc.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/16c6c8471b8db7a628f2b2bb86bfeefae1766463ce8692438c7fd3fce3f43ce5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/16c6c8471b8db7a628f2b2bb86bfeefae1766463ce8692438c7fd3fce3f43ce5.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/1c022d9da3aa8bc8cf2a617c42c8f2c343e810af76b3ab9770c5ab6ca54ddab5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/1c022d9da3aa8bc8cf2a617c42c8f2c343e810af76b3ab9770c5ab6ca54ddab5.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/20912f98ea3ed849042efed0fdac8cb4fc301961c5988cba56902d8ffb61c337.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/20912f98ea3ed849042efed0fdac8cb4fc301961c5988cba56902d8ffb61c337.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/25fee583181847cbe9d9fd9a483a8b8626c99854a72d01de848ef40508d0f3bc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/25fee583181847cbe9d9fd9a483a8b8626c99854a72d01de848ef40508d0f3bc.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/2d5dfc5068b81e25185a655d2dcd10833b2f4e6a3d029c0d40b2fd3b63f09b48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/2d5dfc5068b81e25185a655d2dcd10833b2f4e6a3d029c0d40b2fd3b63f09b48.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/334cd7ad982b3b15d07dd1c84e939e95efb0803071648048a7f289492e7b4c8a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/334cd7ad982b3b15d07dd1c84e939e95efb0803071648048a7f289492e7b4c8a.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/338e2d02e0eaf8848e38925904e51546cf22e58db5b1860c4a0e72b69c56afe5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/338e2d02e0eaf8848e38925904e51546cf22e58db5b1860c4a0e72b69c56afe5.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/4012d9abb675243758b8f2cfd0042ce9a6c1459aaf5327dcac16c80f9eff1cbf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/4012d9abb675243758b8f2cfd0042ce9a6c1459aaf5327dcac16c80f9eff1cbf.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/4083973799f05c52f556b603ab0f93d9c4c50be50da03c770a492d0990ca7809.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/4083973799f05c52f556b603ab0f93d9c4c50be50da03c770a492d0990ca7809.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/43d273d3caf41759ad843474f960fbf80ff2ec961135d018b61e9fab3ad1fc06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/43d273d3caf41759ad843474f960fbf80ff2ec961135d018b61e9fab3ad1fc06.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/56ebd82cdc91548617a1756f8e271dedda94e7c4d267d3c6d4f65d2654e5f3e2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/56ebd82cdc91548617a1756f8e271dedda94e7c4d267d3c6d4f65d2654e5f3e2.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/5bf10db6244c703d7f831043e6b6b0d6f3974bb5cf9fd216397e7620dc2e1015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/5bf10db6244c703d7f831043e6b6b0d6f3974bb5cf9fd216397e7620dc2e1015.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/5e7667690076ae4737e2f872005de6f6b57592f32108ed9b301eeece6de24ad6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/5e7667690076ae4737e2f872005de6f6b57592f32108ed9b301eeece6de24ad6.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/65b768dacccfb209eebd95a1fb80a04f1dd6a3abc6d7b41d5e9d9f91605b37d9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/65b768dacccfb209eebd95a1fb80a04f1dd6a3abc6d7b41d5e9d9f91605b37d9.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/6673b7248e324882b2f9d02fdd1ff1d0f9ed216a234e836b8d3ac65661cbb457.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/6673b7248e324882b2f9d02fdd1ff1d0f9ed216a234e836b8d3ac65661cbb457.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/6b07c1321b52d9c85743f9695e13eb431b41708cdf4e1585258d51208e5b93fc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/6b07c1321b52d9c85743f9695e13eb431b41708cdf4e1585258d51208e5b93fc.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/70f9871eb03a38405cfd7a01e0e1448678132d815e2c9f552ad83ae23969509e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/70f9871eb03a38405cfd7a01e0e1448678132d815e2c9f552ad83ae23969509e.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/927784e07bbcefc4c738f5c31c7a739978fc86f35514edf7e7da25d53d83030b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/927784e07bbcefc4c738f5c31c7a739978fc86f35514edf7e7da25d53d83030b.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/ae0949b1b050ac6f92c7d9c1570f2f06c21a997eef8be9ef5edc2a38cb92a879.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/ae0949b1b050ac6f92c7d9c1570f2f06c21a997eef8be9ef5edc2a38cb92a879.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/afde2d41702948e922150825742cda3294d80d43b8e508865c1e2d648f6d4dae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/afde2d41702948e922150825742cda3294d80d43b8e508865c1e2d648f6d4dae.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/ba917a2b563966e324ab37ed7de5f5cd7503b970b0f0bb9a5208f5835557e99c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/ba917a2b563966e324ab37ed7de5f5cd7503b970b0f0bb9a5208f5835557e99c.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/bb5169091f09e833e155b291b662019df56870effe388c626221c5ea84274bc4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/bb5169091f09e833e155b291b662019df56870effe388c626221c5ea84274bc4.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/d80c34ee14143a8bf61125102b7ef594118a3796cad670fa8ee15080ae155318.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/d80c34ee14143a8bf61125102b7ef594118a3796cad670fa8ee15080ae155318.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/d830b877c3d9237a0a68be88825a296da01ac282a2efd2f671d8f17f15117b74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/d830b877c3d9237a0a68be88825a296da01ac282a2efd2f671d8f17f15117b74.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/e294c4c172c3d87991b0369e45d6af8584be92914d01e3060fad1ed31d12ff00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/e294c4c172c3d87991b0369e45d6af8584be92914d01e3060fad1ed31d12ff00.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/e5040e1bc1ae7667ffb9e5248e90b2fb93cd9150234151ce90e14ab2f5933bcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/e5040e1bc1ae7667ffb9e5248e90b2fb93cd9150234151ce90e14ab2f5933bcd.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/e5b7e21b5ba720e81efd6bfa9f854ababdcddc75a43bfa60bf0fe069cfd1bb8a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/e5b7e21b5ba720e81efd6bfa9f854ababdcddc75a43bfa60bf0fe069cfd1bb8a.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/ec16dc5a539c5d60001a7471c37dbb0b5294c289c77df8bd07870b30d73e2231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/ec16dc5a539c5d60001a7471c37dbb0b5294c289c77df8bd07870b30d73e2231.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/ed89acb52cfa438e3653007478e7c7feae89fdde12867943eec91293139730d1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/ed89acb52cfa438e3653007478e7c7feae89fdde12867943eec91293139730d1.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/efaa41ff3e67edf508846c1a1ed56894cfd32725c590300108f40c9edc1aac35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/efaa41ff3e67edf508846c1a1ed56894cfd32725c590300108f40c9edc1aac35.json -------------------------------------------------------------------------------- /tests/__txcache__/testnet/f405b50dff7053f3697f485f95fe1c0f6a4f5e52446281b4ef470c2762a15dae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/testnet/f405b50dff7053f3697f485f95fe1c0f6a4f5e52446281b4ef470c2762a15dae.json -------------------------------------------------------------------------------- /tests/__txcache__/zcash/29d25589db4623d1a33c58745b8f95b131f49841c79dcd171847d0d7e9e2dc3a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/zcash/29d25589db4623d1a33c58745b8f95b131f49841c79dcd171847d0d7e9e2dc3a.json -------------------------------------------------------------------------------- /tests/__txcache__/zcash/4264f5f339c9fd498976dabb6d7b8819e112d25a0c1770a0f3ee81de525de8f8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/zcash/4264f5f339c9fd498976dabb6d7b8819e112d25a0c1770a0f3ee81de525de8f8.json -------------------------------------------------------------------------------- /tests/__txcache__/zcash/6df53ccdc6fa17e1cd248f7ec57e86178d6f96f2736bdf978602992b5850ac79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/zcash/6df53ccdc6fa17e1cd248f7ec57e86178d6f96f2736bdf978602992b5850ac79.json -------------------------------------------------------------------------------- /tests/__txcache__/zcash/84533aa6244bcee68040d851dc4f502838ed3fd9ce838e2e48dbf440e7f4df2a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/zcash/84533aa6244bcee68040d851dc4f502838ed3fd9ce838e2e48dbf440e7f4df2a.json -------------------------------------------------------------------------------- /tests/__txcache__/zcash/e7e1d11992e8fcb88e051e59c2917d78dd9fcd857ee042e0263e995590f02ee3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/zcash/e7e1d11992e8fcb88e051e59c2917d78dd9fcd857ee042e0263e995590f02ee3.json -------------------------------------------------------------------------------- /tests/__txcache__/zcash_testnet/4b6cecb81c825180786ebe07b65bcc76078afc5be0f1c64e08d764005012380d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/zcash_testnet/4b6cecb81c825180786ebe07b65bcc76078afc5be0f1c64e08d764005012380d.json -------------------------------------------------------------------------------- /tests/__txcache__/zcash_testnet/86850826b043dd9826b4700c555c06bc8b5713938b4e47cb5ecd60679c6d81dc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/zcash_testnet/86850826b043dd9826b4700c555c06bc8b5713938b4e47cb5ecd60679c6d81dc.json -------------------------------------------------------------------------------- /tests/__txcache__/zcash_testnet/e3820602226974b1dd87b7113cc8aea8c63e5ae29293991e7bfa80c126930368.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__txcache__/zcash_testnet/e3820602226974b1dd87b7113cc8aea8c63e5ae29293991e7bfa80c126930368.json -------------------------------------------------------------------------------- /tests/__wscache__/blockbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/blockbook.js -------------------------------------------------------------------------------- /tests/__wscache__/blockfrost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/blockfrost.js -------------------------------------------------------------------------------- /tests/__wscache__/getAccountInfo/0x3f2329C9ADFbcCd9A84f52c906E936A42dA18CB8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/getAccountInfo/0x3f2329C9ADFbcCd9A84f52c906E936A42dA18CB8.json -------------------------------------------------------------------------------- /tests/__wscache__/getAccountInfo/5d010cf16fdeff40955633d6c565f3844a288a24967cf6b76acbeb271b4f13c1f123474e140a2c360b01f0fa66f2f22e2e965a5b07a80358cf75f77abbd66088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/getAccountInfo/5d010cf16fdeff40955633d6c565f3844a288a24967cf6b76acbeb271b4f13c1f123474e140a2c360b01f0fa66f2f22e2e965a5b07a80358cf75f77abbd66088.json -------------------------------------------------------------------------------- /tests/__wscache__/getAccountInfo/rfkV3EoXimH6JrG1QAyofgbVhnyZZDjWSj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/getAccountInfo/rfkV3EoXimH6JrG1QAyofgbVhnyZZDjWSj.json -------------------------------------------------------------------------------- /tests/__wscache__/getAccountInfo/rh5ZnEVySAy7oGd3nebT3wrohGDrsNS83E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/getAccountInfo/rh5ZnEVySAy7oGd3nebT3wrohGDrsNS83E.json -------------------------------------------------------------------------------- /tests/__wscache__/getAccountInfo/upub5Eo1frmiD2QQL6L5x5toFyJVZQuFijQTwiDK7S7KDkgCNykDJtG4TApkdv23L5MDLgRuxMJQEucxXVio2ciKCqfx6Y41skKTZhxNjSgJ6pU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/getAccountInfo/upub5Eo1frmiD2QQL6L5x5toFyJVZQuFijQTwiDK7S7KDkgCNykDJtG4TApkdv23L5MDLgRuxMJQEucxXVio2ciKCqfx6Y41skKTZhxNjSgJ6pU.json -------------------------------------------------------------------------------- /tests/__wscache__/getAccountInfo/xpub6D1weXBcFAo8CqBbpP4TbH5sxQH8ZkqC5pDEvJ95rNNBZC9zrKmZP2fXMuve7ZRBe18pWQQsGg68jkq24mZchHwYENd8cCiSb71u3KD4AFH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/getAccountInfo/xpub6D1weXBcFAo8CqBbpP4TbH5sxQH8ZkqC5pDEvJ95rNNBZC9zrKmZP2fXMuve7ZRBe18pWQQsGg68jkq24mZchHwYENd8cCiSb71u3KD4AFH.json -------------------------------------------------------------------------------- /tests/__wscache__/getAccountInfo/xpub6DExuxjQ16sWy5TF4KkLV65YGqCJ5pyv7Ej7d9yJNAXz7C1M9intqszXfaNZG99KsDJdQ29wUKBTZHZFXUaPbKTZ5Z6f4yowNvAQ8fEJw2G.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/getAccountInfo/xpub6DExuxjQ16sWy5TF4KkLV65YGqCJ5pyv7Ej7d9yJNAXz7C1M9intqszXfaNZG99KsDJdQ29wUKBTZHZFXUaPbKTZ5Z6f4yowNvAQ8fEJw2G.json -------------------------------------------------------------------------------- /tests/__wscache__/getAccountInfo/ypub6Y5EDdQK9nQzpNeMtgXxhBB3SoLk2SyR2MFLQYsBkAusAHpaQNxTTwefgnL9G3oFGrRS9VkVvyY1SaApFAzQPZ99wto5etdReeE3XFkkMZt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/getAccountInfo/ypub6Y5EDdQK9nQzpNeMtgXxhBB3SoLk2SyR2MFLQYsBkAusAHpaQNxTTwefgnL9G3oFGrRS9VkVvyY1SaApFAzQPZ99wto5etdReeE3XFkkMZt.json -------------------------------------------------------------------------------- /tests/__wscache__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/index.js -------------------------------------------------------------------------------- /tests/__wscache__/ripple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/ripple.js -------------------------------------------------------------------------------- /tests/__wscache__/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/server.js -------------------------------------------------------------------------------- /tests/__wscache__/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/__wscache__/worker.js -------------------------------------------------------------------------------- /tests/api/init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/api/init.test.js -------------------------------------------------------------------------------- /tests/common.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/common.setup.js -------------------------------------------------------------------------------- /tests/device/methods.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/device/methods.test.js -------------------------------------------------------------------------------- /tests/get-latest-firmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/get-latest-firmware.js -------------------------------------------------------------------------------- /tests/jest.globalSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/jest.globalSetup.js -------------------------------------------------------------------------------- /tests/jest.globalTeardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/jest.globalTeardown.js -------------------------------------------------------------------------------- /tests/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/jest.setup.js -------------------------------------------------------------------------------- /tests/karma.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/karma.plugin.js -------------------------------------------------------------------------------- /tests/karma.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/karma.setup.js -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/run.sh -------------------------------------------------------------------------------- /tests/websocket-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/tests/websocket-client.js -------------------------------------------------------------------------------- /webpack/config.dev.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/config.dev.babel.js -------------------------------------------------------------------------------- /webpack/config.inline.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/config.inline.babel.js -------------------------------------------------------------------------------- /webpack/config.nodejs.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/config.nodejs.babel.js -------------------------------------------------------------------------------- /webpack/config.prod.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/config.prod.babel.js -------------------------------------------------------------------------------- /webpack/config.reactnative.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/config.reactnative.babel.js -------------------------------------------------------------------------------- /webpack/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/constants.js -------------------------------------------------------------------------------- /webpack/data.dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/data.dependencies.js -------------------------------------------------------------------------------- /webpack/generate_dev_cert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/generate_dev_cert.js -------------------------------------------------------------------------------- /webpack/stylesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/webpack/stylesheet.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/connect/HEAD/yarn.lock --------------------------------------------------------------------------------