Co-authored-by: Francisco <fg@frang.io> Co-authored-by: Eric Lau <ericglau@outlook.com> Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
13 lines
263 B
Solidity
13 lines
263 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.19;
|
|
|
|
import {IBeacon} from "../proxy/beacon/IBeacon.sol";
|
|
|
|
contract UpgradeableBeaconMock is IBeacon {
|
|
address public implementation;
|
|
|
|
constructor(address impl) {
|
|
implementation = impl;
|
|
}
|
|
}
|