ETH Price: $3,564.80 (+4.16%)

Transaction Decoder

Block:
4540062 at Nov-12-2017 05:54:43 PM +UTC
Transaction Fee:
0.000779457 ETH $2.78
Gas Used:
37,117 Gas / 21 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(DwarfPool)
14,866.754722240963801519 Eth14,866.755501697963801519 Eth0.000779457
0x519475b3...2BDAcB4f5
0xA015f61b...8943E1527
800.99894357244389617 Eth
Nonce: 51
800.99816411544389617 Eth
Nonce: 52
0.000779457

Execution Trace

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