File tree Expand file tree Collapse file tree 5 files changed +384
-4
lines changed
content/docs/en/developers/guides Expand file tree Collapse file tree 5 files changed +384
-4
lines changed Original file line number Diff line number Diff line change 9696 "guides" : " Guides" ,
9797 "contractDeploymentTutorial" : " Contract Deployment Tutorial" ,
9898 "crossChainInteraction" : " Scroll Messenger Cross-chain Interaction" ,
99+ "runningNode" : " Running a Scroll Node" ,
99100 "bridgingERC20TokenThroughCustomGateway" : " Bridge an ERC20 through the Custom Gateway" ,
100101 "bridgingERC721NftThroughCustomGateway" : " Bridging ERC721 NFT through Custom Gateway" ,
101102 "bridgingERC1155ThroughCustomGateway" : " Bridging ERC1155 through Custom Gateway" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export type Props = {
88 title? : string
99}
1010
11- const { type = " note" , title = type } = Astro .props as Props
11+ const { type = " note" , title } = Astro .props as Props
1212
1313// SVG icon paths based on GitHub Octicons
1414const icons = {
@@ -26,9 +26,13 @@ const icons = {
2626 </span >
2727 </div >
2828 <section class =" asideContent" >
29- <p class =" title heading-100" aria-hidden =" true" >
30- { title }
31- </p >
29+ {
30+ title && (
31+ <p class = " title heading-100" aria-hidden = " true" >
32+ { title }
33+ </p >
34+ )
35+ }
3236 <slot />
3337 </section >
3438</aside >
Original file line number Diff line number Diff line change @@ -149,6 +149,10 @@ export const getSidebar = () => {
149149 title : t ( "sidebar.developers.bridgingERC20TokenThroughCustomGateway" ) ,
150150 url : formatUrl ( "developers/guides/bridge-erc20-through-the-custom-gateway" ) ,
151151 } ,
152+ {
153+ title : t ( "sidebar.developers.runningNode" ) ,
154+ url : formatUrl ( "developers/guides/running-a-scroll-node" ) ,
155+ } ,
152156 // {
153157 // title: t("sidebar.developers.bridgingERC721NftThroughCustomGateway"),
154158 // url: formatUrl("developers/guides/"),
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ date: Last Modified
44title : " Bridge ERC20 through the Custom Gateway"
55lang : " en"
66permalink : " developers/guides/bridge-erc20-through-the-custom-gateway"
7+ whatsnext : { "Running a Scroll Node": "/developers/guides/running-a-scroll-node" }
78excerpt : " This guide will walk through how to use Scroll's bridge for ERC20s that need custom functionality using the Custom Gateway."
89---
910
You can’t perform that action at this time.
0 commit comments