Skip to content

Commit 2e3802a

Browse files
committedMar 20, 2023
Fixed deferred filters after unsafe-eval changes (#3749, #3763).
1 parent 0816d54 commit 2e3802a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src.ts/contract/contract.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ function buildWrappedMethod<A extends Array<any> = Array<any>, R = any, D extend
409409
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
410410
Object.defineProperty(method, "fragment", {
411411
configurable: false,
412-
enumerable: false,
412+
enumerable: true,
413413
get: () => {
414414
const fragment = contract.interface.getFunction(key);
415415
assert(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {
@@ -434,7 +434,7 @@ function buildWrappedEvent<A extends Array<any> = Array<any>>(contract: BaseCont
434434
return fragment;
435435
}
436436

437-
const method = async function(...args: ContractMethodArgs<A>): Promise<PreparedTopicFilter> {
437+
const method = function(...args: ContractMethodArgs<A>): PreparedTopicFilter {
438438
return new PreparedTopicFilter(contract, getFragment(...args), args);
439439
};
440440

@@ -448,7 +448,7 @@ function buildWrappedEvent<A extends Array<any> = Array<any>>(contract: BaseCont
448448
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
449449
Object.defineProperty(method, "fragment", {
450450
configurable: false,
451-
enumerable: false,
451+
enumerable: true,
452452
get: () => {
453453
const fragment = contract.interface.getEvent(key);
454454

0 commit comments

Comments
 (0)
Please sign in to comment.