Transaction Hash:
Block:
21195578 at Nov-15-2024 08:48:47 PM +UTC
Transaction Fee:
0.0010562192943351 ETH
$4.93
Gas Used:
34,825 Gas / 30.329340828 Gwei
Emitted Events:
69 |
VIUToken.Transfer( from=[Sender] 0x10dce18d6b5c779bc8de620f8d0a561dfc3a51f0, to=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, value=5251000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x10Dce18d...dfc3a51F0 |
17.267712637316267897 Eth
Nonce: 23390
|
17.266656418021932797 Eth
Nonce: 23391
| 0.0010562192943351 | ||
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 74.363528203408066562 Eth | 74.363597853408066562 Eth | 0.00006965 | |
0x519475b3...2BDAcB4f5 |
Execution Trace
VIUToken.transfer( _to=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, _value=5251000000000000000000 ) => ( 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);