Last active
July 8, 2018 09:37
-
-
Save dome/c8fc09298a9c2a1049fffa139ba0f304 to your computer and use it in GitHub Desktop.
This file contains 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.4.16; | |
// sol ควรจะสั้นๆ ตรงไปตรงมา อย่าเยอะ | |
// Dome C. <[email protected]> | |
contract SbuyToken { | |
string public name = "SbuyMining"; // token name | |
string public symbol = "SBUY"; // token symbol | |
uint256 public decimals = 0; // token digit | |
mapping (address => uint256) public balanceOf; | |
mapping (address => mapping (address => uint256)) public allowance; | |
uint256 public totalSupply = 0; | |
bool public stopped = false; | |
uint256 constant valueFounder = 2000000000; | |
address owner = 0x0; | |
modifier isOwner { | |
assert(owner == msg.sender); | |
_; | |
} | |
modifier isRunning { | |
assert (!stopped); | |
_; | |
} | |
modifier validAddress { | |
assert(0x0 != msg.sender); | |
_; | |
} | |
function SbuyToken() public { | |
owner = msg.sender; | |
totalSupply = valueFounder; | |
balanceOf[owner] = valueFounder; | |
Transfer(0x0, owner, valueFounder); | |
} | |
function transfer (address _to, uint256 _value) public isRunning validAddress returns (bool success) { | |
require(balanceOf[msg.sender] >= _value); | |
require(balanceOf[_to] + _value >= balanceOf[_to]); | |
balanceOf[msg.sender] -= _value; | |
balanceOf[_to] += _value; | |
Transfer(msg.sender, _to, _value); | |
return true; | |
} | |
function transferFrom (address _from, address _to, uint256 _value) public isRunning validAddress returns (bool success) { | |
require(balanceOf[_from] >= _value); | |
require(balanceOf[_to] + _value >= balanceOf[_to]); | |
require(allowance[_from][msg.sender] >= _value); | |
balanceOf[_to] += _value; | |
balanceOf[_from] -= _value; | |
allowance[_from][msg.sender] -= _value; | |
Transfer(_from, _to, _value); | |
return true; | |
} | |
function approve(address _spender, uint256 _value) public isRunning validAddress returns (bool success) { | |
require(_value == 0 || allowance[msg.sender][_spender] == 0); | |
allowance[msg.sender][_spender] = _value; | |
Approval(msg.sender, _spender, _value); | |
return true; | |
} | |
function stop() isOwner public { | |
stopped = true; | |
} | |
function start() isOwner public { | |
stopped = false; | |
} | |
function setName(string _name) isOwner public { | |
name = _name; | |
} | |
function burn(uint256 _value) public { | |
require(balanceOf[msg.sender] >= _value); | |
balanceOf[msg.sender] -= _value; | |
balanceOf[0x0] += _value; | |
Transfer(msg.sender, 0x0, _value); | |
} | |
event Transfer(address indexed _from, address indexed _to, uint256 _value); | |
event Approval(address indexed _owner, address indexed _spender, uint256 _value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment