Contract Source Code:
File 1 of 1 : DegenToken
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 minting and 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 DegenToken is DSMath {
uint256 public totalSupply;
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
bytes32 public symbol = "$DEGEN";
uint256 public decimals = 18;
bytes32 public name = "Degen Money";
address public reserve;
address public governance;
constructor(address _reserve) public {
governance = msg.sender;
reserve = _reserve;
}
modifier onlyGov() {
require(msg.sender == governance);
_;
}
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);
uint one = wad / 100;
uint half = one / 2;
uint ninetynine = sub(wad, one);
balanceOf[dst] = add(balanceOf[dst], ninetynine);
balanceOf[reserve] = add(balanceOf[reserve], half);
burn(half);
emit Transfer(src, dst, wad);
return true;
}
function burn(uint wad) internal {
totalSupply = sub(totalSupply, wad);
emit Burn(wad);
}
/*** GOV ***/
function mint(address _account, uint256 _wad)
public
onlyGov
{
require(_account != address(0), "ERC20: mint to the zero address");
totalSupply = add(totalSupply, _wad);
balanceOf[_account] = add(balanceOf[_account], _wad);
emit Transfer(address(0), _account, _wad);
}
function setReserve(address _reserve)
public
onlyGov
{
reserve = _reserve;
}
function setGovernance(address _governance)
public
onlyGov
{
governance = _governance;
}
}