mirror of
https://github.com/th30d4y/OpenLearnX.git
synced 2026-05-27 11:46:31 +00:00
12 lines
220 B
Solidity
12 lines
220 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract BadBeaconNoImpl {}
|
|
|
|
contract BadBeaconNotContract {
|
|
function implementation() external pure returns (address) {
|
|
return address(0x1);
|
|
}
|
|
}
|