Transaction Hash:
Block:
4575589 at Nov-18-2017 11:30:20 AM +UTC
Transaction Fee:
0.0000036989 ETH
$0.01
Gas Used:
36,989 Gas / 0.1 Gwei
Emitted Events:
117 |
VIUToken.Transfer( from=[Sender] 0x41586d9d9c4b15689bbd12a1948597f272d605d7, to=0x0D4EA288d4949F7E629805e3598F9D801Eb9fEC6, value=597670700000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x41586d9D...272d605D7 |
20.000016918836579096 Eth
Nonce: 23
|
20.000013219936579096 Eth
Nonce: 24
| 0.0000036989 | ||
0x519475b3...2BDAcB4f5 | |||||
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 15,022.498468686512667992 Eth | 15,022.498472385412667992 Eth | 0.0000036989 |
Execution Trace
VIUToken.transfer( _to=0x0D4EA288d4949F7E629805e3598F9D801Eb9fEC6, _value=597670700000000000000 ) => ( 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);