Transaction Hash:
Block:
4538878 at Nov-12-2017 01:04:48 PM +UTC
Transaction Fee:
0.001090425 ETH
$4.04
Gas Used:
51,925 Gas / 21 Gwei
Emitted Events:
10 |
VIUToken.Transfer( from=[Sender] 0x678a4e4257aa2a5b2698b2b1f3db5799311a8872, to=0xb9528Ccc36cD88ADB4329E43eE22594eBF9e674B, value=2000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x678a4E42...9311A8872 |
1.397837033461664142 Eth
Nonce: 189
|
1.396746608461664142 Eth
Nonce: 190
| 0.001090425 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 342.070751571587595386 Eth | 342.071841996587595386 Eth | 0.001090425 |
Execution Trace
VIUToken.transfer( _to=0xb9528Ccc36cD88ADB4329E43eE22594eBF9e674B, _value=2000000000000000000000 ) => ( 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);