diff --git a/docs/core/emulator/index.md b/docs/core/emulator/index.md index 9e5d5500a..3bbb08dd0 100644 --- a/docs/core/emulator/index.md +++ b/docs/core/emulator/index.md @@ -16,7 +16,7 @@ Emulator significantly speeds up development and has several features to help yo - or always use `poetry run ./emu.py` 3. to use [bridge](https://github.com/trezor/trezord-go) with the emulator support, start it with `trezord-go -e 21324` -Now you can use the emulator the same way as you use the device, for example you can visit our Wallet (https://wallet.trezor.io), use our Python CLI tool (`trezorctl`) etc. Simply click to emulate screen touches. +Now you can use the emulator the same way as you use the device, for example you can use [Trezor Suite](https://suite.trezor.io), use our Python CLI tool (`trezorctl`), etc. Simply click to emulate screen touches. ## Features diff --git a/docs/legacy/index.md b/docs/legacy/index.md index 1b785fd52..519a614ad 100644 --- a/docs/legacy/index.md +++ b/docs/legacy/index.md @@ -86,8 +86,8 @@ You can use `TREZOR_OLED_SCALE` environment variable to make emulator screen big ## How to get fingerprint of firmware signed and distributed by SatoshiLabs? -1. Pick version of firmware binary listed on https://wallet.trezor.io/data/firmware/1/releases.json -2. Download it: `wget -O trezor.signed.bin https://wallet.trezor.io/data/firmware/1/trezor-1.6.1.bin` +1. Pick version of firmware binary listed on https://data.trezor.io/firmware/1/releases.json +2. Download it: `wget -O trezor.signed.bin https://data.trezor.io/firmware/1/trezor-1.9.4.bin` 3. Use `trezorctl` dry-run mode to get the firmware fingerprint: ```sh trezorctl firmware-update -n -f trezor.signed.bin diff --git a/python/README.md b/python/README.md index 59dbe1760..c11aa239e 100644 --- a/python/README.md +++ b/python/README.md @@ -20,7 +20,7 @@ On a typical system, you already have all you need. Install `trezor` with: pip3 install trezor ``` -On Windows, you also need to either install [Trezor Bridge](https://wallet.trezor.io/#/bridge), or +On Windows, you also need to either install [Trezor Bridge](https://suite.trezor.io/web/bridge/), or [libusb](https://github.com/libusb/libusb/wiki/Windows) and the appropriate [drivers](https://zadig.akeo.ie/). diff --git a/python/src/trezorlib/cli/firmware.py b/python/src/trezorlib/cli/firmware.py index 2f3212c8b..f4df3fec6 100644 --- a/python/src/trezorlib/cli/firmware.py +++ b/python/src/trezorlib/cli/firmware.py @@ -206,11 +206,11 @@ def firmware_update( You can specify a filename or URL from which the firmware can be downloaded. You can also explicitly specify a firmware version that you want. Otherwise, trezorctl will attempt to find latest available version - from wallet.trezor.io. + from data.trezor.io. If you provide a fingerprint via the --fingerprint option, it will be checked against downloaded firmware fingerprint. Otherwise fingerprint is checked - against wallet.trezor.io information, if available. + against data.trezor.io information, if available. """ if sum(bool(x) for x in (filename, url, version)) > 1: click.echo("You can use only one of: filename, url, version.") diff --git a/python/src/trezorlib/client.py b/python/src/trezorlib/client.py index cd10380e0..c3555a899 100644 --- a/python/src/trezorlib/client.py +++ b/python/src/trezorlib/client.py @@ -37,7 +37,7 @@ PASSPHRASE_TEST_PATH = tools.parse_path("44h/1h/0h/0/0") OUTDATED_FIRMWARE_ERROR = """ Your Trezor firmware is out of date. Update it with the following command: trezorctl firmware-update -Or visit https://wallet.trezor.io/ +Or visit https://suite.trezor.io/ """.strip() diff --git a/python/tools/helloworld.py b/python/tools/helloworld.py index b51cc2ebf..163b7a7e0 100755 --- a/python/tools/helloworld.py +++ b/python/tools/helloworld.py @@ -12,7 +12,6 @@ def main(): print(client.features) # Get the first address of first BIP44 account - # (should be the same address as shown in wallet.trezor.io) bip32_path = parse_path("44'/0'/0'/0/0") address = btc.get_address(client, "Bitcoin", bip32_path, True) print("Bitcoin address:", address)