This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); | |