From 2ba09b6829ba4f6997d3faf7d73455e2bbfba56d Mon Sep 17 00:00:00 2001 From: comfsrt <155266597+comfsrt@users.noreply.github.com> Date: Mon, 10 Feb 2025 16:45:52 +0100 Subject: [PATCH 1/5] Update docsearch.tsx --- components/Search/docsearch.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Search/docsearch.tsx b/components/Search/docsearch.tsx index 2e826073d..902a5c34c 100644 --- a/components/Search/docsearch.tsx +++ b/components/Search/docsearch.tsx @@ -83,7 +83,7 @@ export function DocSearch({ (e.metaKey /* for Mac */ || /* for non-Mac */ e.ctrlKey)) ) { e.preventDefault(); - // prevent to scroll to top + // prevent scrolling to the top input.current.focus({ preventScroll: true }); } else if (e.key === "Escape") { setShow(false); From 03da73b8b6cf4d83682d7f20e4d1c702c0dc871d Mon Sep 17 00:00:00 2001 From: comfsrt <155266597+comfsrt@users.noreply.github.com> Date: Mon, 10 Feb 2025 16:46:18 +0100 Subject: [PATCH 2/5] Update OpProposerDescriptionShort.md --- content/OpProposerDescriptionShort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/OpProposerDescriptionShort.md b/content/OpProposerDescriptionShort.md index babd3da55..7e5339631 100644 --- a/content/OpProposerDescriptionShort.md +++ b/content/OpProposerDescriptionShort.md @@ -1 +1 @@ -`op-proposer` is the service that submits the output roots to the L1. This is to enable trustless execution of L2-to-L1 messaging and creates the view of the L2 state from the L1's perspective. +`op-proposer` is the service that submits the output roots to the L1. This is to enable trustless execution of L2-to-L1 messaging and create the view of the L2 state from the L1's perspective. From 559a6293f6d38a52c69353b5d0da4900c0794b94 Mon Sep 17 00:00:00 2001 From: comfsrt <155266597+comfsrt@users.noreply.github.com> Date: Mon, 10 Feb 2025 16:46:41 +0100 Subject: [PATCH 3/5] Update kapa-ai-assistant.md --- notes/kapa-ai-assistant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/kapa-ai-assistant.md b/notes/kapa-ai-assistant.md index a0c4999a7..0410f59ee 100644 --- a/notes/kapa-ai-assistant.md +++ b/notes/kapa-ai-assistant.md @@ -10,4 +10,4 @@ Currently the website has the modal enabled by a custom button component located ## Enabling/disabling the feature -The kapa AI assistant con be toggled on and off on the website by toggling the **`enable_docs_ai_widget`** feature flag. +The kapa AI assistant can be toggled on and off on the website by toggling the **`enable_docs_ai_widget`** feature flag. From daa99bd2b536f3e9b3f2a9f49f2efc81bae30148 Mon Sep 17 00:00:00 2001 From: comfsrt <155266597+comfsrt@users.noreply.github.com> Date: Mon, 10 Feb 2025 16:47:30 +0100 Subject: [PATCH 4/5] Update statuses.mdx --- pages/app-developers/transactions/statuses.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/app-developers/transactions/statuses.mdx b/pages/app-developers/transactions/statuses.mdx index ed635a400..de6dfa5de 100644 --- a/pages/app-developers/transactions/statuses.mdx +++ b/pages/app-developers/transactions/statuses.mdx @@ -11,7 +11,7 @@ Understanding these statuses can help you troubleshoot issues, build safer appli ## Pending -**Instant after sending to Sequencer** +**Instant after sending to the Sequencer** A transaction is considered "pending" when it has been sent to the Sequencer but has not yet been included in a block. This is the first status a transaction will have after being sent to the Sequencer. From 0e51a3d0c0f13830b9bf63becc2396fc9e00082d Mon Sep 17 00:00:00 2001 From: comfsrt <155266597+comfsrt@users.noreply.github.com> Date: Mon, 10 Feb 2025 16:48:13 +0100 Subject: [PATCH 5/5] Update sdk-trace-txns.mdx --- pages/app-developers/tutorials/sdk-trace-txns.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/app-developers/tutorials/sdk-trace-txns.mdx b/pages/app-developers/tutorials/sdk-trace-txns.mdx index 0dfd8da99..a1041e978 100644 --- a/pages/app-developers/tutorials/sdk-trace-txns.mdx +++ b/pages/app-developers/tutorials/sdk-trace-txns.mdx @@ -44,7 +44,7 @@ Since viem is a [Node.js](https://nodejs.org/en/) library, you'll need to create ## Add RPC URLs to your environment -You'll be using the `getTransactionReceipt` function from the viem library during this tutorial. This function use event queries to retrieve the receipt for a deposit or withdrawal. +You'll be using the `getTransactionReceipt` function from the viem library during this tutorial. This function uses event queries to retrieve the receipt for a deposit or withdrawal. Since this function uses large event queries, you'll need to use an RPC provider like [Alchemy](https://alchemy.com) that supports indexed event queries. Grab an L1 and L2 RPC URL for Sepolia and OP Sepolia, respectively.