ETH Price: $3,548.36 (+1.98%)

Transaction Decoder

Block:
4542929 at Nov-13-2017 04:56:46 AM +UTC
Transaction Fee:
0.00022155 ETH $0.79
Gas Used:
36,925 Gas / 6 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
(F2Pool Old)
4,068.216618708417525164 Eth4,068.216840258417525164 Eth0.00022155
0xe666e674...488567Efb
0.004137416 Eth
Nonce: 4
0.003915866 Eth
Nonce: 5
0.00022155

Execution Trace

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