ETH Price: $2,991.09 (+0.54%)

Transaction Decoder

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:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
0x589f4EDF...D6c37a9C3
30.0000001 Eth
Nonce: 17
29.9999594121 Eth
Nonce: 18
0.0000406879
(F2Pool Old)
6,757.383234186573999432 Eth6,757.383274874473999432 Eth0.0000406879

Execution Trace

VIUToken.transfer( _to=0x713D577c1E2C9cD8181c6fE7d5C1c0C84Fbc68b4, _value=600000002000000000000 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma 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 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal constant returns (uint256) {
assert(b <= a);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX