Transaction Hash:
Block:
4545253 at Nov-13-2017 01:57:06 PM +UTC
Transaction Fee:
0.000776769 ETH
$2.86
Gas Used:
36,989 Gas / 21 Gwei
Emitted Events:
9 |
VIUToken.Transfer( from=[Sender] 0xede8dbc373b9d554ccf2c15dfb61bae805fd55b2, to=0xc5688e3ac8d9626Da52B97b4152237fC2Ef4D35f, value=26000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 390.455036041446594968 Eth | 390.455812810446594968 Eth | 0.000776769 | |
0xedE8DBC3...805fd55b2 |
0.005733145000003614 Eth
Nonce: 196
|
0.004956376000003614 Eth
Nonce: 197
| 0.000776769 |
Execution Trace
VIUToken.transfer( _to=0xc5688e3ac8d9626Da52B97b4152237fC2Ef4D35f, _value=26000000000000000000000 ) => ( 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);