Transaction Hash:
Block:
4542929 at Nov-13-2017 04:56:46 AM +UTC
Transaction Fee:
0.00022155 ETH
$0.79
Gas Used:
36,925 Gas / 6 Gwei
Emitted Events:
25 |
VIUToken.Transfer( from=[Sender] 0xe666e67403a257532567c6f78be3e0c488567efb, to=0x0E0E0609301934D5Caf28F9A11ddDF95FF25962F, value=7631791041998606080 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 4,068.216618708417525164 Eth | 4,068.216840258417525164 Eth | 0.00022155 | |
0xe666e674...488567Efb |
0.004137416 Eth
Nonce: 4
|
0.003915866 Eth
Nonce: 5
| 0.00022155 |
Execution Trace
VIUToken.transfer( _to=0x0E0E0609301934D5Caf28F9A11ddDF95FF25962F, _value=7631791041998606080 ) => ( True )
transfer[ERC20Basic (ln:45)]
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);