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 96
96
"guides" : " Guides" ,
97
97
"contractDeploymentTutorial" : " Contract Deployment Tutorial" ,
98
98
"crossChainInteraction" : " Scroll Messenger Cross-chain Interaction" ,
99
+ "runningNode" : " Running a Scroll Node" ,
99
100
"bridgingERC20TokenThroughCustomGateway" : " Bridge an ERC20 through the Custom Gateway" ,
100
101
"bridgingERC721NftThroughCustomGateway" : " Bridging ERC721 NFT through Custom Gateway" ,
101
102
"bridgingERC1155ThroughCustomGateway" : " Bridging ERC1155 through Custom Gateway" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export type Props = {
8
8
title? : string
9
9
}
10
10
11
- const { type = " note" , title = type } = Astro .props as Props
11
+ const { type = " note" , title } = Astro .props as Props
12
12
13
13
// SVG icon paths based on GitHub Octicons
14
14
const icons = {
@@ -26,9 +26,13 @@ const icons = {
26
26
</span >
27
27
</div >
28
28
<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
+ }
32
36
<slot />
33
37
</section >
34
38
</aside >
Original file line number Diff line number Diff line change @@ -149,6 +149,10 @@ export const getSidebar = () => {
149
149
title : t ( "sidebar.developers.bridgingERC20TokenThroughCustomGateway" ) ,
150
150
url : formatUrl ( "developers/guides/bridge-erc20-through-the-custom-gateway" ) ,
151
151
} ,
152
+ {
153
+ title : t ( "sidebar.developers.runningNode" ) ,
154
+ url : formatUrl ( "developers/guides/running-a-scroll-node" ) ,
155
+ } ,
152
156
// {
153
157
// title: t("sidebar.developers.bridgingERC721NftThroughCustomGateway"),
154
158
// url: formatUrl("developers/guides/"),
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ date: Last Modified
4
4
title : " Bridge ERC20 through the Custom Gateway"
5
5
lang : " en"
6
6
permalink : " developers/guides/bridge-erc20-through-the-custom-gateway"
7
+ whatsnext : { "Running a Scroll Node": "/developers/guides/running-a-scroll-node" }
7
8
excerpt : " This guide will walk through how to use Scroll's bridge for ERC20s that need custom functionality using the Custom Gateway."
8
9
---
9
10
You can’t perform that action at this time.
0 commit comments