ETH Price: $3,577.86 (+4.54%)

Transaction Decoder

Block:
4543664 at Nov-13-2017 07:44:13 AM +UTC
Transaction Fee:
0.000182304 ETH $0.65
Gas Used:
45,576 Gas / 4 Gwei

Emitted Events:

8 VIUToken.Approval( owner=[Sender] 0xad5aa6c98aa9196a1f7ceba656c4c4f7d85c8254, spender=0x8d12A197...2A5CC6819, value=10000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x519475b3...2BDAcB4f5
(Nanopool)
7,845.905811622617643931 Eth7,845.905993926617643931 Eth0.000182304
0xAd5Aa6C9...7D85C8254
0.576515575 Eth
Nonce: 35
0.576333271 Eth
Nonce: 36
0.000182304

Execution Trace

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