Skip to content

Instantly share code, notes, and snippets.

View simpl3r's full-sized avatar
🏠
Working from home

simpl3r simpl3r

🏠
Working from home
View GitHub Profile
@simpl3r
simpl3r / simple_sender.sol
Created September 20, 2025 12:18
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.30;
contract simple_sender {
address public owner;
uint256 public minTransferAmount = 0.001 * 1e18; // 0.001 CELO
event TransferEvent(address indexed from, address indexed to, uint256 amount);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);