BadBeacon.sol 281 B

1234567891011121314
  1. // SPDX-License-Identifier: MIT
  2. pragma solidity >=0.6.0 <0.8.0;
  3. import "../proxy/IBeacon.sol";
  4. contract BadBeaconNoImpl {
  5. }
  6. contract BadBeaconNotContract is IBeacon {
  7. function implementation() external view override returns (address) {
  8. return address(0x1);
  9. }
  10. }