Skip to content

Instantly share code, notes, and snippets.

@amarachiugwu
Last active August 6, 2022 15:47
Show Gist options
  • Select an option

  • Save amarachiugwu/36d47996b582cfb82b808b32d69f41c2 to your computer and use it in GitHub Desktop.

Select an option

Save amarachiugwu/36d47996b582cfb82b808b32d69f41c2 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.4;
contract Energy{
//have total supply
//transferrable
//name
//symbol
//decimal
//user balance
//burnable
///State Variables //////
uint constant totalSupply = 10000 ;
uint public circulatingSupply;
string constant name = "Energy";
string constant symbol = "ENG";
uint constant decimal = 1e18;
address owner;
mapping(address => uint) public _balance;
event tokenMint(address indexed _to, uint indexed _amount);
event _transfer(address from, address _to, uint amount);
modifier onlyOwner(){
require(owner == msg.sender, "Not owner");
_;
}
constructor( ){
owner = msg.sender;
}
function _name() public pure returns(string memory){
return name;
}
function _symbol() public pure returns(string memory){
return symbol;
}
function _decimal() public pure returns(uint){
return decimal;
}
function _totalSupply() public pure returns(uint){
return totalSupply;
}
function mint(uint amount, address _to) public onlyOwner returns(uint){
circulatingSupply += amount; // increase total circulating supply
require(circulatingSupply <= totalSupply, "totalSupply Exceeded");
require(_to != address(0), "mint to address zero ");
uint value = amount * decimal;
_balance[_to ] += value; //increase balance of to
emit tokenMint(_to, value);
return value;
}
function transfer(address _to, uint amount) external {
require(_to != address(0), "mint to address zero ");
uint userBalance = _balance[msg.sender];
require(userBalance >= amount, "insufficient funds");
uint burnableToken = _burn(amount);
uint transferrable = amount - burnableToken;
_balance[msg.sender] -= amount;
_balance[_to] += transferrable;
emit _transfer(msg.sender, _to, amount);
}
function _burn(uint amount) private returns(uint256 burnableToken){
burnableToken = calculateBurn(amount);
circulatingSupply -= burnableToken / decimal;
}
function calculateBurn (uint amount) public pure returns(uint burn){
burn = (amount * 10)/100;
}
function balanceOf(address who) public view returns (uint){
return _balance[who];
}
////////////////////////////////////////////////////////////////////////////
mapping(address => mapping( address => uint)) _allowance;
modifier checkBalance(address _owner, uint amount) {
uint balance = balanceOf(_owner);
require(balance >= amount, "insufficent funds");
_;
}
function Approve(address spender, uint amount) external checkBalance(msg.sender, amount) {
require(spender != address(0));
// uint allowed = _allowance[msg.sender][spender];
_allowance[msg.sender][spender] += amount;
}
function transferFrom(address from, address _to, uint amount) external checkBalance(from, amount){
require(_to == msg.sender, "not spender");
uint allowanceBalance = _allowance[from][_to];
require(allowanceBalance >= amount, "insufficient allowance for you");
// Get amount of token to burn
uint burnableToken = _burn(amount);
// Deduct burnable amount from amount
uint transferrable = amount - burnableToken;
_allowance[from][_to] -= amount;
_balance[from] -= amount;
_balance[_to] += transferrable;
emit _transfer(from, _to, amount);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment