Transaction Hash:
Block:
7540798 at Apr-10-2019 02:06:12 PM +UTC
Transaction Fee:
0.000354 ETH
$1.32
Gas Used:
59,000 Gas / 6 Gwei
Emitted Events:
44 |
TokenStore.Cancel( tokenGet=0xF4FE9560...916e42C44, amountGet=100000000000000000000000, tokenGive=0x00000000...000000000, amountGive=27000000000000000, expires=7550797, nonce=121157714, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, v=27, r=4F3D6CF4063BDE7206F751C8BE263304B91AED6D934625D7690F89D9021D4C6C, s=56FB43E985B6D98E7777A8EDF8ED8A33BECE988403E82F4BB34D258E67C04D82 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.009304473776752632 Eth
Nonce: 103
|
0.008950473776752632 Eth
Nonce: 104
| 0.000354 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 484.788727196852212295 Eth | 484.789081196852212295 Eth | 0.000354 |
Execution Trace
TokenStore.cancelOrder( _tokenGet=0xF4FE95603881D0e07954fD7605E0e9a916e42C44, _amountGet=100000000000000000000000, _tokenGive=0x0000000000000000000000000000000000000000, _amountGive=27000000000000000, _expires=7550797, _nonce=121157714, _v=27, _r=4F3D6CF4063BDE7206F751C8BE263304B91AED6D934625D7690F89D9021D4C6C, _s=56FB43E985B6D98E7777A8EDF8ED8A33BECE988403E82F4BB34D258E67C04D82 )
-
Null: 0x000...002.1ce7ae55( )
-
Null: 0x000...001.14f251a5( )
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;}