Transaction Hash:
Block:
4564263 at Nov-16-2017 03:42:44 PM +UTC
Transaction Fee:
0.000036925 ETH
$0.14
Gas Used:
36,925 Gas / 1 Gwei
Emitted Events:
32 |
VIUToken.Transfer( from=[Sender] 0xdbf81442ba5f2553f8b9b3b6dcba555a52646370, to=0xA6f772374D36F58b2F40dCF2Fb079ee7F5B39875, value=4548650100000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 1,018.687148113616980776 Eth | 1,018.687185038616980776 Eth | 0.000036925 | |
0xdBf81442...a52646370 |
0.2170740046 Eth
Nonce: 21
|
0.2170370796 Eth
Nonce: 22
| 0.000036925 |
Execution Trace
VIUToken.transfer( _to=0xA6f772374D36F58b2F40dCF2Fb079ee7F5B39875, _value=4548650100000000000 ) => ( 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);