ETH Price: $2,743.70 (+6.62%)

Transaction Decoder

Block:
21836205 at Feb-13-2025 07:54:59 AM +UTC
Transaction Fee:
0.000082107495173505 ETH $0.23
Gas Used:
71,111 Gas / 1.154638455 Gwei

Emitted Events:

161 AppProxyUpgradeable.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000009767d884c96fdbced6a20fd26edd53c73b31e408, 0x0000000000000000000000006cc5f688a315f3dc28a7781717a9a798a59fda7b, 0000000000000000000000000000000000000000000000000416c27db4d67400 )
162 AppProxyUpgradeable.0x9d9c909296d9c674451c0c24f02cb64981eb3b727f99865939192f880a755dcb( 0x9d9c909296d9c674451c0c24f02cb64981eb3b727f99865939192f880a755dcb, 0x0000000000000000000000009767d884c96fdbced6a20fd26edd53c73b31e408, 0x0000000000000000000000006cc5f688a315f3dc28a7781717a9a798a59fda7b, 000000000000000000000000000000000000000000000000036cdd0743c1b644 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
7.695147114635480295 Eth7.695170261265980295 Eth0.0000231466305
0x9767D884...73B31E408
0.00064498104 Eth
Nonce: 0
0.000562873544826495 Eth
Nonce: 1
0.000082107495173505
0xae7ab965...312D7fE84

Execution Trace

AppProxyUpgradeable.a9059cbb( )
  • KernelProxy.be00bbd8( )
    • Kernel.getApp( _namespace=F1F3EB40F5BC1AD1344716CED8B8A0431D840B5783AEA1FD01786BC26F35AC0F, _appId=3CA7C3E38968823CCB4C78EA688DF41356F182AE1D159E4EE608D30D68CEF320 ) => ( 0x17144556fd3424EDC8Fc8A4C940B2D04936d17eb )
    • Lido.transfer( _recipient=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, _amount=294636670800000000 ) => ( True )
      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