Transaction Hash:
Block:
4559170 at Nov-15-2017 08:04:18 PM +UTC
Transaction Fee:
0.000096005 ETH
$0.36
Gas Used:
36,925 Gas / 2.6 Gwei
Emitted Events:
70 |
VIUToken.Transfer( from=[Sender] 0xb284217e9fcd31b3362cabe008c34f22ae93b869, to=0xAa59a457bCb4DB0eC2Bc48C620503534C07b7D69, value=9999160000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 7,776.396981837486178316 Eth | 7,776.397077842486178316 Eth | 0.000096005 | |
0xb284217e...2ae93B869 |
0.0877491679 Eth
Nonce: 150
|
0.0876531629 Eth
Nonce: 151
| 0.000096005 |
Execution Trace
VIUToken.transfer( _to=0xAa59a457bCb4DB0eC2Bc48C620503534C07b7D69, _value=9999160000000000000 ) => ( 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);