We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b7fbf1 commit 64f390eCopy full SHA for 64f390e
README.md
@@ -169,8 +169,8 @@ Will automatically be available in Javascript as:
169
```Javascript
170
# app/js/index.js
171
SimpleStorage.set(100);
172
-SimpleStorage.get();
173
-SimpleStorage.storedData();
+SimpleStorage.get().then(function(value) { console.log(value.toNumber()) });
+SimpleStorage.storedData().then(function(value) { console.log(value.toNumber()) });
174
```
175
176
You can specify for each contract and environment its gas costs and arguments:
0 commit comments