aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/README.md
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-25 20:57:38 +0800
committerFabio Berger <me@fabioberger.com>2018-07-25 20:57:38 +0800
commit0cfea5613a37d5f8f93764e255d6853a85ab603a (patch)
treeaef9ff97c22dad4af379f0aced810e2a7010b058 /packages/migrations/README.md
parent98dd3ecab70b85a437084e0cb832ea81421ddc8e (diff)
downloaddexon-sol-tools-0cfea5613a37d5f8f93764e255d6853a85ab603a.tar
dexon-sol-tools-0cfea5613a37d5f8f93764e255d6853a85ab603a.tar.gz
dexon-sol-tools-0cfea5613a37d5f8f93764e255d6853a85ab603a.tar.bz2
dexon-sol-tools-0cfea5613a37d5f8f93764e255d6853a85ab603a.tar.lz
dexon-sol-tools-0cfea5613a37d5f8f93764e255d6853a85ab603a.tar.xz
dexon-sol-tools-0cfea5613a37d5f8f93764e255d6853a85ab603a.tar.zst
dexon-sol-tools-0cfea5613a37d5f8f93764e255d6853a85ab603a.zip
Improve the README instructions for migrations
Diffstat (limited to 'packages/migrations/README.md')
-rw-r--r--packages/migrations/README.md24
1 files changed, 22 insertions, 2 deletions
diff --git a/packages/migrations/README.md b/packages/migrations/README.md
index 83a49fefb..9317256af 100644
--- a/packages/migrations/README.md
+++ b/packages/migrations/README.md
@@ -50,8 +50,28 @@ yarn lint
### Migrate
-In order to migrate the 0x smart contracts to TestRPC/Ganache running at `http://localhost:8545`, run:
+#### V2-beta smart contracts
+
+In order to migrate the V2-beta 0x smart contracts to Kovan using a Ledger Nano S, run:
+
+```bash
+yarn migrate:v2-beta-testnet
+```
+
+**Note:** Ledger settings `contract data` must be `on`, and `browser support` must be set to `off`.
+
+#### V2 (under development) smart contracts
+
+In order to migrate the V2 (under development) 0x smart contracts to TestRPC/Ganache running at `http://localhost:8545`, run:
+
+```bash
+yarn migrate:v2
+```
+
+#### V1 smart contracts
+
+In order to migrate the V1 0x smart contracts to TestRPC/Ganache running at `http://localhost:8545`, run:
```bash
-yarn migrate
+yarn migrate:v1
```