ETH Price: $4,663.81 (+4.41%)

Transaction Decoder

Block:
4540499 at Nov-12-2017 07:40:45 PM +UTC
Transaction Fee:
0.00045576 ETH $2.13
Gas Used:
45,576 Gas / 10 Gwei

Emitted Events:

13 VIUToken.Approval( owner=[Sender] 0xc73604d0514ac01e63513d07601e7e98f2f117b4, spender=0x8d12A197...2A5CC6819, value=152885000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
(MiningPoolHub: Old Address)
17,177.479457470208545322 Eth17,177.479913230208545322 Eth0.00045576
0xC73604D0...8f2F117B4
5.093288622874851913 Eth
Nonce: 463
5.092832862874851913 Eth
Nonce: 464
0.00045576

Execution Trace

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