ETH Price: $2,976.49 (-2.45%)

Transaction Decoder

Block:
4575061 at Nov-18-2017 09:34:38 AM +UTC
Transaction Fee:
0.0000184945 ETH $0.06
Gas Used:
36,989 Gas / 0.5 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0461f0D2...62c27e8E6
8.1151481065 Eth
Nonce: 14
8.115129612 Eth
Nonce: 15
0.0000184945
0x519475b3...2BDAcB4f5
(xnpool.cn)
80.999365524512120378 Eth80.999384019012120378 Eth0.0000184945

Execution Trace

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