Skip to content
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
2 changes: 1 addition & 1 deletion components/Search/docsearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion content/OpProposerDescriptionShort.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion notes/kapa-ai-assistant.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion pages/app-developers/transactions/statuses.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down