Update README.md

This commit is contained in:
Iuri Matias 2016-10-18 12:00:56 -04:00 committed by GitHub
parent e3d05af129
commit 57859bd7ca

View File

@ -277,15 +277,14 @@ methods in EmbarkJS contracts will be converted to promises.
Client side deployment will be automatically available in Embark for existing contracts:
```Javascript
var myContract = new EmbarkJS.Contract({abi: abiObject, code: code});
myContract.deploy().then(function(address) {});
SimpleStorage.deploy().then(function(anotherSimpleStorage) {});
```
or it can be manually definied as
```Javascript
var myContract = new EmbarkJS.Contract({abi: abiObject, code: code});
myContract.deploy().then(function(address) {});
myContract.deploy().then(function(anotherMyContractObject) {});
```
EmbarkJS - Storage