ETH Price: $3,711.23 (+0.07%)

Transaction Decoder

Block:
4543636 at Nov-13-2017 07:38:09 AM +UTC
Transaction Fee:
0.0000332901 ETH $0.12
Gas Used:
36,989 Gas / 0.9 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
0x66a676D3...8Cfe969FA
0.999025585 Eth
Nonce: 8
0.9989922949 Eth
Nonce: 9
0.0000332901
(F2Pool Old)
4,606.725349335712498261 Eth4,606.725382625812498261 Eth0.0000332901

Execution Trace

VIUToken.transfer( _to=0xDb9cea4049f3DAf5840B40af7f91F9dbfB2F794A, _value=20048742600000000000 ) => ( 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