forked from MetaMask/metamask-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b041a9
commit 3025832
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Using the TREZOR simulator | ||
|
||
You can install the TREZOR emulator and use it with Metamask. | ||
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-core/blob/master/docs/build.md | ||
|
||
## 3 - Restart the bridge with emulator support (Mac OSx instructions) | ||
|
||
` | ||
# 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 | ||
` |