Skip to content

Instantly share code, notes, and snippets.

@tkowalczyk
tkowalczyk / gist:79ccacad128f6395b3828cac166f7cbd
Created November 12, 2021 14:00
STARTERRA_PLAY2EARN_ORION
https://finder.terra.money/columbus-5/tx/B1ADBD5B48012A6EB19DF6EC200CA450E10827301FB57CDC543E4F9E20410A7A
https://finder.terra.money/columbus-5/tx/8FCBD1973319609C47A6BC0E0493AEFCFD9B127F80A3E1E661173C1731B68710
https://finder.terra.money/columbus-5/tx/C6F639EDF1DC43F5B89E48084CA368366B08D573BA8A3C1C901EE0B0E3F74451
https://finder.terra.money/columbus-5/tx/2BCB9BEA8F74B0692196F5438E346D5B1C11D4A2EDB5A7CE0B3029E46455A691
https://finder.terra.money/columbus-5/tx/2FD6785FB3B7831BC1B7EA59656D1AFBA71DAFE5D4BEEB0529EF8EDAD5F1EA4D
import {
LCDClient,
MsgExecuteContract,
MnemonicKey,
isTxError
} from '@terra-money/terra.js';
import dotenv from 'dotenv';
dotenv.config();
@tkowalczyk
tkowalczyk / AirdropContract.sol
Created October 26, 2023 17:04
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';
}
}