ETH Price: $3,672.90 (+0.63%)

Transaction Decoder

Block:
19883672 at May-16-2024 04:16:11 PM +UTC
Transaction Fee:
0.00095685163044948 ETH $3.51
Gas Used:
181,640 Gas / 5.267846457 Gwei

Account State Difference:

  Address   Before After State Difference Code
3.549267018265819502 Eth3.549277118353296862 Eth0.00001010008747736
0xdF194B13...965834d2d
0.009245687516606368 Eth
Nonce: 15
0.008288835886156888 Eth
Nonce: 16
0.00095685163044948

Execution Trace

ETH 0.0004 L1ChugSplashProxy.e11013dd( )
  • ProxyAdmin.STATICCALL( )
  • ETH 0.0004 L1StandardBridge.bridgeETHTo( _to=0xdF194B137F10540EF3E105f7e6eC721965834d2d, _minGasLimit=200000, _extraData=0x7375706572627269646765 )
    • ETH 0.0004 ResolvedDelegateProxy.3dbb202b( )
      • AddressManager.getAddress( _name=OVM_L1CrossDomainMessenger ) => ( 0x958487e21ba9E073836d598E31f749726f23413f )
      • ETH 0.0004 L1CrossDomainMessenger.sendMessage( _target=0x4200000000000000000000000000000000000010, _message=0x1635F5FD000000000000000000000000DF194B137F10540EF3E105F7E6EC721965834D2D000000000000000000000000DF194B137F10540EF3E105F7E6EC721965834D2D00000000000000000000000000000000000000000000000000016BCC41E900000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000B7375706572627269646765000000000000000000000000000000000000000000, _minGasLimit=200000 )
        • ETH 0.0004 Proxy.e9e05c42( )
          • ETH 0.0004 OptimismPortal.depositTransaction( _to=0x4200000000000000000000000000000000000007, _value=400000000000000, _gasLimit=491310, _isCreation=False, _data=0xD764AD0B00010000000000000000000000000000000000000000000000000000000006290000000000000000000000002B3F201543ADF73160BA42E1A5B7750024F30420000000000000000000000000420000000000000000000000000000000000001000000000000000000000000000000000000000000000000000016BCC41E900000000000000000000000000000000000000000000000000000000000000030D4000000000000000000000000000000000000000000000000000000000000000C000000000000000000000000000000000000000000000000000000000000000C41635F5FD000000000000000000000000DF194B137F10540EF3E105F7E6EC721965834D2D000000000000000000000000DF194B137F10540EF3E105F7E6EC721965834D2D00000000000000000000000000000000000000000000000000016BCC41E900000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000B737570657262726964676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 )
            • Proxy.STATICCALL( )
              File 1 of 9: L1ChugSplashProxy
              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 IL1ChugSplashDeployer
              */
              interface IL1ChugSplashDeployer {
              function isUpgrading() external view returns (bool);
              }
              /**
              * @custom:legacy
              * @title L1ChugSplashProxy
              * @notice Basic ChugSplash proxy contract for L1. Very close to being a normal proxy but has added
              * functions `setCode` and `setStorage` for changing the code or storage of the contract.
              *
              * Note for future developers: do NOT make anything in this contract 'public' unless you
              * know what you're doing. Anything public can potentially have a function signature that
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 2 of 9: ProxyAdmin
              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 { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
              /**
              * @custom:legacy
              * @title AddressManager
              * @notice AddressManager is a legacy contract that was used in the old version of the Optimism
              * system to manage a registry of string names to addresses. We now use a more standard
              * proxy system instead, but this contract is still necessary for backwards compatibility
              * with several older contracts.
              */
              contract AddressManager is Ownable {
              /**
              * @notice Mapping of the hashes of string names to addresses.
              */
              mapping(bytes32 => address) private addresses;
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 3 of 9: L1StandardBridge
              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 { Predeploys } from "../libraries/Predeploys.sol";
              import { StandardBridge } from "../universal/StandardBridge.sol";
              import { Semver } from "../universal/Semver.sol";
              /**
              * @custom:proxied
              * @title L1StandardBridge
              * @notice The L1StandardBridge is responsible for transfering ETH and ERC20 tokens between L1 and
              * L2. In the case that an ERC20 token is native to L1, it will be escrowed within this
              * contract. If the ERC20 token is native to L2, it will be burnt. Before Bedrock, ETH was
              * stored within this contract. After Bedrock, ETH is instead stored inside the
              * OptimismPortal contract.
              * NOTE: this contract is not intended to support all variations of ERC20 tokens. Examples
              * of some token types that may not be properly supported by this contract include, but are
              * not limited to: tokens with transfer fees, rebasing tokens, and tokens with blocklists.
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 4 of 9: ResolvedDelegateProxy
              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 { AddressManager } from "./AddressManager.sol";
              /**
              * @custom:legacy
              * @title ResolvedDelegateProxy
              * @notice ResolvedDelegateProxy is a legacy proxy contract that makes use of the AddressManager to
              * resolve the implementation address. We're maintaining this contract for backwards
              * compatibility so we can manage all legacy proxies where necessary.
              */
              contract ResolvedDelegateProxy {
              /**
              * @notice Mapping used to store the implementation name that corresponds to this contract. A
              * mapping was originally used as a way to bypass the same issue normally solved by
              * storing the implementation address in a specific storage slot that does not conflict
              * with any other storage slot. Generally NOT a safe solution but works as long as the
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 5 of 9: AddressManager
              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 { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
              /**
              * @custom:legacy
              * @title AddressManager
              * @notice AddressManager is a legacy contract that was used in the old version of the Optimism
              * system to manage a registry of string names to addresses. We now use a more standard
              * proxy system instead, but this contract is still necessary for backwards compatibility
              * with several older contracts.
              */
              contract AddressManager is Ownable {
              /**
              * @notice Mapping of the hashes of string names to addresses.
              */
              mapping(bytes32 => address) private addresses;
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 6 of 9: L1CrossDomainMessenger
              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 { Predeploys } from "../libraries/Predeploys.sol";
              import { OptimismPortal } from "./OptimismPortal.sol";
              import { CrossDomainMessenger } from "../universal/CrossDomainMessenger.sol";
              import { Semver } from "../universal/Semver.sol";
              /**
              * @custom:proxied
              * @title L1CrossDomainMessenger
              * @notice The L1CrossDomainMessenger is a message passing interface between L1 and L2 responsible
              * for sending and receiving data on the L1 side. Users are encouraged to use this
              * interface instead of interacting with lower-level contracts directly.
              */
              contract L1CrossDomainMessenger is CrossDomainMessenger, Semver {
              /**
              * @notice Address of the OptimismPortal.
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 7 of 9: 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 8 of 9: 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 { SafeCall } from "../libraries/SafeCall.sol";
              import { L2OutputOracle } from "./L2OutputOracle.sol";
              import { SystemConfig } from "./SystemConfig.sol";
              import { Constants } from "../libraries/Constants.sol";
              import { Types } from "../libraries/Types.sol";
              import { Hashing } from "../libraries/Hashing.sol";
              import { SecureMerkleTrie } from "../libraries/trie/SecureMerkleTrie.sol";
              import { AddressAliasHelper } from "../vendor/AddressAliasHelper.sol";
              import { ResourceMetering } from "./ResourceMetering.sol";
              import { Semver } from "../universal/Semver.sol";
              /// @custom:proxied
              /// @title OptimismPortal
              /// @notice The OptimismPortal is a low-level contract responsible for passing messages between L1
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 9 of 9: 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