aboutsummaryrefslogtreecommitdiffstats
path: root/docs/trezor-emulator.md
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2018-07-25 03:27:18 +0800
committerGitHub <noreply@github.com>2018-07-25 03:27:18 +0800
commit1d241bef768db85382e66885cd2661967ab4af1b (patch)
treec91c3ae9345b93bc35805b529320971234ecceda /docs/trezor-emulator.md
parentdd9e3587d47c9a233cea5f7b305d8faa08ee6a0e (diff)
parentfed9ae0deed5853014cfc76b4314195d477f14f4 (diff)
downloadtangerine-wallet-browser-1d241bef768db85382e66885cd2661967ab4af1b.tar
tangerine-wallet-browser-1d241bef768db85382e66885cd2661967ab4af1b.tar.gz
tangerine-wallet-browser-1d241bef768db85382e66885cd2661967ab4af1b.tar.bz2
tangerine-wallet-browser-1d241bef768db85382e66885cd2661967ab4af1b.tar.lz
tangerine-wallet-browser-1d241bef768db85382e66885cd2661967ab4af1b.tar.xz
tangerine-wallet-browser-1d241bef768db85382e66885cd2661967ab4af1b.tar.zst
tangerine-wallet-browser-1d241bef768db85382e66885cd2661967ab4af1b.zip
Merge branch 'develop' into no-inject-ani-gamer
Diffstat (limited to 'docs/trezor-emulator.md')
-rw-r--r--docs/trezor-emulator.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/trezor-emulator.md b/docs/trezor-emulator.md
new file mode 100644
index 000000000..8f66ba213
--- /dev/null
+++ b/docs/trezor-emulator.md
@@ -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
+`