Transaction Hash:
Block:
4540062 at Nov-12-2017 05:54:43 PM +UTC
Transaction Fee:
0.000779457 ETH
$2.78
Gas Used:
37,117 Gas / 21 Gwei
Emitted Events:
10 |
VIUToken.Transfer( from=[Sender] 0xa015f61bc49d5429dbf3115166ffa568943e1527, to=0xF29cBc2377A42ffF1e1CaAB8a0b66a7A225A2941, value=17945954194288877923400 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2a65Aca4...135398226
Miner
| (DwarfPool) | 14,866.754722240963801519 Eth | 14,866.755501697963801519 Eth | 0.000779457 | |
0x519475b3...2BDAcB4f5 | |||||
0xA015f61b...8943E1527 |
800.99894357244389617 Eth
Nonce: 51
|
800.99816411544389617 Eth
Nonce: 52
| 0.000779457 |
Execution Trace
VIUToken.transfer( _to=0xF29cBc2377A42ffF1e1CaAB8a0b66a7A225A2941, _value=17945954194288877923400 ) => ( 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);