Transaction Hash:
Block:
4562076 at Nov-16-2017 07:16:39 AM +UTC
Transaction Fee:
0.000025 ETH
$0.09
Gas Used:
25,000 Gas / 1 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x440A051D...8C26321cE |
0.012841489486471936 Eth
Nonce: 28
|
0.012816489486471936 Eth
Nonce: 29
| 0.000025 | ||
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 7,803.927571647096250308 Eth | 7,803.927596647096250308 Eth | 0.000025 |
Execution Trace
VIUToken.transfer( _to=0x8CF1285fF80c652F610C098Fe68B0082355F7b79, _value=5794978720000000000 )
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);