event Transfer(address sender, address receiver, uint256 value);
const filter = contractInst.filters.Transfer(); // TransferFilter
const logs = await contractInst.queryFilter(filter) // Overloaded for each filter
logs[0].args // before `any`, but after this feature it should be `{sender: string, receiver: string, value: BigNumber}`
I'll give this a shot while doing my next project starting probably end of this month or next month.
I'll give this a shot while doing my next project starting probably end of this month or next month.