ETH Price: $4,723.45 (+2.21%)

Transaction Decoder

Block:
4571013 at Nov-17-2017 05:45:32 PM +UTC
Transaction Fee:
0.000045512 ETH $0.21
Gas Used:
45,512 Gas / 1 Gwei

Emitted Events:

17 VIUToken.Approval( owner=[Sender] 0x56768c4d3862a6b0b90d6b5191795acce13f1d28, spender=0x8d12A197...2A5CC6819, value=153592000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
0x56768c4d...CE13f1d28
0.088707510021402631 Eth
Nonce: 246
0.088661998021402631 Eth
Nonce: 247
0.000045512
(MiningPoolHub: Old Address)
16,221.53664992871465146 Eth16,221.53669544071465146 Eth0.000045512

Execution Trace

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