Transaction Hash:
Block:
4579582 at Nov-19-2017 02:59:44 AM +UTC
Transaction Fee:
0.000776769 ETH
$2.95
Gas Used:
36,989 Gas / 21 Gwei
Emitted Events:
12 |
VIUToken.Transfer( from=[Sender] 0x455796f1735780f331a1d7998fd0f4e5af7091b0, to=0x1fBB35Ce27938BEd4f74F3F74b5B4Cb77F0AAE2A, value=500000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x455796f1...5AF7091b0 |
0.00729142 Eth
Nonce: 3
|
0.006514651 Eth
Nonce: 4
| 0.000776769 | ||
0x519475b3...2BDAcB4f5 | |||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 5,553.999969750184435853 Eth | 5,554.000746519184435853 Eth | 0.000776769 |
Execution Trace
VIUToken.transfer( _to=0x1fBB35Ce27938BEd4f74F3F74b5B4Cb77F0AAE2A, _value=500000000000000000000000 ) => ( 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);