Transaction Hash:
Block:
4540834 at Nov-12-2017 08:53:38 PM +UTC
Transaction Fee:
0.0000406879 ETH
$0.12
Gas Used:
36,989 Gas / 1.1 Gwei
Emitted Events:
91 |
VIUToken.Transfer( from=[Sender] 0x589f4edf1ae54290a9852669d93c10dd6c37a9c3, to=0x713D577c1E2C9cD8181c6fE7d5C1c0C84Fbc68b4, value=600000002000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x589f4EDF...D6c37a9C3 |
30.0000001 Eth
Nonce: 17
|
29.9999594121 Eth
Nonce: 18
| 0.0000406879 | ||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 6,757.383234186573999432 Eth | 6,757.383274874473999432 Eth | 0.0000406879 |
Execution Trace
VIUToken.transfer( _to=0x713D577c1E2C9cD8181c6fE7d5C1c0C84Fbc68b4, _value=600000002000000000000 ) => ( 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);