This commit is contained in:
poma 2021-10-29 18:58:55 +01:00
parent 0cf811b854
commit 2ec693d0de
No known key found for this signature in database
GPG Key ID: BA20CB01FE165657
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ async function printETHBalance({ address, name }) {
/** Display ERC20 account balance */
async function printERC20Balance({ address, name, tokenAddress }) {
const erc20ContractJson = require(__dirname + '../build/contracts/ERC20Mock.json')
const erc20ContractJson = require(__dirname + '/../build/contracts/ERC20Mock.json')
erc20 = tokenAddress ? new web3.eth.Contract(erc20ContractJson.abi, tokenAddress) : erc20
console.log(`${name} Token Balance is`, web3.utils.fromWei(await erc20.methods.balanceOf(address).call()))
}