From 23baf4fc85586a01b770bb5e0c3ad0323cfd9ca7 Mon Sep 17 00:00:00 2001 From: Mackenzie-OO7 Date: Mon, 11 Nov 2024 15:59:30 +0100 Subject: [PATCH] add walkthrough for running op stack rollup --- how-to-guides/optimism.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/how-to-guides/optimism.md b/how-to-guides/optimism.md index befd0de9674..74ce2551cac 100644 --- a/how-to-guides/optimism.md +++ b/how-to-guides/optimism.md @@ -11,6 +11,16 @@ import constants from '/.vitepress/constants/constants.js' This guide will show you how to run your own OP Stack devnet and testnet that posts data to Celestia's Mocha testnet using [roll-op](https://github.com/celestiaorg/roll-op) and [op-plasma-celestia](https://github.com/celestiaorg/op-plasma-celestia). +The roll-op tool is used to deploy and manage the OP Stack rollup environment, including the rollup, batcher, and other components. While the op-plasma-celestia integration allows the OP Stack to utilize Celestia's Mocha testnet as the data availability (DA) layer. + +This guide is in two parts: + +- First, you'll spin up a mock L1 environment and deploy a devnet that posts data to the Mocha testnet. + +- In the second part, you'll deploy a testnet that posts data to the Mocha testnet, but this time on a real L1 environment; the Ethereum Sepolia testnet. This will involve setting up a configuration file with the necessary details like Sepolia chain ID, RPC URL, and your deployment keys. + +After successful deployments, you'll be able to observe data blobs being successfully submitted to the Mocha testnet in the logs, as well as some activity on your rollup account on [Celenium](celenium.io). + If you don't have devops experience and would like to use a Rollups as a Service (RaaS) provider, see the RaaS category in the menu. ## Dependency setup