AuthentiFi
AuthentiFi copied to clipboard
TypeError: web3.eth.contract is not a function
when I run node server.js I get the error below please how can I solve it
Talking with a geth server undefined
/Volumes/Untitled/Conterfix/AuthentiFi/server.js:420 const contract = web3.eth.contract(abiArray); ^
TypeError: web3.eth.contract is not a function
at Object.
Try using this :
MyContract = new web3.eth.Contract(abi)
Check out the Docs When using version 1.0.x you need to pass in the Application Binary Interface, i.e. abi. And use the new keyword.