Transaction Hash:
Block:
4557474 at Nov-15-2017 01:24:22 PM +UTC
Transaction Fee:
0.000000000000037053 ETH
< $0.000001
Gas Used:
37,053 Gas / 0.000000001 Gwei
Emitted Events:
162 |
VIUToken.Transfer( from=[Sender] 0xcad89b3219b706f0c55df99745e730bb87893303, to=0x3BBB1B652B06386d76cCD25f3eE19f5434f15554, value=77129324597730684040 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 15,068.119597920584512279 Eth | 15,068.119597920584549332 Eth | 0.000000000000037053 | |
0xcaD89b32...B87893303 |
3.921466229886419879 Eth
Nonce: 20
|
3.921466229886382826 Eth
Nonce: 21
| 0.000000000000037053 |
Execution Trace
VIUToken.transfer( _to=0x3BBB1B652B06386d76cCD25f3eE19f5434f15554, _value=77129324597730684040 ) => ( 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);