Created
November 26, 2020 17:38
-
-
Save lychees/997834a34059379de9292fa273b358ad to your computer and use it in GitHub Desktop.
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
pragma solidity ^0.5.0; | |
contract DSMath { | |
function add(uint x, uint y) internal pure returns (uint z) { | |
require((z = x + y) >= x, "ds-math-add-overflow"); | |
} | |
function sub(uint x, uint y) internal pure returns (uint z) { | |
require((z = x - y) <= x, "ds-math-sub-underflow"); | |
} | |
function mul(uint x, uint y) internal pure returns (uint z) { | |
require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow"); | |
} | |
} | |
// token.sol -- ERC20 implementation with burning | |
// Copyright (C) 2015, 2016, 2017 DappHub, LLC | |
// This program is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or | |
// (at your option) any later version. | |
// This program is distributed in the hope that it will be useful, | |
// but WITHOUT ANY WARRANTY; without even the implied warranty of | |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
// GNU General Public License for more details. | |
// You should have received a copy of the GNU General Public License | |
// along with this program. If not, see <http://www.gnu.org/licenses/>. | |
contract y3dToken is DSMath { | |
uint256 public totalSupply; | |
mapping (address => uint256) public balanceOf; | |
mapping (address => mapping (address => uint256)) public allowance; | |
bytes32 public symbol = "gain"; | |
uint256 public decimals = 18; | |
bytes32 public name = "gain"; | |
constructor(address chef) public { | |
// hard limit 30,000 gain | |
totalSupply = 30000000000000000000000; | |
balanceOf[chef] = 30000000000000000000000; | |
} | |
event Approval(address indexed src, address indexed guy, uint wad); | |
event Transfer(address indexed src, address indexed dst, uint wad); | |
event Burn(uint wad); | |
function approve(address guy) external returns (bool) { | |
return approve(guy, uint(-1)); | |
} | |
function approve(address guy, uint wad) public returns (bool) { | |
allowance[msg.sender][guy] = wad; | |
emit Approval(msg.sender, guy, wad); | |
return true; | |
} | |
function transfer(address dst, uint wad) external returns (bool) { | |
return transferFrom(msg.sender, dst, wad); | |
} | |
function transferFrom(address src, address dst, uint wad) public returns (bool) { | |
if (src != msg.sender && allowance[src][msg.sender] != uint(-1)) { | |
require(allowance[src][msg.sender] >= wad, "ds-token-insufficient-approval"); | |
allowance[src][msg.sender] = sub(allowance[src][msg.sender], wad); | |
} | |
require(balanceOf[src] >= wad, "ds-token-insufficient-balance"); | |
balanceOf[src] = sub(balanceOf[src], wad); | |
balanceOf[dst] = add(balanceOf[dst], wad); | |
emit Transfer(src, dst, wad); | |
return true; | |
} | |
function burn(uint wad) public { | |
require(balanceOf[msg.sender] >= wad, "ds-token-insufficient-balance"); | |
totalSupply = sub(totalSupply, wad); | |
balanceOf[msg.sender] = sub(balanceOf[msg.sender], wad); | |
emit Burn(wad); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment