aboutsummaryrefslogblamecommitdiffstats
path: root/test/web3/web3.js
blob: 5c2de078d32cf06965d301c8637f98d301d96f1c (plain) (tree)

































                                                                                 
/* eslint no-undef: 0 */

var json = methods

web3.currentProvider.enable().then(() => {

  Object.keys(json).forEach(methodGroupKey => {

    console.log(methodGroupKey)
    const methodGroup = json[methodGroupKey]
    console.log(methodGroup)
    Object.keys(methodGroup).forEach(methodKey => {

      const methodButton = document.getElementById(methodKey)
      methodButton.addEventListener('click', function (event) {

        window.ethereum.sendAsync({
          method: methodKey,
          params: methodGroup[methodKey][1],
        }, function (err, result) {
          if (err) {
            console.log(err)
            console.log(methodKey)
          } else {
            document.getElementById('results').innerHTML = JSON.stringify(result)
          }
        })
      })

      })

    })
  })