Transaction Hash:
Block:
21285106 at Nov-28-2024 08:48:47 AM +UTC
Transaction Fee:
0.000384208461125775 ETH
$1.43
Gas Used:
34,801 Gas / 11.040155775 Gwei
Emitted Events:
83 |
VIUToken.Transfer( from=[Sender] 0x10dce18d6b5c779bc8de620f8d0a561dfc3a51f0, to=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, value=3000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x10Dce18d...dfc3a51F0 |
15.474184929138751071 Eth
Nonce: 25954
|
15.473800720677625296 Eth
Nonce: 25955
| 0.000384208461125775 | ||
0x519475b3...2BDAcB4f5 | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 25.606718829022776141 Eth | 25.606788431022776141 Eth | 0.000069602 |
Execution Trace
VIUToken.transfer( _to=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, _value=3000000000000000000 ) => ( 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);