Transaction Hash:
Block:
7367721 at Mar-14-2019 02:43:15 PM +UTC
Transaction Fee:
0.000176616 ETH
$0.75
Gas Used:
58,872 Gas / 3 Gwei
Emitted Events:
1 |
TokenStore.Cancel( tokenGet=0x446C9033...8b579406F, amountGet=1000000000000000, tokenGive=0x00000000...000000000, amountGive=4000000000000000000, expires=7369815, nonce=677767777, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, v=27, r=D64A4B2212DA4A7E78201E775C0DC71E8560DF09F0462B26152C5D29788A8E15, s=1D4C98A63FEE7EA45CCE567D54D4AD0D20D1EFF2186E5D3D0A8A0D8480031057 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.299809296 Eth
Nonce: 30
|
0.29963268 Eth
Nonce: 31
| 0.000176616 | ||
0xEEa5B82B...2d0D25Bfb
Miner
| (BTC.com Pool) | 270.750094930257522822 Eth | 270.750271546257522822 Eth | 0.000176616 |
Execution Trace
TokenStore.cancelOrder( _tokenGet=0x446C9033E7516D820cc9a2ce2d0B7328b579406F, _amountGet=1000000000000000, _tokenGive=0x0000000000000000000000000000000000000000, _amountGive=4000000000000000000, _expires=7369815, _nonce=677767777, _v=27, _r=D64A4B2212DA4A7E78201E775C0DC71E8560DF09F0462B26152C5D29788A8E15, _s=1D4C98A63FEE7EA45CCE567D54D4AD0D20D1EFF2186E5D3D0A8A0D8480031057 )
-
Null: 0x000...002.1ce7ae55( )
-
Null: 0x000...001.69506f08( )
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;}