Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:iurimatias/embark-framework into…
Browse files Browse the repository at this point in the history
… develop
  • Loading branch information
iurimatias committed Oct 19, 2016
2 parents d665500 + 57859bd commit fdda38b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fdda38b

Please sign in to comment.