|
|
|
|
|
pragma solidity ^0.4.12;
|
|
|
|
|
|
contract IMigrationContract {
|
|
function migrate(address addr, uint256 nas) returns (bool success);
|
|
}
|
|
|
|
|
|
contract SafeMath {
|
|
function safeAdd(uint256 x, uint256 y) internal returns(uint256) {
|
|
uint256 z = x + y;
|
|
assert((z >= x) && (z >= y));
|
|
return z;
|
|
}
|
|
|
|
function safeSubtract(uint256 x, uint256 y) internal returns(uint256) {
|
|
assert(x >= y);
|
|
uint256 z = x - y;
|
|
return z;
|
|
}
|
|
|
|
function safeMult(uint256 x, uint256 y) internal returns(uint256) {
|
|
uint256 z = x * y;
|
|
assert((x == 0)||(z/x == y));
|
|
return z;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
contract Token {
|
|
uint256 public totalSupply;
|
|
function balanceOf(address _owner) constant returns (uint256 balance);
|
|
function transfer(address _to, uint256 _value) returns (bool success);
|
|
function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
|
|
function approve(address _spender, uint256 _value) returns (bool success);
|
|
function allowance(address _owner, address _spender) constant returns (uint256 remaining);
|
|
event Transfer(address indexed _from, address indexed _to, uint256 _value);
|
|
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
|
|
}
|
|
|
|
|
|
contract StandardToken is Token {
|
|
mapping (address => uint256) balances;
|
|
mapping (address => mapping (address => uint256)) allowed;
|
|
|
|
function transfer(address _to, uint256 _value) returns (bool success) {
|
|
if (balances[msg.sender] >= _value && _value > 0) {
|
|
balances[msg.sender] -= _value;
|
|
balances[_to] += _value;
|
|
Transfer(msg.sender, _to, _value);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
|
|
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
|
|
balances[_to] += _value;
|
|
balances[_from] -= _value;
|
|
allowed[_from][msg.sender] -= _value;
|
|
Transfer(_from, _to, _value);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function balanceOf(address _owner) constant returns (uint256 balance) {
|
|
return balances[_owner];
|
|
}
|
|
|
|
function approve(address _spender, uint256 _value) returns (bool success) {
|
|
allowed[msg.sender][_spender] = _value;
|
|
Approval(msg.sender, _spender, _value);
|
|
return true;
|
|
}
|
|
|
|
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
|
|
return allowed[_owner][_spender];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
contract JGOToken is StandardToken, SafeMath {
|
|
string public constant name = "laeerg";
|
|
string public constant symbol = "LAR";
|
|
uint256 public constant decimals = 9;
|
|
string public version = "1.0";
|
|
|
|
address public ethFundDeposit;
|
|
uint256 public currentSupply;
|
|
|
|
|
|
modifier isOwner() { require(msg.sender == ethFundDeposit); _; }
|
|
|
|
function formatDecimals(uint256 _value) internal returns (uint256 ) {
|
|
return _value * 10 ** decimals;
|
|
}
|
|
|
|
|
|
|
|
function JGOToken(address _ethFundDeposit, uint256 _totalSupply) {
|
|
ethFundDeposit = _ethFundDeposit;
|
|
|
|
currentSupply = formatDecimals(_totalSupply);
|
|
totalSupply = formatDecimals(_totalSupply);
|
|
balances[msg.sender] = totalSupply;
|
|
if(currentSupply > totalSupply) throw;
|
|
}
|
|
|
|
} |