Transaction Hash:
Block:
17811710 at Jul-31-2023 08:10:47 AM +UTC
Transaction Fee:
0.000807382369023494 ETH
$2.21
Gas Used:
50,602 Gas / 15.955542647 Gwei
Emitted Events:
318 |
Proxy.0xb3813568d9991fc951961fcb4c784893574240a28925604d09fc577c55bb7c32( 0xb3813568d9991fc951961fcb4c784893574240a28925604d09fc577c55bb7c32, 0x000000000000000000000000318f545e70b857f11b91035e1ef93b7b95a9d368, 0x000000000000000000000000318f545e70b857f11b91035e1ef93b7b95a9d368, 0x0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000020, 0000000000000000000000000000000000000000000000000000000000000049, 0000000000000000000000000000000000000000000000000021c0331d5dc000, 0000000000000000000000000000000000000000000000000021c0331d5dc000, 00000000000186a0000000000000000000000000000000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1a0ad011...fD9551054 | (Zora: Bridge) | 1,482.200851427500292973 Eth | 1,482.210351427500292973 Eth | 0.0095 | |
0x318F545e...B95a9D368 |
0.01122404 Eth
Nonce: 0
|
0.000916657630976506 Eth
Nonce: 1
| 0.010307382369023494 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.346180999889673712 Eth | 10.346184434309502366 Eth | 0.000003434419828654 |
Execution Trace
ETH 0.0095
Proxy.e9e05c42( )
ETH 0.0095
OptimismPortal.depositTransaction( _to=0x318F545e70B857f11B91035e1EF93B7B95a9D368, _value=9500000000000000, _gasLimit=100000, _isCreation=False, _data=0x )
Proxy.STATICCALL( )
-
SystemConfig.DELEGATECALL( )
-
File 1 of 4: Proxy
File 2 of 4: OptimismPortal
File 3 of 4: Proxy
File 4 of 4: SystemConfig
12345678910111213141516// SPDX-License-Identifier: MITpragma 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;/**
File 2 of 4: OptimismPortal
12345678910111213141516// SPDX-License-Identifier: MITpragma 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.
File 3 of 4: Proxy
12345678910111213141516// SPDX-License-Identifier: MITpragma 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;/**
File 4 of 4: SystemConfig
12345678910111213141516// SPDX-License-Identifier: MITpragma 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.