Transaction Hash:
Block:
4558820 at Nov-15-2017 06:38:33 PM +UTC
Transaction Fee:
0.000463113 ETH
$1.69
Gas Used:
22,053 Gas / 21 Gwei
Emitted Events:
4 |
VIUToken.Transfer( from=[Sender] 0xf5e9763dbc8ec6221004bc7f720f2c761fdc24da, to=0x6D55F469ae86b86ed09D60c307c3a9b5FD8FEd05, value=25401949972712134080 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 395.721397947538629463 Eth | 395.721861060538629463 Eth | 0.000463113 | |
0xF5e9763d...61fDc24DA |
0.58422941182154168 Eth
Nonce: 13
|
0.58376629882154168 Eth
Nonce: 14
| 0.000463113 |
Execution Trace
VIUToken.transfer( _to=0x6D55F469ae86b86ed09D60c307c3a9b5FD8FEd05, _value=25401949972712134080 ) => ( 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);