Transaction Hash:
Block:
7254465 at Feb-22-2019 08:33:41 PM +UTC
Transaction Fee:
0.000295 ETH
$1.09
Gas Used:
59,000 Gas / 5 Gwei
Emitted Events:
81 |
TokenStore.Cancel( tokenGet=0xFA1a856C...dF3EB21ab, amountGet=8000000000000000000000000, tokenGive=0x00000000...000000000, amountGive=4000000000000000000, expires=7350803, nonce=3232687819, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, v=28, r=7FE017FBB942A4F04B6D3FC142E555E031CF4C7C8A6C3E12FBF54E0CC879C179, s=4C2BBC2FE57B6E248A8C489E61FA08C61272E45CBD0707F29AE983FC695F23BF )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06B8C588...834c8706E
Miner
| (Mining Express) | 10.484969277996396896 Eth | 10.485264277996396896 Eth | 0.000295 | |
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.722711942 Eth
Nonce: 6
|
0.722416942 Eth
Nonce: 7
| 0.000295 |
Execution Trace
TokenStore.cancelOrder( _tokenGet=0xFA1a856Cfa3409CFa145Fa4e20Eb270dF3EB21ab, _amountGet=8000000000000000000000000, _tokenGive=0x0000000000000000000000000000000000000000, _amountGive=4000000000000000000, _expires=7350803, _nonce=3232687819, _v=28, _r=7FE017FBB942A4F04B6D3FC142E555E031CF4C7C8A6C3E12FBF54E0CC879C179, _s=4C2BBC2FE57B6E248A8C489E61FA08C61272E45CBD0707F29AE983FC695F23BF )
-
Null: 0x000...002.1ce7ae55( )
-
Null: 0x000...001.976e0184( )
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;}