ETH Price: $3,717.54 (+1.82%)

Transaction Decoder

Block:
4539068 at Nov-12-2017 01:51:54 PM +UTC
Transaction Fee:
0.0000051797 ETH $0.02
Gas Used:
51,797 Gas / 0.1 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
0x7bfc3AEa...ae97259bd
0.295234398012804182 Eth
Nonce: 2
0.295229218312804182 Eth
Nonce: 3
0.0000051797
(MiningPoolHub: Old Address)
17,400.120477415690397083 Eth17,400.120482595390397083 Eth0.0000051797

Execution Trace

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