Transaction Hash:
Block:
4570065 at Nov-17-2017 02:05:50 PM +UTC
Transaction Fee:
0.000463113 ETH
$1.46
Gas Used:
22,053 Gas / 21 Gwei
Emitted Events:
1 |
VIUToken.Transfer( from=[Sender] 0x3c762e3b21dd137875b3f81a5e0cbf9f0a921c2a, to=0x8362358abEA2b7E60f564B8A1B6fa452f33569d2, value=106644149208943702760 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3C762E3B...f0A921c2A |
41.774010622248993327 Eth
Nonce: 31
|
41.773547509248993327 Eth
Nonce: 32
| 0.000463113 | ||
0x519475b3...2BDAcB4f5 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 287.94612712325309195 Eth | 287.94659023625309195 Eth | 0.000463113 |
Execution Trace
VIUToken.transfer( _to=0x8362358abEA2b7E60f564B8A1B6fa452f33569d2, _value=106644149208943702760 ) => ( 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);