From 0cfea5613a37d5f8f93764e255d6853a85ab603a Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Wed, 25 Jul 2018 14:57:38 +0200 Subject: Improve the README instructions for migrations --- packages/migrations/README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'packages/migrations/README.md') 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 ``` -- cgit v1.2.3 From dc51741b8376b5a0eaf010772f7a282dbb370205 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Wed, 25 Jul 2018 18:07:12 +0200 Subject: Update artifacts in contract-wrappers, generate artifacts and improve README --- packages/migrations/README.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'packages/migrations/README.md') diff --git a/packages/migrations/README.md b/packages/migrations/README.md index 9317256af..99e4565b3 100644 --- a/packages/migrations/README.md +++ b/packages/migrations/README.md @@ -60,6 +60,10 @@ 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: -- cgit v1.2.3 From 7fc0fd9fb69a77a4a3269b32e59eb8ab458bf30a Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Wed, 25 Jul 2018 21:36:56 +0200 Subject: Prettier fixes --- packages/migrations/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'packages/migrations/README.md') diff --git a/packages/migrations/README.md b/packages/migrations/README.md index 99e4565b3..f4715cfa1 100644 --- a/packages/migrations/README.md +++ b/packages/migrations/README.md @@ -61,8 +61,9 @@ 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`) + +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 -- cgit v1.2.3