From 23baf4fc85586a01b770bb5e0c3ad0323cfd9ca7 Mon Sep 17 00:00:00 2001 From: Mackenzie-OO7 Date: Mon, 11 Nov 2024 15:59:30 +0100 Subject: [PATCH 1/3] 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 From 4b18ffde664686c9a33713d32bf7c5ea44a0be84 Mon Sep 17 00:00:00 2001 From: Mackenzie-OO7 Date: Mon, 11 Nov 2024 16:08:44 +0100 Subject: [PATCH 2/3] correct celenium link --- how-to-guides/optimism.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/how-to-guides/optimism.md b/how-to-guides/optimism.md index 74ce2551cac..47f9ed1e8ca 100644 --- a/how-to-guides/optimism.md +++ b/how-to-guides/optimism.md @@ -19,7 +19,7 @@ This guide is in two parts: - 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). +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](https://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. From d97066c2fa4ac940461ccbe51e492bdd9d03d6be Mon Sep 17 00:00:00 2001 From: Mackenzie-OO7 Date: Tue, 12 Nov 2024 09:45:25 +0100 Subject: [PATCH 3/3] add youtube link --- how-to-guides/optimism.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/how-to-guides/optimism.md b/how-to-guides/optimism.md index 47f9ed1e8ca..195bb11a114 100644 --- a/how-to-guides/optimism.md +++ b/how-to-guides/optimism.md @@ -11,18 +11,19 @@ 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. +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 use Celestia 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. - +- 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](https://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. +This guide is also available on [YouTube](https://www.youtube.com/watch?v=lOLw4uLX644) if you'd like to follow along with a video. + ## Dependency setup - [celestia-node](../how-to-guides/celestia-node.md)