You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
390 B
16 lines
390 B
4 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
4 years ago
|
pragma solidity ^0.8.0;
|
||
4 years ago
|
|
||
|
/**
|
||
|
* @dev This is the interface that {BeaconProxy} expects of its beacon.
|
||
|
*/
|
||
|
interface IBeacon {
|
||
|
/**
|
||
|
* @dev Must return an address that can be used as a delegate call target.
|
||
|
*
|
||
|
* {BeaconProxy} will check that this address is a contract.
|
||
|
*/
|
||
|
function implementation() external view returns (address);
|
||
|
}
|