-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with typings #4029
Labels
fixed/complete
This Bug is fixed or Enhancement is complete and published.
investigate
Under investigation and may be a bug.
minor-bump
Planned for the next minor version bump.
v6
Issues regarding v6
Comments
TrejGun
added
investigate
Under investigation and may be a bug.
v6
Issues regarding v6
labels
May 6, 2023
I think you can just change the parseLog(log: { topics: ReadonlyArray<string>, data: string }): null | LogDescription {
// ...
} One way to work around this is to augment the // ethers.d.ts
import type { LogDescription } from 'ethers'
declare module 'ethers' {
interface Interface {
parseLog(log: { topics: ReadonlyArray<string>; data: string }): null | LogDescription
}
} |
ricmoo
added
on-deck
This Enhancement or Bug is currently being worked on.
minor-bump
Planned for the next minor version bump.
next-patch
Issues scheduled for the next arch release.
labels
Jan 31, 2024
ricmoo
added a commit
that referenced
this issue
Jan 31, 2024
Fixed in v6.11.0. Thanks! And let me know if you still have any issues. :) |
ricmoo
added
fixed/complete
This Bug is fixed or Enhancement is complete and published.
and removed
on-deck
This Enhancement or Bug is currently being worked on.
next-patch
Issues scheduled for the next arch release.
labels
Feb 9, 2024
This was referenced May 22, 2024
This was referenced Jun 20, 2024
This was referenced Jun 23, 2024
This was referenced Sep 10, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
fixed/complete
This Bug is fixed or Enhancement is complete and published.
investigate
Under investigation and may be a bug.
minor-bump
Planned for the next minor version bump.
v6
Issues regarding v6
Ethers Version
6.3.0
Search Terms
No response
Describe the Problem
Hey there, it's time for me to migrate from v5 to v6 and I have some problems, can you please help me to solve them?!
1 log types are incompatible
I guess the reason is
that has to be
The text was updated successfully, but these errors were encountered: