Transaction Hash:
Block:
4564246 at Nov-16-2017 03:39:23 PM +UTC
Transaction Fee:
0.000776769 ETH
$2.34
Gas Used:
36,989 Gas / 21 Gwei
Emitted Events:
9 |
VIUToken.Transfer( from=[Sender] 0x949ff303605d3404999997ee76a1ac8772bce2ad, to=0x2e42DFCA04405c3554a2AC81e944348379eBa489, value=4026748007579923360 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 1,015.639849477292512951 Eth | 1,015.640626246292512951 Eth | 0.000776769 | |
0x949Ff303...772bcE2Ad |
0.127700478991060678 Eth
Nonce: 531
|
0.126923709991060678 Eth
Nonce: 532
| 0.000776769 |
Execution Trace
VIUToken.transfer( _to=0x2e42DFCA04405c3554a2AC81e944348379eBa489, _value=4026748007579923360 ) => ( 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);