Skip to content

Instantly share code, notes, and snippets.

View umahatokula's full-sized avatar

Umaha umahatokula

View GitHub Profile
@umahatokula
umahatokula / simpletransfer.sol
Last active March 17, 2023 20:22
A collection of practice smart contract using the Solidity programming language
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract TranferTokens {
using SafeMath for uint;
address public owner;