Transaction Hash:
Block:
4543636 at Nov-13-2017 07:38:09 AM +UTC
Transaction Fee:
0.0000332901 ETH
$0.12
Gas Used:
36,989 Gas / 0.9 Gwei
Emitted Events:
68 |
VIUToken.Transfer( from=[Sender] 0x66a676d33550f48537f7c5e965f73728cfe969fa, to=0xDb9cea4049f3DAf5840B40af7f91F9dbfB2F794A, value=20048742600000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x66a676D3...8Cfe969FA |
0.999025585 Eth
Nonce: 8
|
0.9989922949 Eth
Nonce: 9
| 0.0000332901 | ||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 4,606.725349335712498261 Eth | 4,606.725382625812498261 Eth | 0.0000332901 |
Execution Trace
VIUToken.transfer( _to=0xDb9cea4049f3DAf5840B40af7f91F9dbfB2F794A, _value=20048742600000000000 ) => ( True )
transfer[ERC20Basic (ln:45)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.18;/*** Welcome to the Telegram chat http://www.devsolidity.io/*//*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal constant returns (uint256) {uint256 c = a * b;assert(a == 0 || c / a == b);return c;}function div(uint256 a, uint256 b) internal constant returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal constant returns (uint256) {assert(b <= a);