How can I listen to an Event using its methodID instead of the name? I'm trying to turn this:
contract.on("Transfer", (to, amount, from) => {
console.log(to, amount, from); });
Into something like this:
contract.on("0x5b0d5984", (to, amount, from) => {
console.log(to, amount, from); });