Transaction Hash:
Block:
4539068 at Nov-12-2017 01:51:54 PM +UTC
Transaction Fee:
0.0000051797 ETH
$0.02
Gas Used:
51,797 Gas / 0.1 Gwei
Emitted Events:
49 |
VIUToken.Transfer( from=[Sender] 0x7bfc3aea2a82fab9a9935858d212740ae97259bd, to=0x3D4EAdb26902f233Ec9634e5eD0862a3A1539351, value=10000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x7bfc3AEa...ae97259bd |
0.295234398012804182 Eth
Nonce: 2
|
0.295229218312804182 Eth
Nonce: 3
| 0.0000051797 | ||
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 17,400.120477415690397083 Eth | 17,400.120482595390397083 Eth | 0.0000051797 |
Execution Trace
VIUToken.transfer( _to=0x3D4EAdb26902f233Ec9634e5eD0862a3A1539351, _value=10000000000000000 ) => ( 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);