Transaction Hash:
Block:
4540606 at Nov-12-2017 08:04:54 PM +UTC
Transaction Fee:
0.000363584 ETH
$1.37
Gas Used:
45,448 Gas / 8 Gwei
Emitted Events:
2 |
VIUToken.Approval( owner=[Sender] 0x32579cc122216e5bb56985f2289e55d47e82497b, spender=0x8d12A197...2A5CC6819, value=3764000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x32579cC1...47e82497b |
0.059353472000000016 Eth
Nonce: 45
|
0.058989888000000016 Eth
Nonce: 46
| 0.000363584 | ||
0x4Bb96091...F90f81B01
Miner
| (Ethpool 2) | 87.159306035846005709 Eth | 87.159669619846005709 Eth | 0.000363584 | |
0x519475b3...2BDAcB4f5 |
Execution Trace
VIUToken.approve( _spender=0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, _value=3764000000000000000 ) => ( True )
approve[ERC20 (ln:56)]
1234567891011121314151617181920212223242526pragma 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 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal constant returns (uint256) {assert(b <= a);