Transaction Hash:
Block:
4539912 at Nov-12-2017 05:18:27 PM +UTC
Transaction Fee:
0.000463113 ETH
$1.69
Gas Used:
22,053 Gas / 21 Gwei
Emitted Events:
4 |
VIUToken.Transfer( from=[Sender] 0x1fafd83032ea5b8a6b8bb4a857e5d0d89692b799, to=0x7C3B89F932962d0De94D60729EF882bF2Dc0DE4d, value=91318454810878879520 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1FAFD830...89692b799 |
3.063052145543943976 Eth
Nonce: 16
|
3.062589032543943976 Eth
Nonce: 17
| 0.000463113 | ||
0x519475b3...2BDAcB4f5 | |||||
0xF3b9D2c8...CED5FC2fb
Miner
| (BitClubPool) | 53,704.582602739281616604 Eth | 53,704.583065852281616604 Eth | 0.000463113 |
Execution Trace
VIUToken.transfer( _to=0x7C3B89F932962d0De94D60729EF882bF2Dc0DE4d, _value=91318454810878879520 ) => ( 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);