ETH Price: $3,821.22 (+2.02%)

Transaction Decoder

Block:
4567834 at Nov-17-2017 05:26:19 AM +UTC
Transaction Fee:
0.0021930720375 ETH $8.38
Gas Used:
51,861 Gas / 42.2875 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x5160128b...99b1F4E1B
1.008981180375 Eth
Nonce: 120
1.0067881083375 Eth
Nonce: 121
0.0021930720375
0x519475b3...2BDAcB4f5
(WaterholePool)
771.39714024944413529 Eth771.39933332148163529 Eth0.0021930720375

Execution Trace

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