Testing Decentralized Applications for OP Mainnet


For the most part running applications on OP Mainnet is identical to running them on Ethereum, so the testing is identical too. In this article you learn the best practices for OP Mainnet testing where there are differences.

# Unit tests and single layer integration tests

The vast majority of tests do not involve any OP Mainnet-specific features. In those cases, while you could test everything on OP Mainnet or a test network, that would normally be inefficient. Most Ethereum development stacks include features that make testing easier, which normal Ethereum clients, such as geth (and our modified version, op-geth) don't support. Therefore, it is a good idea to run the majority of tests, which do not rely on OP Mainnet-specific features, in the development stack. It is a lot faster.

Ideally you would want to be able to run some tests on an OP test network, either a local development environment or the test network. This would be a much slower process, but it would let you identify cases where the equivalence between OP Mainnet and Ethereum breaks down (or the equivalence between Ethereum itself and the development stack, for that matter).

# Multilayer integration tests

Some dapps need OP Mainnet-specific features that aren't available as part of the development stack. For example, if your decentralized application relies on inter-domain communication, the effort of developing a stub to let you debug it in a development stack is probably greater than the hassle of having the automated test go to a local development environment each time.

# Integration with other products

In many cases a decentralized application requires the services of other contracts. For example, Perpetual v. 2 (opens new window) cannot function without Uniswap v. 3 (opens new window).

If that is the case you can use mainnet forking (opens new window). It works with OP Mainnet. Alternatively, you can connect to our test network if those contracts are also deployed there (in many cases they are).