Transaction Hash:
Block:
4576577 at Nov-18-2017 03:18:30 PM +UTC
Transaction Fee:
0.000461769 ETH
$1.76
Gas Used:
21,989 Gas / 21 Gwei
Emitted Events:
14 |
VIUToken.Transfer( from=[Sender] 0xb479d38eebbd362f8f7a116ba2603679678e9d70, to=0x8a253666078EE48426c7cCB4cC7aDf3F50D4eb4F, value=238477874280000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 15,112.874165142293763161 Eth | 15,112.874626911293763161 Eth | 0.000461769 | |
0xb479D38e...9678e9d70 |
0.918177367 Eth
Nonce: 22
|
0.917715598 Eth
Nonce: 23
| 0.000461769 |
Execution Trace
VIUToken.transfer( _to=0x8a253666078EE48426c7cCB4cC7aDf3F50D4eb4F, _value=238477874280000000000 ) => ( 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);