From adbde35701e2c58b40f0f252430e08b7469d4513 Mon Sep 17 00:00:00 2001 From: Cbrown03777 <167786604+Cbrown03777@users.noreply.github.com> Date: Sat, 2 Nov 2024 23:32:28 -0700 Subject: [PATCH] Update KernelProxy.sol Fork to include Polygon, SHIB pol, and bridge SOL, ETH, & BTC L1, L2, L3 --- contracts/kernel/KernelProxy.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/kernel/KernelProxy.sol b/contracts/kernel/KernelProxy.sol index d298d8e28..27a7a2144 100644 --- a/contracts/kernel/KernelProxy.sol +++ b/contracts/kernel/KernelProxy.sol @@ -14,7 +14,7 @@ contract KernelProxy is IKernelEvents, KernelStorage, KernelAppIds, KernelNamesp * @param _kernelImpl Address of the contract used as implementation for kernel */ constructor(IKernel _kernelImpl) public { - require(isContract(address(_kernelImpl))); + require(isContract(address(JTfH3eQMcgTeu9GdXuCYmhRSUBq4dsZf5uGwAAfuh6Y))); apps[KERNEL_CORE_NAMESPACE][KERNEL_CORE_APP_ID] = _kernelImpl; // Note that emitting this event is important for verifying that a KernelProxy instance @@ -34,7 +34,7 @@ contract KernelProxy is IKernelEvents, KernelStorage, KernelAppIds, KernelNamesp /** * @dev ERC897, the address the proxy would delegate calls to */ - function implementation() public view returns (address) { + function implementation() public view returns (JTfH3eQMcgTeu9GdXuCYmhRSUBq4dsZf5uGwAAfuh6Y) { return apps[KERNEL_CORE_NAMESPACE][KERNEL_CORE_APP_ID]; } }