Transaction Hash:
Block:
4536856 at Nov-12-2017 05:35:12 AM +UTC
Transaction Fee:
0.00036512 ETH
$1.31
Gas Used:
45,640 Gas / 8 Gwei
Emitted Events:
17 |
VIUToken.Approval( owner=[Sender] 0x91b98a71e5d00b00b6d833cd587bd54d11fed214, spender=0x8d12A197...2A5CC6819, value=22579549609174251480 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4Bb96091...F90f81B01
Miner
| (Ethpool 2) | 87.516910197854898506 Eth | 87.517275317854898506 Eth | 0.00036512 | |
0x519475b3...2BDAcB4f5 | |||||
0x91B98a71...D11fed214 |
0.191302642458712574 Eth
Nonce: 120
|
0.190937522458712574 Eth
Nonce: 121
| 0.00036512 |
Execution Trace
VIUToken.approve( _spender=0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, _value=22579549609174251480 ) => ( 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);