Calculate Value from JS Promise
I have assigned a callback function to a variable. The function then returns a promise stating it is fulfilled and the value. I want to be able to return the value and use it to perform a mathematical calculation. Javascript code: const DollarValue = web3.eth.getBalance(address, (err, balance) =>{ const EthValue = web3.utils.fromWei(balance, ‘ether’) TotalEth =… Read More Calculate Value from JS Promise