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 97f25e8 commit 587a843Copy full SHA for 587a843
README.md
@@ -43,3 +43,11 @@ contractInstance.eventName(watcher);
43
```
44
45
The script will also printout the gas estimates when you try to compile.
46
+
47
+To send some ether from your account to another. You can use `send` function
48
+```javascript
49
+send(accountIndex, toAccount, valueInEther, gas)
50
51
+//For example to send some ether from eth.accounts[2]
52
+send(2, '0xb8290f9757b5c9daa11a8016d663829af812fc0e', 10, 30000);
53
+```
0 commit comments