You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello Community, I am trying to fetch two events from a contract on goerli. One of them is being fetched correctly but the other one doesn't.
The working one :
let eventFilter = Core.filters.AddChannel();//Core is the contract instance, and it is correctly initialized.
let events = await Core.queryFilter(eventFilter);
console.log(`Total ${events.length} Add events found `);
Not working :
let Filter = Core.filters.UpdateChannel();
let events = await Core.queryFilter(Filter);
console.log(`Total ${events.length} update events found`);
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello Community, I am trying to fetch two events from a contract on goerli. One of them is being fetched correctly but the other one doesn't.
The working one :
Not working :
here is the contract address : 0x23346b732d56d34ec4e890419fbfb8548216a799
Beta Was this translation helpful? Give feedback.
All reactions