ETH Price: $3,479.74 (+3.16%)

Transaction Decoder

Block:
4541355 at Nov-12-2017 10:58:59 PM +UTC
Transaction Fee:
0.000004564 ETH $0.02
Gas Used:
45,640 Gas / 0.1 Gwei

Emitted Events:

123 VIUToken.Approval( owner=[Sender] 0x8a9bcdc68d19e111663d6c986caf1da1eda1c304, spender=0x8d12A197...2A5CC6819, value=1287875192528479636820 )

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
0x8a9BcDc6...1edA1c304
60.490859975392323 Eth
Nonce: 118
60.490855411392323 Eth
Nonce: 119
0.000004564
(MiningPoolHub: Old Address)
17,150.732219437437038758 Eth17,150.732224001437038758 Eth0.000004564

Execution Trace

VIUToken.approve( _spender=0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, _value=1287875192528479636820 ) => ( 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