Skip to content

Instantly share code, notes, and snippets.

@parv3213
Created December 6, 2020 08:57
Show Gist options
  • Save parv3213/d48df85848ad116657c7ab07f5c9734f to your computer and use it in GitHub Desktop.
Save parv3213/d48df85848ad116657c7ab07f5c9734f to your computer and use it in GitHub Desktop.
Once web3 event function
const eventOnce = () => {
contractInstance.once("Transfer", (error, event) => {
if(!error) console.log(event);
else console.log(`Error: ${error}`);
})
}
eventOnce();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment