ETH Price: $2,522.57 (-0.62%)

Transaction Decoder

Block:
21837143 at Feb-13-2025 11:03:59 AM +UTC
Transaction Fee:
0.000068749640527278 ETH $0.17
Gas Used:
49,902 Gas / 1.377693089 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
5.914929164707605371 Eth5.914954115707605371 Eth0.000024951
0x9a7B7A6F...D92AAB8Cb
0.00092939232294352 Eth
Nonce: 278
0.000860642682416242 Eth
Nonce: 279
0.000068749640527278

Execution Trace

AppProxyUpgradeable.095ea7b3( )
  • KernelProxy.be00bbd8( )
    • Kernel.getApp( _namespace=F1F3EB40F5BC1AD1344716CED8B8A0431D840B5783AEA1FD01786BC26F35AC0F, _appId=3CA7C3E38968823CCB4C78EA688DF41356F182AE1D159E4EE608D30D68CEF320 ) => ( 0x17144556fd3424EDC8Fc8A4C940B2D04936d17eb )
    • Lido.approve( _spender=0xA2F987A546D4CD1c607Ee8141276876C26b72Bdf, _amount=11579208923731619542356698500868790785 )
      File 1 of 4: AppProxyUpgradeable
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // 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) }
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 4: KernelProxy
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /**
      *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;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 4: Kernel
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // 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/4832
      function hasPermission(address who, address where, bytes32 what, bytes how) public view returns (bool);
      }
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 4 of 4: Lido
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /*
      * 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));
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX