ETH Price: $3,142.50 (+5.54%)

Transaction Decoder

Block:
4550460 at Nov-14-2017 10:03:47 AM +UTC
Transaction Fee:
0.000461769 ETH $1.45
Gas Used:
21,989 Gas / 21 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(DwarfPool)
12,290.224816933373761017 Eth12,290.225278702373761017 Eth0.000461769
0x519475b3...2BDAcB4f5
0x8b849B4F...d709314F8
0.505008174 Eth
Nonce: 5
0.504546405 Eth
Nonce: 6
0.000461769

Execution Trace

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