1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/docs/trezor-emulator.md

26 lines
733 B
Markdown
Raw Normal View History

2018-07-14 02:31:40 +02:00
# Using the TREZOR simulator
You can install the TREZOR emulator and use it with Metamask.
2018-07-14 02:31:40 +02:00
Here is how:
## 1 - Install the TREZOR Bridge
Download the corresponding bridge for your platform from [this url](https://wallet.trezor.io/data/bridge/latest/index.html)
## 2 - Download and build the simulator
Follow this instructions: https://github.com/trezor/trezor-firmware/blob/master/docs/core/emulator/index.md
2018-07-14 02:31:40 +02:00
## 3 - Restart the bridge with emulator support (Mac OSx instructions)
2021-11-25 23:25:04 +01:00
```
2018-07-14 02:31:40 +02:00
# stop any existing instance of trezord
killall trezord
# start the bridge for the simulator
/Applications/Utilities/TREZOR\ Bridge/trezord -e 21324 >> /dev/null 2>&1 &
# launch the emulator
~/trezor-core/emu.sh
```