proposal-34/contracts/interfaces/RelayerRegistryProxy.sol
2023-11-03 19:31:24 +00:00

7 lines
154 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
interface IRelayerRegistryProxy {
function upgradeTo(address newImplementation) external;
}