Transaction Hash:
Block:
4572139 at Nov-17-2017 10:02:28 PM +UTC
Transaction Fee:
0.000776769 ETH
$2.33
Gas Used:
36,989 Gas / 21 Gwei
Emitted Events:
21 |
VIUToken.Transfer( from=[Sender] 0x057cca21292bd89c6bda99c8522077813f5e8499, to=0x70c980C94Db033fe4695dF4dE2022fa40af966D2, value=1502502012000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x057cCA21...13f5E8499 |
1.998429683 Eth
Nonce: 15
|
1.997652914 Eth
Nonce: 16
| 0.000776769 | ||
0x519475b3...2BDAcB4f5 | |||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 8,550.666397716764762171 Eth | 8,550.667174485764762171 Eth | 0.000776769 |
Execution Trace
VIUToken.transfer( _to=0x70c980C94Db033fe4695dF4dE2022fa40af966D2, _value=1502502012000000000000 ) => ( 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);