Skip to content

Instantly share code, notes, and snippets.

@rapina
Created February 14, 2022 09:07
Show Gist options
  • Select an option

  • Save rapina/e19233f51ac1f55d52e75ed14b2d98f9 to your computer and use it in GitHub Desktop.

Select an option

Save rapina/e19233f51ac1f55d52e75ed14b2d98f9 to your computer and use it in GitHub Desktop.
const checkNetwork = async () => {
try {
if (window.ethereum.networkVersion !== '4') {
alert("Please connect to Rinkeby!")
}
} catch(error) {
console.log(error)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment