Transaction Hash:
Block:
4579941 at Nov-19-2017 04:21:14 AM +UTC
Transaction Fee:
0.00051925 ETH
$1.57
Gas Used:
51,925 Gas / 10 Gwei
Emitted Events:
9 |
VIUToken.Transfer( from=[Sender] 0x7c1459fc0ce40d56ab97a72f4dc29ec07eb87765, to=0x94F26D8e1817b196481418C14A552B6B3b713f88, value=20000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 2,093.267730988345344986 Eth | 2,093.268250238345344986 Eth | 0.00051925 | |
0x7C1459FC...07eB87765 |
19.962394 Eth
Nonce: 6
|
19.96187475 Eth
Nonce: 7
| 0.00051925 |
Execution Trace
VIUToken.transfer( _to=0x94F26D8e1817b196481418C14A552B6B3b713f88, _value=20000000000000000000 ) => ( 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);