Skip to content

Instantly share code, notes, and snippets.

@tkowalczyk
Created October 26, 2023 17:04
Show Gist options
  • Save tkowalczyk/fe79529bfc8196e0ba6febc0087124a7 to your computer and use it in GitHub Desktop.
Save tkowalczyk/fe79529bfc8196e0ba6febc0087124a7 to your computer and use it in GitHub Desktop.
Simple smart contract for Airdrop Hunters by @TomKowalczyk
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.9;
contract AirdropContract {
function whatPurpose() public pure returns (string memory) {
return 'Simple smart contract for Airdrop Hunters by @tomkowalczyk';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment