Transaction Hash:
Block:
4575061 at Nov-18-2017 09:34:38 AM +UTC
Transaction Fee:
0.0000184945 ETH
$0.06
Gas Used:
36,989 Gas / 0.5 Gwei
Emitted Events:
3 |
VIUToken.Transfer( from=[Sender] 0x0461f0d28479d9a67edd01df0036ec262c27e8e6, to=0xC6757a2B8E1fCda85DBaF0Ed45133De95ab8A8c5, value=164305220430000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0461f0D2...62c27e8E6 |
8.1151481065 Eth
Nonce: 14
|
8.115129612 Eth
Nonce: 15
| 0.0000184945 | ||
0x519475b3...2BDAcB4f5 | |||||
0xE4BdCED6...5a2670649
Miner
| (xnpool.cn) | 80.999365524512120378 Eth | 80.999384019012120378 Eth | 0.0000184945 |
Execution Trace
VIUToken.transfer( _to=0xC6757a2B8E1fCda85DBaF0Ed45133De95ab8A8c5, _value=164305220430000000000 ) => ( 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);