Skip to content

Instantly share code, notes, and snippets.

View mauirayos's full-sized avatar
Working

Maui Rayos mauirayos

Working
  • Carisle Media
View GitHub Profile
@mauirayos
mauirayos / Thanksify.sol
Created July 12, 2025 03:38 — forked from KBPsystem777/Thanksify.sol
BitDev's Thanksify Smart Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
contract Thanksify {
address public owner;
struct Message {
string text;
address sender;
uint256 timestamp;