From f90af29acf5aa5e902ea94ff7f0b6d9b0681bf5e Mon Sep 17 00:00:00 2001 From: Yash Date: Mon, 24 Feb 2025 21:53:26 +0530 Subject: [PATCH] Interop module - supported interface ERC7802 --- src/module/token/crosschain/SuperChainInterop.sol | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/module/token/crosschain/SuperChainInterop.sol b/src/module/token/crosschain/SuperChainInterop.sol index 3e817996..69a27fa1 100644 --- a/src/module/token/crosschain/SuperChainInterop.sol +++ b/src/module/token/crosschain/SuperChainInterop.sol @@ -68,6 +68,9 @@ contract SuperChainInterop is ERC20, Module, IInstallationCallback, ICrossChainE config.requiredInterfaces = new bytes4[](1); config.requiredInterfaces[0] = 0x36372b07; // ERC20 + config.supportedInterfaces = new bytes4[](1); + config.supportedInterfaces[0] = 0x33331994; // ERC7802. + config.registerInstallationCallback = true; }