ETH Price: $2,952.18 (-2.83%)

Transaction Decoder

Block:
4541473 at Nov-12-2017 11:24:27 PM +UTC
Transaction Fee:
0.00018256 ETH $0.54
Gas Used:
45,640 Gas / 4 Gwei

Emitted Events:

22 VIUToken.Approval( owner=[Sender] 0x41b6bdb31d89bec7c747488dcf8ef85cf679d462, spender=0x8d12A197...2A5CC6819, value=3012941931220000000160 )

Account State Difference:

  Address   Before After State Difference Code
0x41b6BDb3...CF679d462
0.646680912000000008 Eth
Nonce: 29
0.646498352000000008 Eth
Nonce: 30
0.00018256
0x519475b3...2BDAcB4f5
(MiningPoolHub: Old Address)
17,130.816018391190232737 Eth17,130.816200951190232737 Eth0.00018256

Execution Trace

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