Skip to content

Commit 81b66e5

Browse files
committed
Update AbiFetcher.ts
1 parent d01a51a commit 81b66e5

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

src/abi/fetcher/AbiFetcher.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,9 +405,22 @@ export class AbiFetcher {
405405
metadata
406406
)
407407

408+
const operateImplAbi = constantsView.operateImplementation
409+
? await this._get(
410+
constantsView.operateImplementation,
411+
network,
412+
metadata
413+
)
414+
: []
415+
408416
return proxyFetchMode === 'implementationOnly'
409-
? [...adminImplAbi, ...secondaryImplAbi]
410-
: [...originalAbi, ...adminImplAbi, ...secondaryImplAbi]
417+
? [...adminImplAbi, ...secondaryImplAbi, ...operateImplAbi]
418+
: [
419+
...originalAbi,
420+
...adminImplAbi,
421+
...secondaryImplAbi,
422+
...operateImplAbi
423+
]
411424
}
412425
} catch (error) {}
413426
} else if (

0 commit comments

Comments
 (0)