Transaction Hash:
Block:
4541084 at Nov-12-2017 09:50:52 PM +UTC
Transaction Fee:
0 ETH
$0.00
Gas Used:
21,925 Gas / 0 Gwei
Emitted Events:
2 |
VIUToken.Transfer( from=[Sender] 0x6b63d3eb1de74de9c04136a078586edaa8c00b94, to=0x957cD4Ff9b3894FC78b5134A8DC72b032fFbC464, value=20000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x519475b3...2BDAcB4f5 | |||||
0x6B63d3eb...AA8C00B94 |
Execution Trace
VIUToken.transfer( _to=0x957cD4Ff9b3894FC78b5134A8DC72b032fFbC464, _value=20000000000000000000 ) => ( 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);