Transaction Hash:
Block:
4538764 at Nov-12-2017 12:41:46 PM +UTC
Transaction Fee:
0.000729216 ETH
$2.59
Gas Used:
45,576 Gas / 16 Gwei
Emitted Events:
1 |
VIUToken.Approval( owner=[Sender] 0x2fe32117defcaa71906a8d0faa408993657075e9, spender=0x8d12A197...2A5CC6819, value=39813396000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2fE32117...3657075e9 |
1,992.829867082406684738 Eth
Nonce: 22
|
1,992.829137866406684738 Eth
Nonce: 23
| 0.000729216 | ||
0x519475b3...2BDAcB4f5 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 347.774210303618579627 Eth | 347.774939519618579627 Eth | 0.000729216 |
Execution Trace
VIUToken.approve( _spender=0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, _value=39813396000000000000000 ) => ( 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);