Transaction Hash:
Block:
4538486 at Nov-12-2017 11:38:11 AM +UTC
Transaction Fee:
0.000181792 ETH
$0.54
Gas Used:
45,448 Gas / 4 Gwei
Emitted Events:
50 |
VIUToken.Approval( owner=[Sender] 0x46fcb1753cfa7f54b1f1a934f35e46f9ee36d322, spender=0x8d12A197...2A5CC6819, value=7564000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x46fcB175...9Ee36D322 |
0.048025138548802856 Eth
Nonce: 34
|
0.047843346548802856 Eth
Nonce: 35
| 0.000181792 | ||
0x519475b3...2BDAcB4f5 | |||||
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 7,778.2977237426973612 Eth | 7,778.2979055346973612 Eth | 0.000181792 |
Execution Trace
VIUToken.approve( _spender=0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, _value=7564000000000000000 ) => ( 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);