ETH Price: $3,698.71 (-1.57%)

Transaction Decoder

Block:
4564263 at Nov-16-2017 03:42:44 PM +UTC
Transaction Fee:
0.000036925 ETH $0.14
Gas Used:
36,925 Gas / 1 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
(Spark Pool)
1,018.687148113616980776 Eth1,018.687185038616980776 Eth0.000036925
0xdBf81442...a52646370
0.2170740046 Eth
Nonce: 21
0.2170370796 Eth
Nonce: 22
0.000036925

Execution Trace

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