Transaction Hash:
Block:
4528190 at Nov-10-2017 08:34:19 PM +UTC
Transaction Fee:
0.000778113 ETH
$2.34
Gas Used:
37,053 Gas / 21 Gwei
Emitted Events:
7 |
VIUToken.Transfer( from=[Sender] 0xfa4833863108b4395bb72bd8ec0ea476ecc4879c, to=0xAE2B80F7F4D285Caa658a285233550D19C8e7847, value=499000000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0xbCDFC35b...9A2Ef41d1
Miner
| (Bw.com: Old Address) | 1,892.685582600449245974 Eth | 1,892.686360713449245974 Eth | 0.000778113 | |
0xfa483386...6eCC4879c |
78.723691048003696644 Eth
Nonce: 48
|
78.722912935003696644 Eth
Nonce: 49
| 0.000778113 |
Execution Trace
VIUToken.transfer( _to=0xAE2B80F7F4D285Caa658a285233550D19C8e7847, _value=499000000000000000000000000 ) => ( 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);