Transaction Hash:
Block:
7572902 at Apr-15-2019 01:52:34 PM +UTC
Transaction Fee:
0.000353616 ETH
$1.34
Gas Used:
58,936 Gas / 6 Gwei
Emitted Events:
28 |
TokenStore.Cancel( tokenGet=0xA974c709...47acEAA33, amountGet=280000000000000000000, tokenGive=0x00000000...000000000, amountGive=280000000000000000, expires=8465179, nonce=3141227049, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, v=28, r=C2F8341BF34E9F4FD884F1E9109F6666C4A47C1D8D2CEE7820B2FE3576371D44, s=4198B813DEC520F4FC21F1184BB0E8C1E8E8DC8E5CCB8C89625955977F289664 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.007326294776752632 Eth
Nonce: 110
|
0.006972678776752632 Eth
Nonce: 111
| 0.000353616 | ||
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 5,269.872280875071254723 Eth | 5,269.872634491071254723 Eth | 0.000353616 |
Execution Trace
TokenStore.cancelOrder( _tokenGet=0xA974c709cFb4566686553a20790685A47acEAA33, _amountGet=280000000000000000000, _tokenGive=0x0000000000000000000000000000000000000000, _amountGive=280000000000000000, _expires=8465179, _nonce=3141227049, _v=28, _r=C2F8341BF34E9F4FD884F1E9109F6666C4A47C1D8D2CEE7820B2FE3576371D44, _s=4198B813DEC520F4FC21F1184BB0E8C1E8E8DC8E5CCB8C89625955977F289664 )
-
Null: 0x000...002.1ce7ae55( )
-
Null: 0x000...001.8deb44ec( )
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;}