Created
August 20, 2020 16:11
-
-
Save CarlosLanderas/072605333e04f4f612adae498b588531 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Web3 from 'web3'; | |
const getWeb3 = () => { | |
return new Promise( (resolve, reject) => { | |
window.addEventListener('load', function() { | |
let web3 = window.web3; | |
web3 = new Web3(web3.currentProvider); | |
console.log(web3.version); | |
resolve(web3); | |
}); | |
}); | |
}; | |
export default getWeb3; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment