ETH Price: $3,811.98 (+2.19%)
Gas: 0.3 Gwei

Transaction Decoder

Block:
4562795 at Nov-16-2017 10:07:35 AM +UTC
Transaction Fee:
0.000021989 ETH $0.08
Gas Used:
21,989 Gas / 1 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
(Nanopool)
7,788.814022973056754368 Eth7,788.814044962056754368 Eth0.000021989
0x9C5194e1...BBAbfCc5D
16.43089257992408 Eth
Nonce: 73
16.43087059092408 Eth
Nonce: 74
0.000021989

Execution Trace

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