Transaction Hash:
Block:
4539895 at Nov-12-2017 05:15:09 PM +UTC
Transaction Fee:
0.000182048 ETH
$0.54
Gas Used:
45,512 Gas / 4 Gwei
Emitted Events:
16 |
VIUToken.Approval( owner=[Sender] 0xb73d84d1f9a2396223627a25831ac9793801aede, spender=0x8d12A197...2A5CC6819, value=100000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 17,265.224409646395079195 Eth | 17,265.224591694395079195 Eth | 0.000182048 | |
0xb73D84D1...93801AedE |
0.006863264 Eth
Nonce: 37
|
0.006681216 Eth
Nonce: 38
| 0.000182048 |
Execution Trace
VIUToken.approve( _spender=0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, _value=100000000000000000000 ) => ( 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);