We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d01a51a commit 81b66e5Copy full SHA for 81b66e5
1 file changed
src/abi/fetcher/AbiFetcher.ts
@@ -405,9 +405,22 @@ export class AbiFetcher {
405
metadata
406
)
407
408
+ const operateImplAbi = constantsView.operateImplementation
409
+ ? await this._get(
410
+ constantsView.operateImplementation,
411
+ network,
412
+ metadata
413
+ )
414
+ : []
415
+
416
return proxyFetchMode === 'implementationOnly'
- ? [...adminImplAbi, ...secondaryImplAbi]
- : [...originalAbi, ...adminImplAbi, ...secondaryImplAbi]
417
+ ? [...adminImplAbi, ...secondaryImplAbi, ...operateImplAbi]
418
+ : [
419
+ ...originalAbi,
420
+ ...adminImplAbi,
421
+ ...secondaryImplAbi,
422
+ ...operateImplAbi
423
+ ]
424
}
425
} catch (error) {}
426
} else if (
0 commit comments