ETH Price: $3,658.79 (+1.85%)

Transaction Decoder

Block:
4558820 at Nov-15-2017 06:38:33 PM +UTC
Transaction Fee:
0.000463113 ETH $1.69
Gas Used:
22,053 Gas / 21 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
(Ethermine)
395.721397947538629463 Eth395.721861060538629463 Eth0.000463113
0xF5e9763d...61fDc24DA
0.58422941182154168 Eth
Nonce: 13
0.58376629882154168 Eth
Nonce: 14
0.000463113

Execution Trace

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