Skip to content

Commit

Permalink
bad link, footer link fix, sidebar link fixes, fix quickstart links
Browse files Browse the repository at this point in the history
  • Loading branch information
dghelm committed Aug 7, 2023
1 parent 2831036 commit 5cdea5f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/components/Footer/helper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export const resourceList = [
href: "https://scroll.io/blog",
},
{
name: "User Guide",
href: "https://guide.scroll.io/",
name: "Documentation",
href: "https://docs.scroll.io/",
},
{
name: "Press Kit",
Expand Down
7 changes: 5 additions & 2 deletions src/config/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,12 @@ export const getSidebar = () => {
},
],
},
{ title: t("sidebar.gettingStarted.scrollSepoliaBlockExplorer"), url: "https://blockscout.scroll.io/" },
{
title: t("sidebar.gettingStarted.scrollSepoliaBlockExplorer"),
url: "https://sepolia-blockscout.scroll.io/",
},
{ title: t("sidebar.gettingStarted.sepoliaBlockExplorer"), url: "https://sepolia.etherscan.io/" },
{ title: t("sidebar.gettingStarted.rollupExplorer"), url: "https://scroll.io/alpha/rollupscan" },
{ title: t("sidebar.gettingStarted.rollupExplorer"), url: "https://scroll.io/rollupscan" },
],
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ All Gateway contracts will form the message and send it to the `L1ScrollMessenge
<Aside type="tip" title="">
Users can also bypass the **`L1ScrollMessenger`** and send messages directly to the **`L1MessageQueue`**. If a message
is sent via the `L1MessageQueue`, the transaction's sender will be the address of the user sending the transaction,
not the address of the `L1ScrollMessenger`. Learn more about sending arbitrary messages in the
[the-scroll-messenger.md](the-scroll-messenger.md "mention") documentation.&#x20;
not the address of the `L1ScrollMessenger`. Learn more about sending arbitrary messages in the [Scroll
Messenger](/en/developers/l1-and-l2-bridging/the-scroll-messenger) article.
</Aside>

When a new block gets created on L1, the Watcher will detect the message on the `L1MessageQueue` and will pass it to the Relayer service, which will submit the transaction to the L2 via the l2geth node. Finally, the l2geth node will pass the transaction to the `L2ScrollMessagner` contract for execution on L2.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ date: Last Modified
title: "Transaction Fees on Scroll"
lang: "en"
permalink: "developers/transaction-fees-on-scroll"
whatsnext: { "Developer Quickstart": "/developers/developer-quickstart" }
# excerpt: ""
---

Expand Down
2 changes: 1 addition & 1 deletion src/pages/en/home/QuickStart.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const toolList = [
<div class="tools">
{
toolList.map(({ icon, name, quickstartAnchor }) => (
<a href={`developers/developer-quickstart#${quickstartAnchor}`} class="tools-item">
<a href={`/en/developers/developer-quickstart#${quickstartAnchor}`} class="tools-item">
<figure>
<img src={icon} alt={name} />
</figure>
Expand Down

0 comments on commit 5cdea5f

Please sign in to comment.