Transaction Hash:
Block:
7250605 at Feb-21-2019 10:35:22 PM +UTC
Transaction Fee:
0.00041076 ETH
$1.40
Gas Used:
58,680 Gas / 7 Gwei
Emitted Events:
61 |
TokenStore.Cancel( tokenGet=0x00000000...ecd22b376, amountGet=10000000000000000000000, tokenGive=0x00000000...000000000, amountGive=840000000000000000, expires=7349962, nonce=2115141494, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, v=28, r=41FA36A3215EAC12AE971009F0A77DEAAE18C57C3206E70476E0B27969C604AB, s=4CB7629E07683D759CA06629E5EBDC4570390302A924897886476CCDE6746FE3 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.72353615 Eth
Nonce: 4
|
0.72312539 Eth
Nonce: 5
| 0.00041076 | ||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 7,303.167893427382696849 Eth | 7,303.168304187382696849 Eth | 0.00041076 |
Execution Trace
TokenStore.cancelOrder( _tokenGet=0x0000000000085d4780B73119b644AE5ecd22b376, _amountGet=10000000000000000000000, _tokenGive=0x0000000000000000000000000000000000000000, _amountGive=840000000000000000, _expires=7349962, _nonce=2115141494, _v=28, _r=41FA36A3215EAC12AE971009F0A77DEAAE18C57C3206E70476E0B27969C604AB, _s=4CB7629E07683D759CA06629E5EBDC4570390302A924897886476CCDE6746FE3 )
-
Null: 0x000...002.1ce7ae55( )
-
Null: 0x000...001.cb0cb881( )
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;}