Transaction Hash:
Block:
4567834 at Nov-17-2017 05:26:19 AM +UTC
Transaction Fee:
0.0021930720375 ETH
$8.38
Gas Used:
51,861 Gas / 42.2875 Gwei
Emitted Events:
0 |
VIUToken.Transfer( from=[Sender] 0x5160128b28719986764b555f22f02f199b1f4e1b, to=0x045C8FB694C0c319641e893bceCc05F218CFf748, value=2000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5160128b...99b1F4E1B |
1.008981180375 Eth
Nonce: 120
|
1.0067881083375 Eth
Nonce: 121
| 0.0021930720375 | ||
0x519475b3...2BDAcB4f5 | |||||
0x9435D505...B56597805
Miner
| (WaterholePool) | 771.39714024944413529 Eth | 771.39933332148163529 Eth | 0.0021930720375 |
Execution Trace
VIUToken.transfer( _to=0x045C8FB694C0c319641e893bceCc05F218CFf748, _value=2000000000000000000 ) => ( 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);