Transaction Hash:
Block:
4576601 at Nov-18-2017 03:24:45 PM +UTC
Transaction Fee:
0.00036797 ETH
$1.41
Gas Used:
36,797 Gas / 10 Gwei
Emitted Events:
18 |
VIUToken.Transfer( from=[Sender] 0x9b0ff06266ca107cc45fb9e4f9bdb90bcafb0b2b, to=0xf2ac05F50e2c0542Bc61464A32472DBF00226Cd2, value=10000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4Bb96091...F90f81B01
Miner
| (Ethpool 2) | 107.300048788844565951 Eth | 107.300416758844565951 Eth | 0.00036797 | |
0x519475b3...2BDAcB4f5 | |||||
0x9b0fF062...bCafB0B2B |
0.116647753907273 Eth
Nonce: 19
|
0.116279783907273 Eth
Nonce: 20
| 0.00036797 |
Execution Trace
VIUToken.transfer( _to=0xf2ac05F50e2c0542Bc61464A32472DBF00226Cd2, _value=10000000000000000000 ) => ( 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);