aboutsummaryrefslogtreecommitdiffstats
path: root/library/example/index.js
blob: d24c26f878c8c85d90733b9db3dc5eb067cbf4ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

window.addEventListener('load', web3Detect)

function web3Detect() {
  if (global.web3) {
    document.body.innerHTML += 'web3 detected!'
  } else {
    document.body.innerHTML += 'no web3 detected!'
  }
  startApp()
}

var primaryAccount = null
web3.eth.getAccounts(function(err, addresses){
  if (err) throw err
  primaryAccount = addresses[0]
})


function startApp(){
  document.querySelector('.action-button-1').addEventListener('click', function(){
    web3.eth.sendTransaction({
      from: primaryAccount,
      value: 0,
    }, function(err, txHash){
      if (err) throw err
      console.log('sendTransaction result:', err || txHash)
    })
  })
  document.querySelector('.action-button-2').addEventListener('click', function(){
    setTimeout(function(){
      web3.eth.sendTransaction({
        from: primaryAccount,
        value: 0,
      }, function(err, txHash){
        if (err) throw err
        console.log('sendTransaction result:', err || txHash)
      })
    })
  })

}