Transaction Hash:
Block:
7573648 at Apr-15-2019 04:42:02 PM +UTC
Transaction Fee:
0.000190295 ETH
$0.57
Gas Used:
38,059 Gas / 5 Gwei
Emitted Events:
25 |
TokenStore.Withdraw( token=0x00000000...000000000, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, amount=88300000000000000, balance=600166465701443583 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | 1,231.590062579902278881 Eth | 1,231.501762579902278881 Eth | 0.0883 | |
0x343a3C7F...F643678d9 |
0.005730044776752632 Eth
Nonce: 115
|
0.093839749776752632 Eth
Nonce: 116
| 0.088109705 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 3,253.30148204417887 Eth | 3,253.30167233917887 Eth | 0.000190295 |
Execution Trace
TokenStore.withdraw( _amount=88300000000000000 )
- ETH 0.0883
0x343a3c7f789335c9ea60932d34be258f643678d9.CALL( )
withdraw[TokenStore (ln:174)]
safeSub[TokenStore (ln:176)]
value[TokenStore (ln:177)]
revert[TokenStore (ln:178)]
Withdraw[TokenStore (ln:180)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.11;// ERC20 token protocol, see more details at// https://theethereum.wiki/w/index.php/ERC20_Token_Standard// And also https://github.com/ethereum/eips/issues/20contract Token {function totalSupply() constant returns (uint256 supply);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);}// Safe mathematics to make the code more readablecontract SafeMath {function safeMul(uint a, uint b) internal returns (uint) {uint c = a * b;assert(a == 0 || c / a == b);return c;}