Skip to content

Commit

Permalink
fix(ethers-v6): TypedContractEvent should extend EventLog
Browse files Browse the repository at this point in the history
  • Loading branch information
songkeys authored Feb 24, 2023
1 parent 23a5dad commit f36855b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/target-ethers-v6/static/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface TypedContractEvent<
InputTuple extends Array<any> = any,
OutputTuple extends Array<any> = any,
OutputObject = any,
> {
> extends EventLog {
(...args: Partial<InputTuple>): TypedDeferredTopicFilter<TypedContractEvent<InputTuple, OutputTuple, OutputObject>>
name: string
fragment: EventFragment
Expand Down

0 comments on commit f36855b

Please sign in to comment.