proposal-36/contracts/interfaces/RelayerRegistryProxy.sol

7 lines
154 B
Solidity
Raw Permalink Normal View History

2023-11-09 17:04:09 +03:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
interface IRelayerRegistryProxy {
function upgradeTo(address newImplementation) external;
}