Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5b9bab1
Merge pull request #7 from scroll-tech/develop
Turupawn Jun 4, 2025
473e09a
Merge pull request #14 from scroll-tech/develop
Turupawn Jun 13, 2025
4e0821f
Merge pull request #15 from scroll-tech/develop
Turupawn Jun 20, 2025
1485579
Merge pull request #16 from scroll-tech/develop
Turupawn Jun 20, 2025
aa002f2
Merge pull request #17 from scroll-tech/develop
Turupawn Jun 26, 2025
572e2f9
Merge pull request #18 from scroll-tech/develop
Turupawn Aug 12, 2025
af19afd
Merge pull request #19 from scroll-tech/develop
Turupawn Aug 18, 2025
43227c3
Merge branch 'scroll-tech:develop' into develop
Turupawn Aug 19, 2025
d01759c
Merge pull request #21 from scroll-tech/develop
Turupawn Aug 21, 2025
aa07eba
Merge pull request #22 from scroll-tech/develop
Turupawn Sep 7, 2025
2db2c7c
Merge pull request #23 from scroll-tech/develop
Turupawn Oct 7, 2025
1e95a48
Merge pull request #24 from scroll-tech/develop
Turupawn Oct 21, 2025
54611a0
Removing sections (#505)
Turupawn Oct 22, 2025
3a20546
Merge pull request #25 from scroll-tech/develop
Turupawn Oct 24, 2025
b77d43f
Fix redirects + improved dev FAQ (#508)
Turupawn Oct 24, 2025
a39559f
Merge pull request #26 from scroll-tech/develop
Turupawn Oct 24, 2025
5c50f4c
Merge pull request #27 from scroll-tech/prod
Turupawn Oct 24, 2025
f9753d7
Merge pull request #28 from scroll-tech/prod
Turupawn Oct 29, 2025
2e24330
add: sdk back again
Turupawn Oct 29, 2025
2b42854
updated browser lists
Turupawn Oct 29, 2025
fb9f764
removed playwright library
Turupawn Oct 29, 2025
b935e9c
readded playwright
Turupawn Oct 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"dev": "astro dev",
"start": "astro dev",
"build": "npm run setup; astro build",
"build:vercel": "astro build",
"preview": "astro preview",
"format": "prettier --write .",
"linkcheck": "tsc scripts/linkcheck.ts && node scripts/linkcheck.js",
Expand Down
25 changes: 25 additions & 0 deletions public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,31 @@
"community": {
"community": "Community",
"faq": "Community FAQ"
},
"sdk": {
"overview": "Overview",
"scrollSdk": "Scroll SDK Introduction",
"faq": "Scroll SDK FAQ",
"technicalStack": "Technical Stack",
"stackOverview": "Stack Overview",
"configuration": "Configuration",
"services": "Services",
"smartContracts": "Smart Contracts",
"proofGeneration": "Proof Generation",
"integrations": "Integrations",
"guides": "Guides",
"devnetDeployment": "Devnet Deployment",
"productionDeployment": "Production Deployment",
"digitalOcean": "Digital Ocean & ERC20 Gas Token Testnet",
"customizingSdkComponents": "Customizing SDK Components",
"awsDeployment": "AWS Deployment",
"operation": "Operating a Chain",
"contractsVerification": "Contracts Verification",
"gasAndFees": "Gas & Fee Management",
"monitoring": "Monitoring",
"security": "Security and Recovery",
"upgrades": "Upgrading",
"troubleshooting": "Troubleshooting"
}
},
"footer": {
Expand Down
3 changes: 3 additions & 0 deletions src/assets/svgs/home/home-sdk.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/config/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,24 @@ export const MENU: MenuItems = {
{ text: "Developers", link: "/en/developers", section: "developers" },
{ text: "Technology", link: "/en/technology", section: "technology" },
{ text: "Community", link: "/en/community/faq", section: "community" },
{ text: "SDK", link: "/en/sdk", section: "sdk" },
],
zh: [
{ text: "开发者", link: "/zh/developers", section: "developers" },
{ text: "技术", link: "/zh/technology", section: "technology" },
{ text: "Community", link: "/en/community/faq", section: "community" },
{ text: "SDK", link: "/en/sdk", section: "sdk" },
],
es: [
{ text: "Desarrolladores", link: "/es/developers", section: "developers" },
{ text: "Tecnología", link: "/es/technology", section: "technology" },
{ text: "Community", link: "/en/community/faq", section: "community" },
{ text: "SDK", link: "/en/sdk", section: "sdk" },
],
tr: [
{ text: "Geliştiriciler", link: "/tr/developers", section: "developers" },
{ text: "Teknoloji", link: "/tr/technology", section: "technology" },
{ text: "Community", link: "/en/community/faq", section: "community" },
{ text: "SDK", link: "/en/sdk", section: "sdk" },
],
}
98 changes: 98 additions & 0 deletions src/config/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,5 +271,103 @@ export const getSidebar = () => {
],
},
],
sdk: [
{
section: t("sidebar.sdk.overview"),
contents: [
{
title: t("sidebar.sdk.scrollSdk"),
url: "sdk/",
},
{
title: t("sidebar.sdk.faq"),
url: "sdk/sdk-faq",
},
],
},
{
section: t("sidebar.sdk.technicalStack"),
contents: [
{
title: t("sidebar.sdk.stackOverview"),
url: formatUrl("sdk/technical-stack/"),
},
{
title: t("sidebar.sdk.configuration"),
url: formatUrl("sdk/technical-stack/configuration"),
},
{
title: t("sidebar.sdk.services"),
url: formatUrl("sdk/technical-stack/services"),
},
{
title: t("sidebar.sdk.smartContracts"),
url: formatUrl("sdk/technical-stack/contracts"),
},
{
title: t("sidebar.sdk.proofGeneration"),
url: formatUrl("sdk/technical-stack/proof-generation"),
},
// {
// title: t("sidebar.sdk.integrations"),
// url: formatUrl("sdk/technical-stack/integrations"),
// },
],
},
{
section: t("sidebar.sdk.guides"),
contents: [
{
title: t("sidebar.sdk.devnetDeployment"),
url: formatUrl("sdk/guides/devnet-deployment"),
},
// {
// title: t("sidebar.sdk.productionDeployment"),
// url: formatUrl("sdk/guides/production-deployment"),
// },
{
title: t("sidebar.sdk.digitalOcean"),
url: formatUrl("sdk/guides/digital-ocean-alt-gas-token"),
},
{
title: t("sidebar.sdk.awsDeployment"),
url: formatUrl("sdk/guides/aws-deployment"),
},
{
title: t("sidebar.sdk.customizingSdkComponents"),
url: formatUrl("sdk/guides/customizing-sdk-components"),
},
],
},
{
section: t("sidebar.sdk.operation"),
contents: [
{
title: t("sidebar.sdk.contractsVerification"),
url: formatUrl("sdk/operation/contracts-verification"),
},
{
title: t("sidebar.sdk.gasAndFees"),
url: formatUrl("sdk/operation/gas-and-fees"),
},
{
title: t("sidebar.sdk.monitoring"),
url: formatUrl("sdk/operation/monitoring"),
},
{
title: t("sidebar.sdk.upgrades"),
url: formatUrl("sdk/operation/upgrades"),
},
{
title: t("sidebar.sdk.troubleshooting"),
url: formatUrl("sdk/operation/troubleshooting"),
},
{
title: t("sidebar.sdk.security"),
url: formatUrl("sdk/operation/security-and-recovery"),
},
],
},
],
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading