aboutsummaryrefslogtreecommitdiffstats
path: root/docs/trezor-emulator.md
blob: 8f66ba213108e2a1f57f6adac014d4bd1c6c2608 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
`