Transaction Hash:
Block:
21835040 at Feb-13-2025 04:00:35 AM +UTC
Transaction Fee:
0.000108722097706144 ETH
$0.30
Gas Used:
71,123 Gas / 1.528648928 Gwei
Emitted Events:
358 |
AppProxyUpgradeable.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000a21f10c73df06bf1ad9d76a75d0d4d2c414e7e12, 0x00000000000000000000000007bbf9fdb156f298bec53cefa3652954a0738ed1, 000000000000000000000000000000000000000000000000aa3bf1604dc147d2 )
|
359 |
AppProxyUpgradeable.0x9d9c909296d9c674451c0c24f02cb64981eb3b727f99865939192f880a755dcb( 0x9d9c909296d9c674451c0c24f02cb64981eb3b727f99865939192f880a755dcb, 0x000000000000000000000000a21f10c73df06bf1ad9d76a75d0d4d2c414e7e12, 0x00000000000000000000000007bbf9fdb156f298bec53cefa3652954a0738ed1, 0000000000000000000000000000000000000000000000008e9a9df13d3bdc88 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 18.9942033004855756 Eth | 18.9942345946055756 Eth | 0.00003129412 | |
0xA21F10C7...c414e7E12 |
6.942228377185201126 Eth
Nonce: 2
|
6.942119655087494982 Eth
Nonce: 3
| 0.000108722097706144 | ||
0xae7ab965...312D7fE84 |
Execution Trace
AppProxyUpgradeable.a9059cbb( )
KernelProxy.be00bbd8( )
-
Kernel.getApp( _namespace=F1F3EB40F5BC1AD1344716CED8B8A0431D840B5783AEA1FD01786BC26F35AC0F, _appId=3CA7C3E38968823CCB4C78EA688DF41356F182AE1D159E4EE608D30D68CEF320 ) => ( 0x17144556fd3424EDC8Fc8A4C940B2D04936d17eb )
-
-
Lido.transfer( _recipient=0x07Bbf9fDb156F298BeC53cEFa3652954a0738Ed1, _amount=12266663405997344722 ) => ( 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));