Block Explorers
# Blockscout
We have a Blockscout explorer for OP Mainnet (opens new window), OP Goerli (opens new window), and OP Sepolia (opens new window). It includes:
- Verified testnet contract source code, along with the ability to interact with it (opens new window)
- Detailed testnet transaction information (opens new window)
Blockscout also has some OP-Mainnet-specific features:
- An interactive list of deposits (L1-L2) (opens new window)
- An interactive list of withdrawals (L2-L1) (opens new window)
- Transaction batches (opens new window)
- Output roots (opens new window)
- Dapp marketplace (opens new window)
- And much more!
# Etherscan
We have Etherscan explorers for the OP Mainnet (opens new window) and the OP Goerli (opens new window). Etherscan has lots of tools to help you debug transactions.
Optimistic Etherscan has all the tools you expect from Etherscan, such as:
- Verified contract source code, along with the ability to interact with it (opens new window)
- Detailed transaction information (opens new window)
- And everything else you might find on Etherscan!
It's also got some OP-Mainnet-specific features:
- A list of L1-to-L2 transactions (opens new window)
- A list of L2-to-L1 transactions (opens new window)
- A tool for finalizing L2-to-L1 transactions (opens new window)
- And more! Just check it out and click around to find all of the available features.
# Tenderly
You can also search for, filter and explore transaction in the Tenderly Dashboard (opens new window), where you also have easy and integrated access to stuff like:
- Extremely detailed execution trace, with complete control and insight into your debugging (opens new window) and transaction simulation environment
- 100% accurate gas estimates (opens new window)
- RPC customization (opens new window)
# Access to pre-regenesis history
Because of our final regenesis on 11 November 2021, older transactions are not part of the current blockchain. As such, they do not appear, for example, on Etherscan (opens new window). However, you can access transaction history between 23 June 2021 and the final regenesis using the Etherscan CSV exporting tool.
# Etherscan access
Browse here (opens new window) and select your address and the type of report you want.
# Dune access
Click here (opens new window).
# Pre 23 June 2021 history
Follow these steps:
Clone go-ethereum (the standard version) and checkout version v1.9.10:
git clone https://github.com/ethereum/go-ethereum.git cd go-ethereum git checkout v1.9.10
1
2
3Download the following three datadir folders:
Build and run the standard geth v1.9.10 with:
./build/bin/geth --datadir ./path/to/datadir --rpc
1You can then use ERC20 events filters to get the events that you want for each address. Note that you will have to repeat this process for each datadir to get the full event history. If you are non-technical and need help requesting this data please reach out to us in Discord and we will be happy to help.