// SPDX-License-Identifier: MIT pragma solidity ^0.8.23; // interfaces // libraries // contracts interface IProxy { error Proxy__ImplementationIsNotContract(); fallback() external payable; }