ETH Price: $3,612.73 (+5.41%)

Transaction Decoder

Block:
4562076 at Nov-16-2017 07:16:39 AM +UTC
Transaction Fee:
0.000025 ETH $0.09
Gas Used:
25,000 Gas / 1 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x440A051D...8C26321cE
0.012841489486471936 Eth
Nonce: 28
0.012816489486471936 Eth
Nonce: 29
0.000025
(Nanopool)
7,803.927571647096250308 Eth7,803.927596647096250308 Eth0.000025

Execution Trace

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