diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index 1d75a4db3..ffa793b46 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -159,6 +159,7 @@ "digitalOcean": "Digital Ocean & ERC20 Gas Token Testnet", "customizingSdkComponents": "Customizing SDK Components", "awsDeployment": "AWS Deployment", + "rollupAsAService": "Rollup as a Service", "operation": "Operating a Chain", "contractsVerification": "Contracts Verification", "gasAndFees": "Gas & Fee Management", diff --git a/src/config/sidebar.ts b/src/config/sidebar.ts index 63377b5e9..5973844ed 100644 --- a/src/config/sidebar.ts +++ b/src/config/sidebar.ts @@ -337,6 +337,10 @@ export const getSidebar = () => { title: t("sidebar.sdk.customizingSdkComponents"), url: formatUrl("sdk/guides/customizing-sdk-components"), }, + { + title: t("sidebar.sdk.rollupAsAService"), + url: formatUrl("sdk/guides/rollup-as-a-service"), + }, ], }, { diff --git a/src/content/docs/en/sdk/guides/rollup-as-a-service.mdx b/src/content/docs/en/sdk/guides/rollup-as-a-service.mdx new file mode 100644 index 000000000..0fe89851d --- /dev/null +++ b/src/content/docs/en/sdk/guides/rollup-as-a-service.mdx @@ -0,0 +1,29 @@ +--- +section: sdk +date: Last Modified +title: "Rollup as a Service" +lang: "en" +permalink: "sdk/guides/roll-up-as-a-service" +excerpt: "Deploy the Scroll SDK via RaaS providers." +--- + +## What is Rollup as a Service? + +Rollup as a Service (RaaS) is a managed infrastructure solution that simplifies the deployment and operation of Scroll SDK chains. Instead of managing the complex infrastructure yourself, RaaS providers handle the technical setup, maintenance, and monitoring of your rollup, allowing you to focus on building your application and growing your ecosystem. + +With RaaS, you can launch a production-ready Scroll SDK chain in a few hours, without deep expertise in blockchain infrastructure or DevOps. + +## Benefits of Using Rollup as a Service + +- **Simplified Deployment**: Infrastructure provisioning, network setup, and security configuration handled by experts +- **Reduced Operational Burden**: Automated updates, 24/7 monitoring, and maintenance managed for you +- **Cost Efficiency**: No need for dedicated DevOps team, pay-as-you-go pricing models +- **Faster Time to Market**: Launch your chain in hours with pre-configured templates and workflows +- **Enterprise-Grade Reliability**: High availability, disaster recovery, and performance optimization + +## Scroll SDK RaaS Providers + +Here is a list of RaaS providers that support Scroll SDK. + +- [Nexora](https://nexora.build/) +- [Unifra](https://unifra.io/rollup) diff --git a/src/content/docs/en/sdk/index.mdx b/src/content/docs/en/sdk/index.mdx index 7f989dea5..4161373ac 100644 --- a/src/content/docs/en/sdk/index.mdx +++ b/src/content/docs/en/sdk/index.mdx @@ -3,7 +3,7 @@ section: sdk title: "Scroll SDK" lang: "en" permalink: "sdk/" -excerpt: "Learn more about how to depoly your own rollup using Scroll's zkEVM" +excerpt: "Learn more about how to deploy your own rollup using Scroll's zkEVM" --- import NavCard from "../../../../components/NavCard.astro"