Transaction Hash:
Block:
5767477 at Jun-11-2018 12:45:10 AM +UTC
Transaction Fee:
0.0013054259 ETH
$3.46
Gas Used:
52,009 Gas / 25.1 Gwei
Emitted Events:
57 |
StcToken.Transfer( _from=[Sender] 0x1a672f27e92c32ae368c3a9946a5556674404c82, _to=0xBE4d60C88459015b7C94b424B6Fe58B573Fc1aad, _value=30000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1A672f27...674404c82 |
0.164929278125 Eth
Nonce: 6
|
0.163623852225 Eth
Nonce: 7
| 0.0013054259 | ||
0x8f136Cc8...52F084384 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,770.297197543572469267 Eth | 1,770.298502969472469267 Eth | 0.0013054259 |
Execution Trace
StcToken.transfer( _to=0xBE4d60C88459015b7C94b424B6Fe58B573Fc1aad, _amount=30000000000000 ) => ( success=True )
transfer[StcToken (ln:41)]
Transfer[StcToken (ln:47)]
pragma solidity ^0.4.18; contract ERC20Interface { function totalSupply() constant returns (uint256 total); 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 StcToken is ERC20Interface { string public constant symbol = "STC"; string public constant name = "StarChainToken"; uint8 public constant decimals = 8; uint256 _totalSupply = 1000000000*100000000; mapping(address => uint256) balances; mapping(address => mapping (address => uint256)) allowed; function StcToken(){ balances[msg.sender] = _totalSupply; } function totalSupply() public constant returns (uint256 total){ total = _totalSupply; } function balanceOf(address _owner) public constant returns(uint256 balance){ return balances[_owner]; } function transfer(address _to,uint256 _amount) public returns (bool success){ if(balances[msg.sender] >= _amount && _amount >0 && (balances[_to]+_amount) > balances[_to]){ balances[msg.sender] -= _amount; balances[_to] += _amount; Transfer(msg.sender,_to,_amount); return true; }else{ return false; } } function transferFrom(address _from,address _to,uint256 _amount) public returns(bool success){ if(balances[_from] >= _amount && _amount > 0 && (balances[_to]+_amount) > balances[_to] && allowed[_from][msg.sender] >= _amount){ balances[_from] -= _amount; balances[_to] += _amount; allowed[_from][msg.sender] -= _amount; Transfer(_from,_to,_amount); return true; }else{ return false; } } function approve(address _spender,uint256 _amount) public returns(bool success){ allowed[msg.sender][_spender] = _amount; Approval(msg.sender,_spender,_amount); return true; } function allowance(address _owner,address _spender) public constant returns(uint256 remaining){ return allowed[_owner][_spender]; } }