Transaction Hash:
Block:
4541561 at Nov-12-2017 11:40:18 PM +UTC
Transaction Fee:
0.0000036989 ETH
$0.01
Gas Used:
36,989 Gas / 0.1 Gwei
Emitted Events:
35 |
VIUToken.Transfer( from=[Sender] 0xb4d20e3e52c11ce987db6577ecba8e679a1b88d1, to=0x4629C54b122F3Ee60C1C67F397AEF749278E0934, value=219144065956000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 7,317.93112220595092216 Eth | 7,317.93112590485092216 Eth | 0.0000036989 | |
0xb4D20e3E...79a1b88d1 |
10.9572032978 Eth
Nonce: 14
|
10.9571995989 Eth
Nonce: 15
| 0.0000036989 |
Execution Trace
VIUToken.transfer( _to=0x4629C54b122F3Ee60C1C67F397AEF749278E0934, _value=219144065956000000000 ) => ( 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);