Skip to content

removed canvas badges integration guide #449

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 6 additions & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,14 @@
"scrollSepoliaBlockExplorer": "Scroll Sepolia Explorer",
"sepoliaRollupExplorer": "Rollup Explorer",
"sepoliaBlockExplorer": "Scrollscan Explorer",
"canvasBadge": "Canvas & Badge Integration",
"transactionJourney": "Checking Transaction Journey"
},
"whatToBuild": {
"whatToBuild": "What to Build",
"stablecoinPaymentsTutorial": "Stablecoin Payments Tutorial",
"solidityCookbook": "Solidity Cookbook",
"privacyDappsWithZk": "Privacy dApps with ZK"
},
"technology": {
"introduction": "Introduction",
"principles": "Principles",
Expand Down
6 changes: 6 additions & 0 deletions public/locales/es/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@
"sepoliaRollupExplorer": "Explorador de Rollup",
"sepoliaBlockExplorer": "Explorador de bloques Scrollscan"
},
"whatToBuild": {
"whatToBuild": "Qué construir",
"stablecoinPaymentsTutorial": "Pagos con Stablecoins",
"solidityCookbook": "Recetario de Solidity",
"privacyDappsWithZk": "Dapps Privadas con ZK"
},
"technology": {
"introduction": "Introducción",
"principles": "Principios",
Expand Down
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.
21 changes: 17 additions & 4 deletions src/config/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,6 @@ export const getSidebar = () => {
title: t("sidebar.developers.runningNode"),
url: formatUrl("developers/guides/running-a-scroll-node"),
},
{
title: t("sidebar.developers.canvasBadge"),
url: formatUrl("developers/guides/canvas-badge-integration"),
},
{
title: t("sidebar.developers.transactionJourney"),
url: formatUrl("developers/guides/checking-transaction-journey"),
Expand All @@ -184,6 +180,23 @@ export const getSidebar = () => {
// },
],
},
{
section: t("sidebar.whatToBuild.whatToBuild"),
contents: [
{
title: t("sidebar.whatToBuild.stablecoinPaymentsTutorial"),
url: formatUrl("developers/what-to-build/stablecoin-payments-tutorial"),
},
{
title: t("sidebar.whatToBuild.solidityCookbook"),
url: formatUrl("developers/what-to-build/solidity-cookbook"),
},
{
title: t("sidebar.whatToBuild.privacyDappsWithZk"),
url: formatUrl("developers/what-to-build/privacy-dapps-with-zk"),
},
],
},
{
section: t("sidebar.developers.mainnetResources"),
contents: [
Expand Down
Binary file not shown.
Binary file not shown.
230 changes: 0 additions & 230 deletions src/content/docs/en/developers/guides/canvas-badge-integration.mdx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: "Running a Scroll L2geth Node"
lang: "en"
permalink: "developers/guides/running-a-scroll-node"
excerpt: "This guide contains instructions on how to run your own node on the Scroll network."
whatsnext: { "Canvas & Bridge Integration Guide": "/developers/guides/canvas-badge-integration" }
whatsnext: { "Checking Transaction Journey Guide": "/developers/guides/checking-transaction-journey" }
---

import Aside from "../../../../../components/Aside.astro"
Expand Down
Loading