github.com/shyftnetwork/go-empyrean@v1.8.3-0.20191127201940-fbfca9338f04/shyft-config/shyft-cli/web3/sendTransactions.js (about)

     1  for (var i = 0; i < 1; i++) {
     2    console.log('\t\t' + (i + 1) + ' - Transactions')
     3      web3.eth.sendTransaction({
     4          from: web3.eth.accounts[3],
     5          to: web3.eth.accounts[2],
     6          value: 5,
     7          gas: 50000,
     8          gasPrice: 20
     9      });
    10      web3.eth.sendTransaction({
    11          from: web3.eth.accounts[3],
    12          to: web3.eth.accounts[2],
    13          value: 291,
    14          gas: 50000,
    15          gasPrice: 20
    16      });
    17  
    18      web3.eth.sendTransaction({
    19          from: web3.eth.accounts[3],
    20          to: web3.eth.accounts[1],
    21          value: 53039,
    22          gas: 50000,
    23          gasPrice: 20
    24      });
    25  }