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
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ Address of L1 Beacon-node HTTP endpoint to use.

<Tabs items={['Syntax', 'Example', 'Environment Variable']}>
<Tabs.Tab>`--l1.beacon=<value>`</Tabs.Tab>
<Tabs.Tab>`--l1.beacon="127.0.0.1:3500"`</Tabs.Tab>
<Tabs.Tab>`OP_NODE_L1_BEACON="127.0.0.1:3500"`</Tabs.Tab>
<Tabs.Tab>`--l1.beacon="http://127.0.0.1:3500"`</Tabs.Tab>
<Tabs.Tab>`OP_NODE_L1_BEACON="http://127.0.0.1:3500"`</Tabs.Tab>
</Tabs>

### l1.beacon.fetch-all-sidecars
Expand Down Expand Up @@ -211,7 +211,7 @@ Trust the L1 RPC, sync faster at risk of malicious/buggy RPC providing bad or in

### l2

Address of L2 Engine JSON-RPC endpoints to use (engine and eth namespace required).
Address of L2 Engine JSON-RPC endpoints to use (engine and eth namespace required). This is referred to as `authrpc` by Geth and Reth.

<Tabs items={['Syntax', 'Example', 'Environment Variable']}>
<Tabs.Tab>`--l2=<value>`</Tabs.Tab>
Expand Down
4 changes: 2 additions & 2 deletions pages/builders/node-operators/tutorials/mainnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ Once you've started `op-geth`, you can start `op-node`.
Set the following environment variables:

```bash
export L1_RPC_URL=... # URL for the L1 node to sync from
export L1_RPC_URL=... # URL for the L1 node to sync from. If your L1 RPC is a local node, the most common URL is http://127.0.0.1:8545
export L1_RPC_KIND=... # RPC type (alchemy, quicknode, infura, parity, nethermind, debug_geth, erigon, basic, any)
export L1_BEACON_URL=... # URL address for the L1 Beacon-node HTTP endpoint to use.
export L1_BEACON_URL=... # URL address for the L1 Beacon-node HTTP endpoint to use. If your L1 Beacon is a local node, the most common URL is http://127.0.0.1:3500
```

{<h3>Start op-node</h3>}
Expand Down
4 changes: 2 additions & 2 deletions pages/builders/node-operators/tutorials/testnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ cp /path/to/jwt.txt .
Set the following environment variables:

```bash
export L1_RPC_URL=... # URL for the L1 node to sync from
export L1_RPC_URL=... # URL for the L1 node to sync from. If your L1 RPC is a local node, the most common URL is http://127.0.0.1:8545
export L1_RPC_KIND=... # RPC type (alchemy, quicknode, infura, parity, nethermind, debug_geth, erigon, basic, any)
export L1_BEACON_URL=... # URL address for the L1 Beacon-node HTTP endpoint to use.
export L1_BEACON_URL=... # URL address for the L1 Beacon-node HTTP endpoint to use. If your L1 Beacon is a local node, the most common URL is http://127.0.0.1:3500
```

{<h3>Start op-node</h3>}
Expand Down