We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ethers-io
Learn more about funding links in repositories.
Report abuse
1 parent fa3a883 commit 93af87cCopy full SHA for 93af87c
src.ts/contract/contract.ts
@@ -88,6 +88,9 @@ class PreparedTopicFilter implements DeferredTopicFilter {
88
89
return param.walkAsync(args[index], (type, value) => {
90
if (type === "address") {
91
+ if (Array.isArray(value)) {
92
+ return Promise.all(value.map((v) => resolveAddress(v, resolver)));
93
+ }
94
return resolveAddress(value, resolver);
95
}
96
return value;
0 commit comments