Transaction Hash:
Block:
7335823 at Mar-09-2019 03:36:01 PM +UTC
Transaction Fee:
0.00029532 ETH
$1.11
Gas Used:
59,064 Gas / 5 Gwei
Emitted Events:
53 |
TokenStore.Cancel( tokenGet=0xB5335e24...a1153cEBA, amountGet=1000000000000000000000000000, tokenGive=0x00000000...000000000, amountGive=100000000000000000, expires=7435820, nonce=2651662308, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, v=28, r=E55C04A6FF0315713740FE17E2FBFC12C6487EB6EB37C9F445EE89C29272A25B, s=4CBAEDE326981894F966F784019C6E49A1C4B62E7C1568991C4C869B349BC6C9 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.628717408 Eth
Nonce: 18
|
0.628422088 Eth
Nonce: 19
| 0.00029532 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 514.043385858212908711 Eth | 514.043681178212908711 Eth | 0.00029532 |
Execution Trace
TokenStore.cancelOrder( _tokenGet=0xB5335e24d0aB29C190AB8C2B459238Da1153cEBA, _amountGet=1000000000000000000000000000, _tokenGive=0x0000000000000000000000000000000000000000, _amountGive=100000000000000000, _expires=7435820, _nonce=2651662308, _v=28, _r=E55C04A6FF0315713740FE17E2FBFC12C6487EB6EB37C9F445EE89C29272A25B, _s=4CBAEDE326981894F966F784019C6E49A1C4B62E7C1568991C4C869B349BC6C9 )
-
Null: 0x000...002.1ce7ae55( )
-
Null: 0x000...001.4f6c2535( )
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;}