ETH Price: $3,751.67 (+2.81%)

Transaction Decoder

Block:
4544381 at Nov-13-2017 10:32:11 AM +UTC
Transaction Fee:
0.000776769 ETH $2.91
Gas Used:
36,989 Gas / 21 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
0x8C354110...12d9B05C6
0.022481391 Eth
Nonce: 12
0.021704622 Eth
Nonce: 13
0.000776769
(Bw.com: Old Address)
2,234.991216160949621694 Eth2,234.991992929949621694 Eth0.000776769

Execution Trace

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