Transaction Hash:
Block:
4573318 at Nov-18-2017 02:41:58 AM +UTC
Transaction Fee:
0.000775425 ETH
$2.76
Gas Used:
36,925 Gas / 21 Gwei
Emitted Events:
4 |
VIUToken.Transfer( from=[Sender] 0x561110c354fe974bd368ccbc8d49c76650aed50c, to=0x51A26D37c58f59530a65e4Cfd71d0f1822034c32, value=2106693169265901660 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 7,826.001545925589302371 Eth | 7,826.002321350589302371 Eth | 0.000775425 | |
0x561110C3...650AeD50C |
0.0154881689 Eth
Nonce: 81
|
0.0147127439 Eth
Nonce: 82
| 0.000775425 |
Execution Trace
VIUToken.transfer( _to=0x51A26D37c58f59530a65e4Cfd71d0f1822034c32, _value=2106693169265901660 ) => ( 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);