Transaction Hash:
Block:
7324989 at Mar-07-2019 10:54:52 PM +UTC
Transaction Fee:
0.00029532 ETH
$1.08
Gas Used:
59,064 Gas / 5 Gwei
Emitted Events:
55 |
TokenStore.Cancel( tokenGet=0x8290333c...268f3EDD4, amountGet=43000000000000000000000000, tokenGive=0x00000000...000000000, amountGive=4085000000000000000, expires=7424987, nonce=2769603289, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, v=28, r=5306AF77485756EED0537F88D3F14FA6204413BFF0B4BEE3BF9D69C4E6BB4F08, s=3BBD6F3DC847EB2D7FCEAE04D612647CDE01984A7FD276A6110B6EA4C81FAA0D )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.629012728 Eth
Nonce: 17
|
0.628717408 Eth
Nonce: 18
| 0.00029532 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 276.408465502366417792 Eth | 276.408760822366417792 Eth | 0.00029532 |
Execution Trace
TokenStore.cancelOrder( _tokenGet=0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4, _amountGet=43000000000000000000000000, _tokenGive=0x0000000000000000000000000000000000000000, _amountGive=4085000000000000000, _expires=7424987, _nonce=2769603289, _v=28, _r=5306AF77485756EED0537F88D3F14FA6204413BFF0B4BEE3BF9D69C4E6BB4F08, _s=3BBD6F3DC847EB2D7FCEAE04D612647CDE01984A7FD276A6110B6EA4C81FAA0D )
-
Null: 0x000...002.1ce7ae55( )
-
Null: 0x000...001.f8c429c1( )
cancelOrder[TokenStore (ln:289)]
sha256[TokenStore (ln:291)]
ecrecover[TokenStore (ln:292)]
sha3[TokenStore (ln:292)]
revert[TokenStore (ln:293)]
Cancel[TokenStore (ln:296)]
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;}