diff options
Diffstat (limited to 'packages/deployer/README.md')
-rw-r--r-- | packages/deployer/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/deployer/README.md b/packages/deployer/README.md index 8b6f9799c..5f10b762b 100644 --- a/packages/deployer/README.md +++ b/packages/deployer/README.md @@ -39,7 +39,7 @@ Options: ## Migrations -You might want to write a migrations script (similar to `truffle migrate`), that deploys multiple contracts and configures them. Bellow you'll find a simplest example of such a script to help you get started. +You might want to write a migration scripts (similar to `truffle migrate`), that deploys multiple contracts and configures them. Below you'll find a simple example of such a script to help you get started. ``` import { Deployer } from '@0xproject/deployer'; @@ -50,7 +50,7 @@ const deployerOpts = { jsonrpcUrl: 'http://localhost:8545', networkId: 50, defaults: { - gas: '1000000', + gas: 1000000, }, }; @@ -61,7 +61,7 @@ const deployer = new Deployer(deployerOpts); })().catch(console.log); ``` -More sophisticated example can be found [here](https://github.com/0xProject/0x-monorepo/tree/development/packages/contracts/migrations) +A more sophisticated example can be found [here](https://github.com/0xProject/0x-monorepo/tree/development/packages/contracts/migrations) ## Contributing |