Co-authored-by: Francisco Giordano <fg@frang.io> Co-authored-by: ernestognw <ernestognw@gmail.com>
12 lines
221 B
Solidity
12 lines
221 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
contract BadBeaconNoImpl {}
|
|
|
|
contract BadBeaconNotContract {
|
|
function implementation() external pure returns (address) {
|
|
return address(0x1);
|
|
}
|
|
}
|