aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/README.md
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-07-28 02:51:30 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-07-28 02:51:30 +0800
commitc851c3763060ca4cf9e37d75e36e534f9b7d9294 (patch)
tree82bb74e4521804377869c099cf5eba019f06d4d5 /packages/migrations/README.md
parenta0d7b1efa59cf7322a97ef75268c372068592976 (diff)
parent44d1be27e626c4e80ccf80d3f070a890c45f02ac (diff)
downloaddexon-sol-tools-c851c3763060ca4cf9e37d75e36e534f9b7d9294.tar
dexon-sol-tools-c851c3763060ca4cf9e37d75e36e534f9b7d9294.tar.gz
dexon-sol-tools-c851c3763060ca4cf9e37d75e36e534f9b7d9294.tar.bz2
dexon-sol-tools-c851c3763060ca4cf9e37d75e36e534f9b7d9294.tar.lz
dexon-sol-tools-c851c3763060ca4cf9e37d75e36e534f9b7d9294.tar.xz
dexon-sol-tools-c851c3763060ca4cf9e37d75e36e534f9b7d9294.tar.zst
dexon-sol-tools-c851c3763060ca4cf9e37d75e36e534f9b7d9294.zip
Merge branch 'development' of https://github.com/0xProject/0x-monorepo into feature/website/upgrade-allowance-toggles-to-locks-and-checks
Diffstat (limited to 'packages/migrations/README.md')
-rw-r--r--packages/migrations/README.md29
1 files changed, 27 insertions, 2 deletions
diff --git a/packages/migrations/README.md b/packages/migrations/README.md
index 83a49fefb..f4715cfa1 100644
--- a/packages/migrations/README.md
+++ b/packages/migrations/README.md
@@ -50,8 +50,33 @@ 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`.
+
+Post-publish steps:
+
+1. Since we don't re-deploy the `WETH9` nor `ZRXToken` contracts, manually copy over the artifacts for them from `2.0.0` into `2.0.0-beta-testnet` and add the Kovan & ganache addresses to both of their `networks` sections.
+2. We now need to copy over the network `50` settings from the `2.0.0` artifacts to the `2.0.0-beta-testnet` artifacts for the newly deployed contracts (e.g `Exchange`, `ERC20Proxy`, `ERC721Proxy` and `AssetProxyOwner`)
+
+#### 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
```