├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── COPYING ├── MANIFEST.in ├── Makefile ├── README.md ├── bash_completion.d └── trezorctl.sh ├── docs ├── EXAMPLES.rst ├── OPTIONS.rst ├── README.rst ├── sign_tx-coinb.in.png ├── sign_tx-electrum1.png ├── sign_tx-electrum2.png └── sign_tx-trezor.io.png ├── helper-scripts ├── README.md ├── bump-required-fw-versions.py ├── linkify-changelog.py └── relicence.py ├── requirements-dev.txt ├── requirements-optional.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── shell.nix ├── tools ├── deserialize_tx.py ├── encfs_aes_getpass.py ├── helloworld.py ├── mem_flashblock.py ├── mem_read.py ├── mem_write.py ├── mnemonic_check.py ├── pwd_reader.py ├── rng_entropy_collector.py └── trezor-otp.py ├── tox.ini ├── trezorctl ├── trezorlib ├── __init__.py ├── _ed25519.py ├── btc.py ├── cardano.py ├── ckd_public.py ├── client.py ├── coins.py ├── cosi.py ├── debuglink.py ├── device.py ├── ethereum.py ├── exceptions.py ├── firmware.py ├── lisk.py ├── log.py ├── mapping.py ├── messages │ └── .keep ├── misc.py ├── monero.py ├── nem.py ├── ontology.py ├── protobuf.py ├── qt │ ├── __init__.py │ └── pinmatrix.py ├── ripple.py ├── stellar.py ├── tests │ ├── __init__.py │ ├── burn_tests │ │ ├── burntest_t1.py │ │ └── burntest_t2.py │ ├── device_tests │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── common.py │ │ ├── conftest.py │ │ ├── test_basic.py │ │ ├── test_bip32_speed.py │ │ ├── test_cancel.py │ │ ├── test_cosi.py │ │ ├── test_debuglink.py │ │ ├── test_msg_applysettings.py │ │ ├── test_msg_cardano_get_address.py │ │ ├── test_msg_cardano_get_public_key.py │ │ ├── test_msg_cardano_sign_transaction.py │ │ ├── test_msg_changepin.py │ │ ├── test_msg_cipherkeyvalue.py │ │ ├── test_msg_clearsession.py │ │ ├── test_msg_ethereum_getaddress.py │ │ ├── test_msg_ethereum_getpublickey.py │ │ ├── test_msg_ethereum_signmessage.py │ │ ├── test_msg_ethereum_signtx.py │ │ ├── test_msg_ethereum_signtx_eip155.py │ │ ├── test_msg_ethereum_verifymessage.py │ │ ├── test_msg_getaddress.py │ │ ├── test_msg_getaddress_segwit.py │ │ ├── test_msg_getaddress_segwit_native.py │ │ ├── test_msg_getaddress_show.py │ │ ├── test_msg_getecdhsessionkey.py │ │ ├── test_msg_getentropy.py │ │ ├── test_msg_getpublickey.py │ │ ├── test_msg_getpublickey_curve.py │ │ ├── test_msg_lisk_getaddress.py │ │ ├── test_msg_lisk_getpublickey.py │ │ ├── test_msg_lisk_signmessage.py │ │ ├── test_msg_lisk_signtx.py │ │ ├── test_msg_lisk_verifymessage.py │ │ ├── test_msg_loaddevice.py │ │ ├── test_msg_loaddevice_xprv.py │ │ ├── test_msg_monero_getaddress.py │ │ ├── test_msg_monero_getwatchkey.py │ │ ├── test_msg_nem_getaddress.py │ │ ├── test_msg_nem_signtx_mosaics.py │ │ ├── test_msg_nem_signtx_mosaics_t2.py │ │ ├── test_msg_nem_signtx_multisig.py │ │ ├── test_msg_nem_signtx_others.py │ │ ├── test_msg_nem_signtx_transfers.py │ │ ├── test_msg_ontology_getaddress.py │ │ ├── test_msg_ontology_sign_ont_id_add_attributes.py │ │ ├── test_msg_ontology_sign_ont_id_register.py │ │ ├── test_msg_ontology_sign_tx.py │ │ ├── test_msg_ontology_sign_withdraw_ong.py │ │ ├── test_msg_ping.py │ │ ├── test_msg_recoverydevice.py │ │ ├── test_msg_recoverydevice_dryrun.py │ │ ├── test_msg_recoverydevice_t2.py │ │ ├── test_msg_resetdevice.py │ │ ├── test_msg_resetdevice_nobackup.py │ │ ├── test_msg_resetdevice_skipbackup.py │ │ ├── test_msg_resetdevice_t2.py │ │ ├── test_msg_ripple_get_address.py │ │ ├── test_msg_ripple_sign_tx.py │ │ ├── test_msg_signidentity.py │ │ ├── test_msg_signmessage.py │ │ ├── test_msg_signmessage_decred.py │ │ ├── test_msg_signmessage_segwit.py │ │ ├── test_msg_signmessage_segwit_native.py │ │ ├── test_msg_signtx.py │ │ ├── test_msg_signtx_bcash.py │ │ ├── test_msg_signtx_bgold.py │ │ ├── test_msg_signtx_capricoin.py │ │ ├── test_msg_signtx_dash.py │ │ ├── test_msg_signtx_decred.py │ │ ├── test_msg_signtx_grs.py │ │ ├── test_msg_signtx_komodo.py │ │ ├── test_msg_signtx_segwit.py │ │ ├── test_msg_signtx_segwit_native.py │ │ ├── test_msg_signtx_zcash.py │ │ ├── test_msg_stellar_get_address.py │ │ ├── test_msg_stellar_sign_transaction.py │ │ ├── test_msg_tezos_getaddress.py │ │ ├── test_msg_tezos_getpublickey.py │ │ ├── test_msg_tezos_sign_tx.py │ │ ├── test_msg_verifymessage.py │ │ ├── test_msg_verifymessage_segwit.py │ │ ├── test_msg_verifymessage_segwit_native.py │ │ ├── test_msg_wipedevice.py │ │ ├── test_multisig.py │ │ ├── test_multisig_change.py │ │ ├── test_op_return.py │ │ ├── test_protect_call.py │ │ ├── test_protection_levels.py │ │ └── test_zerosig.py │ ├── support │ │ ├── __init__.py │ │ ├── ckd_public.py │ │ └── tx_cache.py │ ├── txcache │ │ ├── insight_bcash_tx_502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c.json │ │ ├── insight_bcash_tx_8b6db9b8ba24235d86b053ea2ccb484fc32b96f89c3c39f98d86f90db16076a0.json │ │ ├── insight_bcash_tx_bc37c28dfb467d2ecb50261387bf752a3977d7e5337915071bb4151e6b711a78.json │ │ ├── insight_bcash_tx_f68caf10df12d5b07a34601d88fa6856c6edcbf4d05ebef3486510ae1c293d5f.json │ │ ├── insight_bgold_tx_25526bf06c76ad3082bba930cf627cdd5f1b3cd0b9907dd7ff1a07e14addc985.json │ │ ├── insight_bgold_tx_db77c2461b840e6edbe7f9280043184a98e020d9795c1b65cb7cef2551a8fb18.json │ │ ├── insight_bitcoin_gold_tx_25526bf06c76ad3082bba930cf627cdd5f1b3cd0b9907dd7ff1a07e14addc985.json │ │ ├── insight_bitcoin_gold_tx_db77c2461b840e6edbe7f9280043184a98e020d9795c1b65cb7cef2551a8fb18.json │ │ ├── insight_bitcoin_tx_1570416eb4302cf52979afd5e6909e37d8fdd874301f7cc87e547e509cb1caa6.json │ │ ├── insight_bitcoin_tx_39a29e954977662ab3879c66fb251ef753e0912223a83d1dcb009111d28265e5.json │ │ ├── insight_bitcoin_tx_4a7b7e0403ae5607e473949cfa03f09f2cd8b0f404bf99ce10b7303d86280bf7.json │ │ ├── insight_bitcoin_tx_50f6f1209ca92d7359564be803cb2c932cde7d370f7cee50fd1fad6790f6206d.json │ │ ├── insight_bitcoin_tx_54aa5680dea781f45ebb536e53dffc526d68c0eb5c00547e323b2c32382dfba3.json │ │ ├── insight_bitcoin_tx_58497a7757224d1ff1941488d23087071103e5bf855f4c1c44e5c8d9d82ca46e.json │ │ ├── insight_bitcoin_tx_6189e3febb5a21cee8b725aa1ef04ffce7e609448446d3a8d6f483c634ef5315.json │ │ ├── insight_bitcoin_tx_a6e2829d089cee47e481b1a753a53081b40738cc87e38f1d9b23ab57d9ad4396.json │ │ ├── insight_bitcoin_tx_c6091adf4c0c23982a35899a6e58ae11e703eacd7954f588ed4b9cdefc4dba52.json │ │ ├── insight_bitcoin_tx_c63e24ed820c5851b60c54613fbc4bcb37df6cd49b4c96143e99580a472f79fb.json │ │ ├── insight_bitcoin_tx_c6be22d34946593bcad1d2b013e12f74159e69574ffea21581dad115572e031c.json │ │ ├── insight_bitcoin_tx_d1d08ea63255af4ad16b098e9885a252632086fa6be53301521d05253ce8a73d.json │ │ ├── insight_bitcoin_tx_d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882.json │ │ ├── insight_bitcoin_tx_e4bc1ae5e5007a08f2b3926fe11c66612e8f73c6b00c69c7027213b84d259be3.json │ │ ├── insight_capricoin_tx_3bf506c81ce84eda891679ddc797d162c17c60b15d6c0ac23be5e31369e7235f.json │ │ ├── insight_capricoin_tx_f3a6e6411f1b2dffd76d2729bae8e056f8f9ecf8996d3f428e75a6f23f2c5e8c.json │ │ ├── insight_dash_tx_15575a1c874bd60a819884e116c42e6791c8283ce1fc3b79f0d18531a61bbb8a.json │ │ ├── insight_dash_tx_5579eaa64b2a0233e7d8d037f5a5afc957cedf48f1c4067e9e33ca6df22ab04f.json │ │ ├── insight_dash_tx_acb3b7f259429989fc9c51ae4a5e3e3eab0723dceb21577533ac7c4b4ba4db5d.json │ │ ├── insight_decred_testnet_tx_16da185052740d85a630e79c140558215b64e26c500212b90e16b55d13ca06a8.json │ │ ├── insight_decred_testnet_tx_3f7c395521d38387e7617565fe17628723ef6635a08537ad9c46cfb1619e4c3f.json │ │ ├── insight_decred_testnet_tx_5e6e3500a333c53c02f523db5f1a9b17538a8850b4c2c24ecb9b7ba48059b970.json │ │ ├── insight_decred_testnet_tx_ccf95b0fd220ef59ae2e5b17005a81e222758122682d522eff8ae1fcbc93bc74.json │ │ ├── insight_decred_testnet_tx_e16248f0b39a0a0c0e53d6f2f84c2a944f0d50e017a82701e8e02e46e979d5ed.json │ │ ├── insight_decred_testnet_tx_f395ef3e72a831a766db15e7a38bc28025d4ee02234d68bdea2d8353b47a3113.json │ │ ├── insight_groestlcoin_tx_cb74c8478c5814742c87cffdb4a21231869888f8042fb07a90e015a9db1f9d4a.json │ │ ├── insight_komodo_tx_339c3e78610e229f65ebc3fa722016fcb9fbde7bc196d2d876604f5257ada19c.json │ │ ├── insight_testnet_tx_09144602765ce3dd8f4329445b20e3684e948709c5cdcaf12da3bb079c99448a.json │ │ ├── insight_testnet_tx_16c6c8471b8db7a628f2b2bb86bfeefae1766463ce8692438c7fd3fce3f43ce5.json │ │ ├── insight_testnet_tx_20912f98ea3ed849042efed0fdac8cb4fc301961c5988cba56902d8ffb61c337.json │ │ ├── insight_testnet_tx_2bac7ad1dec654579a71ea9555463f63ac7b7df9d8ba67b4682bba4e514d0f0c.json │ │ ├── insight_testnet_tx_31bc1c88ce6ae337a6b3057a16d5bad0b561ad1dfc047d0a7fbb8814668f91e5.json │ │ ├── insight_testnet_tx_65b811d3eca0fe6915d9f2d77c86c5a7f19bf66b1b1253c2c51cb4ae5f0c017b.json │ │ ├── insight_testnet_tx_6f90f3c7cbec2258b0971056ef3fe34128dbde30daa9c0639a898f9977299d54.json │ │ ├── insight_testnet_tx_9c31922be756c06d02167656465c8dc83bb553bf386a3f478ae65b5c021002be.json │ │ ├── insight_testnet_tx_b0946dc27ba308a749b11afecc2018980af18f79e89ad6b080b58220d856f739.json │ │ ├── insight_testnet_tx_c9348040bbc2024e12dcb4a0b4806b0398646b91acf314da028c3f03dd0179fc.json │ │ ├── insight_testnet_tx_d2dcdaf547ea7f57a713c607f15e883ddc4a98167ee2c43ed953c53cb5153e24.json │ │ ├── insight_testnet_tx_d6da21677d7cca5f42fbc7631d062c9ae918a0254f7c6c22de8e8cb7fd5b8236.json │ │ ├── insight_testnet_tx_d80c34ee14143a8bf61125102b7ef594118a3796cad670fa8ee15080ae155318.json │ │ ├── insight_testnet_tx_e5040e1bc1ae7667ffb9e5248e90b2fb93cd9150234151ce90e14ab2f5933bcd.json │ │ ├── insight_testnet_tx_f41cbedd8becee05a830f418d13aa665125464547db5c7a6cd28f21639fe1228.json │ │ ├── insight_zcash_testnet_tx_aaf51e4606c264e47e5c42c958fe4cf1539c5172684721e38e69f4ef634d75dc.json │ │ ├── insight_zcash_testnet_tx_e3820602226974b1dd87b7113cc8aea8c63e5ae29293991e7bfa80c126930368.json │ │ └── insight_zencash_block-index_110000.json │ └── unit_tests │ │ ├── __init__.py │ │ ├── test_ckd_public.py │ │ ├── test_cosi.py │ │ ├── test_nem.py │ │ ├── test_protobuf.py │ │ ├── test_stellar.py │ │ ├── test_transport.py │ │ └── test_tx_api.py ├── tezos.py ├── tools.py ├── transport │ ├── __init__.py │ ├── bridge.py │ ├── hid.py │ ├── protocol.py │ ├── udp.py │ └── webusb.py ├── tx_api.py └── ui.py └── trigger-travis.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/README.md -------------------------------------------------------------------------------- /bash_completion.d/trezorctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/bash_completion.d/trezorctl.sh -------------------------------------------------------------------------------- /docs/EXAMPLES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/docs/EXAMPLES.rst -------------------------------------------------------------------------------- /docs/OPTIONS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/docs/OPTIONS.rst -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/sign_tx-coinb.in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/docs/sign_tx-coinb.in.png -------------------------------------------------------------------------------- /docs/sign_tx-electrum1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/docs/sign_tx-electrum1.png -------------------------------------------------------------------------------- /docs/sign_tx-electrum2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/docs/sign_tx-electrum2.png -------------------------------------------------------------------------------- /docs/sign_tx-trezor.io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/docs/sign_tx-trezor.io.png -------------------------------------------------------------------------------- /helper-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/helper-scripts/README.md -------------------------------------------------------------------------------- /helper-scripts/bump-required-fw-versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/helper-scripts/bump-required-fw-versions.py -------------------------------------------------------------------------------- /helper-scripts/linkify-changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/helper-scripts/linkify-changelog.py -------------------------------------------------------------------------------- /helper-scripts/relicence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/helper-scripts/relicence.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/requirements-optional.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/setup.py -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/shell.nix -------------------------------------------------------------------------------- /tools/deserialize_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/deserialize_tx.py -------------------------------------------------------------------------------- /tools/encfs_aes_getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/encfs_aes_getpass.py -------------------------------------------------------------------------------- /tools/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/helloworld.py -------------------------------------------------------------------------------- /tools/mem_flashblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/mem_flashblock.py -------------------------------------------------------------------------------- /tools/mem_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/mem_read.py -------------------------------------------------------------------------------- /tools/mem_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/mem_write.py -------------------------------------------------------------------------------- /tools/mnemonic_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/mnemonic_check.py -------------------------------------------------------------------------------- /tools/pwd_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/pwd_reader.py -------------------------------------------------------------------------------- /tools/rng_entropy_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/rng_entropy_collector.py -------------------------------------------------------------------------------- /tools/trezor-otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tools/trezor-otp.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/tox.ini -------------------------------------------------------------------------------- /trezorctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorctl -------------------------------------------------------------------------------- /trezorlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/__init__.py -------------------------------------------------------------------------------- /trezorlib/_ed25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/_ed25519.py -------------------------------------------------------------------------------- /trezorlib/btc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/btc.py -------------------------------------------------------------------------------- /trezorlib/cardano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/cardano.py -------------------------------------------------------------------------------- /trezorlib/ckd_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/ckd_public.py -------------------------------------------------------------------------------- /trezorlib/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/client.py -------------------------------------------------------------------------------- /trezorlib/coins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/coins.py -------------------------------------------------------------------------------- /trezorlib/cosi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/cosi.py -------------------------------------------------------------------------------- /trezorlib/debuglink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/debuglink.py -------------------------------------------------------------------------------- /trezorlib/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/device.py -------------------------------------------------------------------------------- /trezorlib/ethereum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/ethereum.py -------------------------------------------------------------------------------- /trezorlib/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/exceptions.py -------------------------------------------------------------------------------- /trezorlib/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/firmware.py -------------------------------------------------------------------------------- /trezorlib/lisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/lisk.py -------------------------------------------------------------------------------- /trezorlib/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/log.py -------------------------------------------------------------------------------- /trezorlib/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/mapping.py -------------------------------------------------------------------------------- /trezorlib/messages/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trezorlib/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/misc.py -------------------------------------------------------------------------------- /trezorlib/monero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/monero.py -------------------------------------------------------------------------------- /trezorlib/nem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/nem.py -------------------------------------------------------------------------------- /trezorlib/ontology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/ontology.py -------------------------------------------------------------------------------- /trezorlib/protobuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/protobuf.py -------------------------------------------------------------------------------- /trezorlib/qt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trezorlib/qt/pinmatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/qt/pinmatrix.py -------------------------------------------------------------------------------- /trezorlib/ripple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/ripple.py -------------------------------------------------------------------------------- /trezorlib/stellar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/stellar.py -------------------------------------------------------------------------------- /trezorlib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trezorlib/tests/burn_tests/burntest_t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/burn_tests/burntest_t1.py -------------------------------------------------------------------------------- /trezorlib/tests/burn_tests/burntest_t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/burn_tests/burntest_t2.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.err 3 | -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/common.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/conftest.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_basic.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_bip32_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_bip32_speed.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_cancel.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_cosi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_cosi.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_debuglink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_debuglink.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_applysettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_applysettings.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_cardano_get_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_cardano_get_address.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_changepin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_changepin.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_cipherkeyvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_cipherkeyvalue.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_clearsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_clearsession.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ethereum_getaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ethereum_getaddress.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ethereum_getpublickey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ethereum_getpublickey.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ethereum_signmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ethereum_signmessage.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ethereum_signtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ethereum_signtx.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ethereum_signtx_eip155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ethereum_signtx_eip155.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ethereum_verifymessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ethereum_verifymessage.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_getaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_getaddress.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_getaddress_segwit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_getaddress_segwit.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_getaddress_segwit_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_getaddress_segwit_native.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_getaddress_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_getaddress_show.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_getecdhsessionkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_getecdhsessionkey.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_getentropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_getentropy.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_getpublickey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_getpublickey.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_getpublickey_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_getpublickey_curve.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_lisk_getaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_lisk_getaddress.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_lisk_getpublickey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_lisk_getpublickey.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_lisk_signmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_lisk_signmessage.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_lisk_signtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_lisk_signtx.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_lisk_verifymessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_lisk_verifymessage.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_loaddevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_loaddevice.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_loaddevice_xprv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_loaddevice_xprv.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_monero_getaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_monero_getaddress.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_monero_getwatchkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_monero_getwatchkey.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_nem_getaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_nem_getaddress.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics_t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics_t2.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_nem_signtx_multisig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_nem_signtx_multisig.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_nem_signtx_others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_nem_signtx_others.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_nem_signtx_transfers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_nem_signtx_transfers.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ontology_getaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ontology_getaddress.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ontology_sign_ont_id_add_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ontology_sign_ont_id_add_attributes.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ontology_sign_ont_id_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ontology_sign_ont_id_register.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ontology_sign_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ontology_sign_tx.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ontology_sign_withdraw_ong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ontology_sign_withdraw_ong.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ping.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_recoverydevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_recoverydevice.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_recoverydevice_dryrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_recoverydevice_dryrun.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_recoverydevice_t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_recoverydevice_t2.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_resetdevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_resetdevice.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_resetdevice_nobackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_resetdevice_nobackup.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_resetdevice_skipbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_resetdevice_skipbackup.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_resetdevice_t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_resetdevice_t2.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ripple_get_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ripple_get_address.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signidentity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signidentity.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signmessage.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signmessage_decred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signmessage_decred.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signmessage_segwit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signmessage_segwit.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signmessage_segwit_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signmessage_segwit_native.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_bcash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_bcash.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_bgold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_bgold.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_capricoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_capricoin.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_dash.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_decred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_decred.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_grs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_grs.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_komodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_komodo.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_segwit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_segwit.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_segwit_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_segwit_native.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_signtx_zcash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_signtx_zcash.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_stellar_get_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_stellar_get_address.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_tezos_getaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_tezos_getaddress.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_tezos_getpublickey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_tezos_getpublickey.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_tezos_sign_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_tezos_sign_tx.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_verifymessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_verifymessage.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_verifymessage_segwit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_verifymessage_segwit.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_verifymessage_segwit_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_verifymessage_segwit_native.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_msg_wipedevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_msg_wipedevice.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_multisig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_multisig.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_multisig_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_multisig_change.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_op_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_op_return.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_protect_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_protect_call.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_protection_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_protection_levels.py -------------------------------------------------------------------------------- /trezorlib/tests/device_tests/test_zerosig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/device_tests/test_zerosig.py -------------------------------------------------------------------------------- /trezorlib/tests/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trezorlib/tests/support/ckd_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/support/ckd_public.py -------------------------------------------------------------------------------- /trezorlib/tests/support/tx_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/support/tx_cache.py -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bcash_tx_502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bcash_tx_502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bcash_tx_8b6db9b8ba24235d86b053ea2ccb484fc32b96f89c3c39f98d86f90db16076a0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bcash_tx_8b6db9b8ba24235d86b053ea2ccb484fc32b96f89c3c39f98d86f90db16076a0.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bcash_tx_bc37c28dfb467d2ecb50261387bf752a3977d7e5337915071bb4151e6b711a78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bcash_tx_bc37c28dfb467d2ecb50261387bf752a3977d7e5337915071bb4151e6b711a78.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bcash_tx_f68caf10df12d5b07a34601d88fa6856c6edcbf4d05ebef3486510ae1c293d5f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bcash_tx_f68caf10df12d5b07a34601d88fa6856c6edcbf4d05ebef3486510ae1c293d5f.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bgold_tx_25526bf06c76ad3082bba930cf627cdd5f1b3cd0b9907dd7ff1a07e14addc985.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bgold_tx_25526bf06c76ad3082bba930cf627cdd5f1b3cd0b9907dd7ff1a07e14addc985.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bgold_tx_db77c2461b840e6edbe7f9280043184a98e020d9795c1b65cb7cef2551a8fb18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bgold_tx_db77c2461b840e6edbe7f9280043184a98e020d9795c1b65cb7cef2551a8fb18.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_gold_tx_25526bf06c76ad3082bba930cf627cdd5f1b3cd0b9907dd7ff1a07e14addc985.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_gold_tx_25526bf06c76ad3082bba930cf627cdd5f1b3cd0b9907dd7ff1a07e14addc985.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_gold_tx_db77c2461b840e6edbe7f9280043184a98e020d9795c1b65cb7cef2551a8fb18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_gold_tx_db77c2461b840e6edbe7f9280043184a98e020d9795c1b65cb7cef2551a8fb18.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_1570416eb4302cf52979afd5e6909e37d8fdd874301f7cc87e547e509cb1caa6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_1570416eb4302cf52979afd5e6909e37d8fdd874301f7cc87e547e509cb1caa6.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_39a29e954977662ab3879c66fb251ef753e0912223a83d1dcb009111d28265e5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_39a29e954977662ab3879c66fb251ef753e0912223a83d1dcb009111d28265e5.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_4a7b7e0403ae5607e473949cfa03f09f2cd8b0f404bf99ce10b7303d86280bf7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_4a7b7e0403ae5607e473949cfa03f09f2cd8b0f404bf99ce10b7303d86280bf7.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_50f6f1209ca92d7359564be803cb2c932cde7d370f7cee50fd1fad6790f6206d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_50f6f1209ca92d7359564be803cb2c932cde7d370f7cee50fd1fad6790f6206d.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_54aa5680dea781f45ebb536e53dffc526d68c0eb5c00547e323b2c32382dfba3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_54aa5680dea781f45ebb536e53dffc526d68c0eb5c00547e323b2c32382dfba3.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_58497a7757224d1ff1941488d23087071103e5bf855f4c1c44e5c8d9d82ca46e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_58497a7757224d1ff1941488d23087071103e5bf855f4c1c44e5c8d9d82ca46e.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_6189e3febb5a21cee8b725aa1ef04ffce7e609448446d3a8d6f483c634ef5315.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_6189e3febb5a21cee8b725aa1ef04ffce7e609448446d3a8d6f483c634ef5315.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_a6e2829d089cee47e481b1a753a53081b40738cc87e38f1d9b23ab57d9ad4396.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_a6e2829d089cee47e481b1a753a53081b40738cc87e38f1d9b23ab57d9ad4396.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_c6091adf4c0c23982a35899a6e58ae11e703eacd7954f588ed4b9cdefc4dba52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_c6091adf4c0c23982a35899a6e58ae11e703eacd7954f588ed4b9cdefc4dba52.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_c63e24ed820c5851b60c54613fbc4bcb37df6cd49b4c96143e99580a472f79fb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_c63e24ed820c5851b60c54613fbc4bcb37df6cd49b4c96143e99580a472f79fb.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_c6be22d34946593bcad1d2b013e12f74159e69574ffea21581dad115572e031c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_c6be22d34946593bcad1d2b013e12f74159e69574ffea21581dad115572e031c.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_d1d08ea63255af4ad16b098e9885a252632086fa6be53301521d05253ce8a73d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_d1d08ea63255af4ad16b098e9885a252632086fa6be53301521d05253ce8a73d.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_bitcoin_tx_e4bc1ae5e5007a08f2b3926fe11c66612e8f73c6b00c69c7027213b84d259be3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_bitcoin_tx_e4bc1ae5e5007a08f2b3926fe11c66612e8f73c6b00c69c7027213b84d259be3.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_capricoin_tx_3bf506c81ce84eda891679ddc797d162c17c60b15d6c0ac23be5e31369e7235f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_capricoin_tx_3bf506c81ce84eda891679ddc797d162c17c60b15d6c0ac23be5e31369e7235f.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_capricoin_tx_f3a6e6411f1b2dffd76d2729bae8e056f8f9ecf8996d3f428e75a6f23f2c5e8c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_capricoin_tx_f3a6e6411f1b2dffd76d2729bae8e056f8f9ecf8996d3f428e75a6f23f2c5e8c.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_dash_tx_15575a1c874bd60a819884e116c42e6791c8283ce1fc3b79f0d18531a61bbb8a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_dash_tx_15575a1c874bd60a819884e116c42e6791c8283ce1fc3b79f0d18531a61bbb8a.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_dash_tx_5579eaa64b2a0233e7d8d037f5a5afc957cedf48f1c4067e9e33ca6df22ab04f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_dash_tx_5579eaa64b2a0233e7d8d037f5a5afc957cedf48f1c4067e9e33ca6df22ab04f.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_dash_tx_acb3b7f259429989fc9c51ae4a5e3e3eab0723dceb21577533ac7c4b4ba4db5d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_dash_tx_acb3b7f259429989fc9c51ae4a5e3e3eab0723dceb21577533ac7c4b4ba4db5d.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_decred_testnet_tx_16da185052740d85a630e79c140558215b64e26c500212b90e16b55d13ca06a8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_decred_testnet_tx_16da185052740d85a630e79c140558215b64e26c500212b90e16b55d13ca06a8.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_decred_testnet_tx_3f7c395521d38387e7617565fe17628723ef6635a08537ad9c46cfb1619e4c3f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_decred_testnet_tx_3f7c395521d38387e7617565fe17628723ef6635a08537ad9c46cfb1619e4c3f.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_decred_testnet_tx_5e6e3500a333c53c02f523db5f1a9b17538a8850b4c2c24ecb9b7ba48059b970.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_decred_testnet_tx_5e6e3500a333c53c02f523db5f1a9b17538a8850b4c2c24ecb9b7ba48059b970.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_decred_testnet_tx_ccf95b0fd220ef59ae2e5b17005a81e222758122682d522eff8ae1fcbc93bc74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_decred_testnet_tx_ccf95b0fd220ef59ae2e5b17005a81e222758122682d522eff8ae1fcbc93bc74.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_decred_testnet_tx_e16248f0b39a0a0c0e53d6f2f84c2a944f0d50e017a82701e8e02e46e979d5ed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_decred_testnet_tx_e16248f0b39a0a0c0e53d6f2f84c2a944f0d50e017a82701e8e02e46e979d5ed.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_decred_testnet_tx_f395ef3e72a831a766db15e7a38bc28025d4ee02234d68bdea2d8353b47a3113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_decred_testnet_tx_f395ef3e72a831a766db15e7a38bc28025d4ee02234d68bdea2d8353b47a3113.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_groestlcoin_tx_cb74c8478c5814742c87cffdb4a21231869888f8042fb07a90e015a9db1f9d4a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_groestlcoin_tx_cb74c8478c5814742c87cffdb4a21231869888f8042fb07a90e015a9db1f9d4a.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_komodo_tx_339c3e78610e229f65ebc3fa722016fcb9fbde7bc196d2d876604f5257ada19c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_komodo_tx_339c3e78610e229f65ebc3fa722016fcb9fbde7bc196d2d876604f5257ada19c.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_09144602765ce3dd8f4329445b20e3684e948709c5cdcaf12da3bb079c99448a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_09144602765ce3dd8f4329445b20e3684e948709c5cdcaf12da3bb079c99448a.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_16c6c8471b8db7a628f2b2bb86bfeefae1766463ce8692438c7fd3fce3f43ce5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_16c6c8471b8db7a628f2b2bb86bfeefae1766463ce8692438c7fd3fce3f43ce5.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_20912f98ea3ed849042efed0fdac8cb4fc301961c5988cba56902d8ffb61c337.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_20912f98ea3ed849042efed0fdac8cb4fc301961c5988cba56902d8ffb61c337.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_2bac7ad1dec654579a71ea9555463f63ac7b7df9d8ba67b4682bba4e514d0f0c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_2bac7ad1dec654579a71ea9555463f63ac7b7df9d8ba67b4682bba4e514d0f0c.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_31bc1c88ce6ae337a6b3057a16d5bad0b561ad1dfc047d0a7fbb8814668f91e5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_31bc1c88ce6ae337a6b3057a16d5bad0b561ad1dfc047d0a7fbb8814668f91e5.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_65b811d3eca0fe6915d9f2d77c86c5a7f19bf66b1b1253c2c51cb4ae5f0c017b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_65b811d3eca0fe6915d9f2d77c86c5a7f19bf66b1b1253c2c51cb4ae5f0c017b.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_6f90f3c7cbec2258b0971056ef3fe34128dbde30daa9c0639a898f9977299d54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_6f90f3c7cbec2258b0971056ef3fe34128dbde30daa9c0639a898f9977299d54.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_9c31922be756c06d02167656465c8dc83bb553bf386a3f478ae65b5c021002be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_9c31922be756c06d02167656465c8dc83bb553bf386a3f478ae65b5c021002be.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_b0946dc27ba308a749b11afecc2018980af18f79e89ad6b080b58220d856f739.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_b0946dc27ba308a749b11afecc2018980af18f79e89ad6b080b58220d856f739.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_c9348040bbc2024e12dcb4a0b4806b0398646b91acf314da028c3f03dd0179fc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_c9348040bbc2024e12dcb4a0b4806b0398646b91acf314da028c3f03dd0179fc.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_d2dcdaf547ea7f57a713c607f15e883ddc4a98167ee2c43ed953c53cb5153e24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_d2dcdaf547ea7f57a713c607f15e883ddc4a98167ee2c43ed953c53cb5153e24.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_d6da21677d7cca5f42fbc7631d062c9ae918a0254f7c6c22de8e8cb7fd5b8236.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_d6da21677d7cca5f42fbc7631d062c9ae918a0254f7c6c22de8e8cb7fd5b8236.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_d80c34ee14143a8bf61125102b7ef594118a3796cad670fa8ee15080ae155318.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_d80c34ee14143a8bf61125102b7ef594118a3796cad670fa8ee15080ae155318.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_e5040e1bc1ae7667ffb9e5248e90b2fb93cd9150234151ce90e14ab2f5933bcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_e5040e1bc1ae7667ffb9e5248e90b2fb93cd9150234151ce90e14ab2f5933bcd.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_testnet_tx_f41cbedd8becee05a830f418d13aa665125464547db5c7a6cd28f21639fe1228.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_testnet_tx_f41cbedd8becee05a830f418d13aa665125464547db5c7a6cd28f21639fe1228.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_zcash_testnet_tx_aaf51e4606c264e47e5c42c958fe4cf1539c5172684721e38e69f4ef634d75dc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_zcash_testnet_tx_aaf51e4606c264e47e5c42c958fe4cf1539c5172684721e38e69f4ef634d75dc.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_zcash_testnet_tx_e3820602226974b1dd87b7113cc8aea8c63e5ae29293991e7bfa80c126930368.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_zcash_testnet_tx_e3820602226974b1dd87b7113cc8aea8c63e5ae29293991e7bfa80c126930368.json -------------------------------------------------------------------------------- /trezorlib/tests/txcache/insight_zencash_block-index_110000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/txcache/insight_zencash_block-index_110000.json -------------------------------------------------------------------------------- /trezorlib/tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trezorlib/tests/unit_tests/test_ckd_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/unit_tests/test_ckd_public.py -------------------------------------------------------------------------------- /trezorlib/tests/unit_tests/test_cosi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/unit_tests/test_cosi.py -------------------------------------------------------------------------------- /trezorlib/tests/unit_tests/test_nem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/unit_tests/test_nem.py -------------------------------------------------------------------------------- /trezorlib/tests/unit_tests/test_protobuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/unit_tests/test_protobuf.py -------------------------------------------------------------------------------- /trezorlib/tests/unit_tests/test_stellar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/unit_tests/test_stellar.py -------------------------------------------------------------------------------- /trezorlib/tests/unit_tests/test_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/unit_tests/test_transport.py -------------------------------------------------------------------------------- /trezorlib/tests/unit_tests/test_tx_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tests/unit_tests/test_tx_api.py -------------------------------------------------------------------------------- /trezorlib/tezos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tezos.py -------------------------------------------------------------------------------- /trezorlib/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tools.py -------------------------------------------------------------------------------- /trezorlib/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/transport/__init__.py -------------------------------------------------------------------------------- /trezorlib/transport/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/transport/bridge.py -------------------------------------------------------------------------------- /trezorlib/transport/hid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/transport/hid.py -------------------------------------------------------------------------------- /trezorlib/transport/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/transport/protocol.py -------------------------------------------------------------------------------- /trezorlib/transport/udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/transport/udp.py -------------------------------------------------------------------------------- /trezorlib/transport/webusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/transport/webusb.py -------------------------------------------------------------------------------- /trezorlib/tx_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/tx_api.py -------------------------------------------------------------------------------- /trezorlib/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trezorlib/ui.py -------------------------------------------------------------------------------- /trigger-travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/python-trezor/HEAD/trigger-travis.sh --------------------------------------------------------------------------------