Transaction Hash:
Block:
4579268 at Nov-19-2017 01:47:33 AM +UTC
Transaction Fee:
0.000460425 ETH
$1.60
Gas Used:
21,925 Gas / 21 Gwei
Emitted Events:
4 |
VIUToken.Transfer( from=[Sender] 0xbaec5d436a917f3b0ed28f78316272733a4a3c5e, to=0xFA410CBf8064C8343497883Ae3BCc86977307Bb3, value=2173913043478260000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 15,523.24665681960132352 Eth | 15,523.24711724460132352 Eth | 0.000460425 | |
0xBaeC5D43...33A4A3c5e |
0.001943065 Eth
Nonce: 31
|
0.00148264 Eth
Nonce: 32
| 0.000460425 |
Execution Trace
VIUToken.transfer( _to=0xFA410CBf8064C8343497883Ae3BCc86977307Bb3, _value=2173913043478260000000 ) => ( 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);