Transaction Hash:
Block:
7604377 at Apr-20-2019 11:45:33 AM +UTC
Transaction Fee:
0.000176808 ETH
$0.64
Gas Used:
58,936 Gas / 3 Gwei
Emitted Events:
107 |
TokenStore.Cancel( tokenGet=0xB8c77482...C631bDD52, amountGet=1300000000000000000000, tokenGive=0x00000000...000000000, amountGive=260000000000000000, expires=8369528, nonce=3507154538, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, v=28, r=E7EA55FC720A201CE21F804D3DED1A4DC0898D4ECC294AB9B9688BD394AB4518, s=62720B2234F2DEE37FD87474DC408F036199BA86F5AC235F378ED459D6B52304 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.100159055776752632 Eth
Nonce: 137
|
0.099982247776752632 Eth
Nonce: 138
| 0.000176808 | ||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 4,912.790218119878552402 Eth | 4,912.790394927878552402 Eth | 0.000176808 |
Execution Trace
TokenStore.cancelOrder( _tokenGet=0xB8c77482e45F1F44dE1745F52C74426C631bDD52, _amountGet=1300000000000000000000, _tokenGive=0x0000000000000000000000000000000000000000, _amountGive=260000000000000000, _expires=8369528, _nonce=3507154538, _v=28, _r=E7EA55FC720A201CE21F804D3DED1A4DC0898D4ECC294AB9B9688BD394AB4518, _s=62720B2234F2DEE37FD87474DC408F036199BA86F5AC235F378ED459D6B52304 )
-
Null: 0x000...002.1ce7ae55( )
-
Null: 0x000...001.ac5c5e05( )
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;}