Transaction Hash:
Block:
21836214 at Feb-13-2025 07:56:47 AM +UTC
Transaction Fee:
0.000102312753771628 ETH
$0.26
Gas Used:
71,111 Gas / 1.438775348 Gwei
Emitted Events:
9 |
AppProxyUpgradeable.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000006f8efac16e71a1193c8ce824192dab191e36e3a2, 0x0000000000000000000000006cc5f688a315f3dc28a7781717a9a798a59fda7b, 000000000000000000000000000000000000000000000000041760b55e177700 )
|
10 |
AppProxyUpgradeable.0x9d9c909296d9c674451c0c24f02cb64981eb3b727f99865939192f880a755dcb( 0x9d9c909296d9c674451c0c24f02cb64981eb3b727f99865939192f880a755dcb, 0x0000000000000000000000006f8efac16e71a1193c8ce824192dab191e36e3a2, 0x0000000000000000000000006cc5f688a315f3dc28a7781717a9a798a59fda7b, 000000000000000000000000000000000000000000000000036d6190e6d56dce )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 112.213385928618647368 Eth | 112.213428595218647368 Eth | 0.0000426666 | |
0x6f8eFAc1...91e36E3a2 |
0.00065029041 Eth
Nonce: 0
|
0.000547977656228372 Eth
Nonce: 1
| 0.000102312753771628 | ||
0xae7ab965...312D7fE84 |
Execution Trace
AppProxyUpgradeable.a9059cbb( )
KernelProxy.be00bbd8( )
-
Kernel.getApp( _namespace=F1F3EB40F5BC1AD1344716CED8B8A0431D840B5783AEA1FD01786BC26F35AC0F, _appId=3CA7C3E38968823CCB4C78EA688DF41356F182AE1D159E4EE608D30D68CEF320 ) => ( 0x17144556fd3424EDC8Fc8A4C940B2D04936d17eb )
-
-
Lido.transfer( _recipient=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, _amount=294810632700000000 ) => ( True )
File 1 of 4: AppProxyUpgradeable
File 2 of 4: KernelProxy
File 3 of 4: Kernel
File 4 of 4: Lido
12345678910111213141516// File: contracts/common/UnstructuredStorage.sol/** SPDX-License-Identitifer: MIT*/pragma solidity ^0.4.24;library UnstructuredStorage {function getStorageBool(bytes32 position) internal view returns (bool data) {assembly { data := sload(position) }}function getStorageAddress(bytes32 position) internal view returns (address data) {assembly { data := sload(position) }
File 2 of 4: KernelProxy
12345678910111213141516/***Submitted for verification at Etherscan.io on 2020-02-06*/// File: contracts/acl/IACL.sol/** SPDX-License-Identifier: MIT*/pragma solidity ^0.4.24;interface IACL {function initialize(address permissionsCreator) external;
File 3 of 4: Kernel
12345678910111213141516// File: contracts/acl/IACL.sol/** SPDX-License-Identitifer: MIT*/pragma solidity ^0.4.24;interface IACL {function initialize(address permissionsCreator) external;// TODO: this should be external// See https://github.com/ethereum/solidity/issues/4832function hasPermission(address who, address where, bytes32 what, bytes how) public view returns (bool);}
File 4 of 4: Lido
12345678910111213141516/** SPDX-License-Identifier: MIT*/pragma solidity ^0.4.24;contract ACLSyntaxSugar {function arr() internal pure returns (uint256[]) {return new uint256[](0);}function arr(bytes32 _a) internal pure returns (uint256[] r) {return arr(uint256(_a));}function arr(bytes32 _a, bytes32 _b) internal pure returns (uint256[] r) {return arr(uint256(_a), uint256(_b));}function arr(address _a) internal pure returns (uint256[] r) {return arr(uint256(_a));