ETH Price: $2,564.63 (+3.50%)

Transaction Decoder

Block:
18298344 at Oct-07-2023 11:35:23 AM +UTC
Transaction Fee:
0.000248497098511272 ETH $0.64
Gas Used:
48,108 Gas / 5.165400734 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
16.950071110324656979 Eth16.950075921124656979 Eth0.0000048108
0xD2C1E463...0701c50b7
2.901844133670920529 Eth
Nonce: 5
2.901595636572409257 Eth
Nonce: 6
0.000248497098511272

Execution Trace

ETH 0.007 Proxy.e9e05c42( )
  • ETH 0.007 OptimismPortal.depositTransaction( _to=0xD2C1E463e089165375EC1CBBCB86A980701c50b7, _value=7000000000000000, _gasLimit=100000, _isCreation=False, _data=0x )
    • Proxy.STATICCALL( )
      • SystemConfig.DELEGATECALL( )
        File 1 of 4: Proxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        pragma solidity 0.8.15;
        /**
        * @title Proxy
        * @notice Proxy is a transparent proxy that passes through the call if the caller is the owner or
        * if the caller is address(0), meaning that the call originated from an off-chain
        * simulation.
        */
        contract Proxy {
        /**
        * @notice The storage slot that holds the address of the implementation.
        * bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)
        */
        bytes32 internal constant IMPLEMENTATION_KEY =
        0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
        /**
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 4: OptimismPortal
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        pragma solidity 0.8.15;
        import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
        import { Semver } from "../universal/Semver.sol";
        import { Types } from "../libraries/Types.sol";
        /**
        * @custom:proxied
        * @title L2OutputOracle
        * @notice The L2OutputOracle contains an array of L2 state outputs, where each output is a
        * commitment to the state of the L2 chain. Other contracts like the OptimismPortal use
        * these outputs to verify information about the state of L2.
        */
        contract L2OutputOracle is Initializable, Semver {
        /**
        * @notice The interval in L2 blocks at which checkpoints must be submitted. Although this is
        * immutable, it can safely be modified by upgrading the implementation contract.
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 3 of 4: Proxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        pragma solidity 0.8.15;
        /**
        * @title Proxy
        * @notice Proxy is a transparent proxy that passes through the call if the caller is the owner or
        * if the caller is address(0), meaning that the call originated from an off-chain
        * simulation.
        */
        contract Proxy {
        /**
        * @notice The storage slot that holds the address of the implementation.
        * bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)
        */
        bytes32 internal constant IMPLEMENTATION_KEY =
        0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
        /**
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 of 4: SystemConfig
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        pragma solidity 0.8.15;
        import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
        import { Math } from "@openzeppelin/contracts/utils/math/Math.sol";
        import { Burn } from "../libraries/Burn.sol";
        import { Arithmetic } from "../libraries/Arithmetic.sol";
        /**
        * @custom:upgradeable
        * @title ResourceMetering
        * @notice ResourceMetering implements an EIP-1559 style resource metering system where pricing
        * updates automatically based on current demand.
        */
        abstract contract ResourceMetering is Initializable {
        /**
        * @notice Represents the various parameters that control the way in which resources are
        * metered. Corresponds to the EIP-1559 resource metering system.
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX