Transaction Hash:
Block:
21836268 at Feb-13-2025 08:07:59 AM +UTC
Transaction Fee:
0.000059140278751734 ETH
$0.16
Gas Used:
65,202 Gas / 0.907031667 Gwei
Emitted Events:
554 |
AppProxyUpgradeable.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x0000000000000000000000005f3b32286c4bfcf19631522277bb10864ac72a4e, 0x0000000000000000000000000000000000bbf5c5fd284e657f01bd000933c96d, 000000000000000000000000000000000000000000000000016345785d8a0000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5F3B3228...64aC72A4e |
0.01204908661536 Eth
Nonce: 2
|
0.011989946336608266 Eth
Nonce: 3
| 0.000059140278751734 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 7.826627182092579354 Eth | 7.826635306552254264 Eth | 0.00000812445967491 | |
0xae7ab965...312D7fE84 |
Execution Trace
AppProxyUpgradeable.095ea7b3( )
KernelProxy.be00bbd8( )
-
Kernel.getApp( _namespace=F1F3EB40F5BC1AD1344716CED8B8A0431D840B5783AEA1FD01786BC26F35AC0F, _appId=3CA7C3E38968823CCB4C78EA688DF41356F182AE1D159E4EE608D30D68CEF320 ) => ( 0x17144556fd3424EDC8Fc8A4C940B2D04936d17eb )
-
-
Lido.approve( _spender=0x0000000000bbF5c5Fd284e657F01Bd000933C96D, _amount=100000000000000000 ) => ( 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));