Transaction Hash:
Block:
4535726 at Nov-12-2017 01:12:30 AM +UTC
Transaction Fee:
0.0000045576 ETH
$0.01
Gas Used:
45,576 Gas / 0.1 Gwei
Emitted Events:
106 |
VIUToken.Approval( owner=[Sender] 0x7522b31cd0cba4e8f64dbebef846456f0aaff9f3, spender=0x8d12A197...2A5CC6819, value=3025659854355525920 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x7522B31C...F0aaff9F3 |
0.1023352624 Eth
Nonce: 442
|
0.1023307048 Eth
Nonce: 443
| 0.0000045576 | ||
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 17,321.480986461856977814 Eth | 17,321.480991019456977814 Eth | 0.0000045576 |
Execution Trace
VIUToken.approve( _spender=0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, _value=3025659854355525920 ) => ( 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);