Transaction Hash:
Block:
21397281 at Dec-14-2024 12:50:35 AM +UTC
Transaction Fee:
0.000428987773748975 ETH
$1.18
Gas Used:
34,825 Gas / 12.318385463 Gwei
Emitted Events:
94 |
VIUToken.Transfer( from=[Sender] 0x10dce18d6b5c779bc8de620f8d0a561dfc3a51f0, to=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, value=15253000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x10Dce18d...dfc3a51F0 |
11.936793954118206319 Eth
Nonce: 29534
|
11.936364966344457344 Eth
Nonce: 29535
| 0.000428987773748975 | ||
0x519475b3...2BDAcB4f5 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 5.707908849637396205 Eth | 5.707978499637396205 Eth | 0.00006965 |
Execution Trace
VIUToken.transfer( _to=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, _value=15253000000000000000000 ) => ( 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);