Create migrations doc reference page

This commit is contained in:
Fabio Berger
2018-11-21 11:47:24 +00:00
parent a8803431b3
commit db26ca977f
10 changed files with 112 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
**Install**
```bash
yarn add @0x/migrations
```
**Import**
```javascript
import { runMigrationsAsync } from '@0x/migrations';
```
or
```javascript
var runMigrationsAsync = require('@0x/migrations').runMigrationsAsync;
```

View File

@@ -0,0 +1 @@
Welcome to the [@0x/migrations](https://github.com/0xProject/0x-monorepo/tree/development/packages/migrations) documentation! This package is intended for developers who would like to deploy the 0x protocol system of smart contracts to a custom testnet. If you want to test against existing testnets, check out our pre-deployed [Ganache snapshot](https://0xproject.com/wiki#Ganache-Setup-Guide) or where 0x is already deployed on [popular testnets](https://0xproject.com/wiki#Deployed-Addresses).