ETH Price: $3,009.49 (+1.46%)

Transaction Decoder

Block:
4528190 at Nov-10-2017 08:34:19 PM +UTC
Transaction Fee:
0.000778113 ETH $2.34
Gas Used:
37,053 Gas / 21 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
(Bw.com: Old Address)
1,892.685582600449245974 Eth1,892.686360713449245974 Eth0.000778113
0xfa483386...6eCC4879c
78.723691048003696644 Eth
Nonce: 48
78.722912935003696644 Eth
Nonce: 49
0.000778113

Execution Trace

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