Transaction Hash:
Block:
4544610 at Nov-13-2017 11:29:43 AM +UTC
Transaction Fee:
0.000045576 ETH
$0.14
Gas Used:
45,576 Gas / 1 Gwei
Emitted Events:
43 |
VIUToken.Approval( owner=[Sender] 0x543a235a9515b2b10489bccd1a0287f34df5848c, spender=0x8d12A197...2A5CC6819, value=19863000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x543A235A...34DF5848c |
0.876305438203710125 Eth
Nonce: 1992
|
0.876259862203710125 Eth
Nonce: 1993
| 0.000045576 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 711.830910412798391048 Eth | 711.830955988798391048 Eth | 0.000045576 |
Execution Trace
VIUToken.approve( _spender=0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, _value=19863000000000000000 ) => ( 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);