From 624b4b3e3741a4ee4e8b443ce9dd4f08a37ed497 Mon Sep 17 00:00:00 2001 From: ygd58 Date: Tue, 12 May 2026 12:23:44 +0200 Subject: [PATCH] docs(readme): add BASE_NODE_L1_ETH_RPC and BASE_NODE_L1_BEACON to Quick Start and Configuration --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1cbaad17d..32dd5e1a7 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,11 @@ Base is a secure, low-cost, developer-friendly Ethereum L2 built on Optimism's [ - For testnet: Use `.env.sepolia` 3. Configure your L1 endpoints in the appropriate `.env` file: ```bash + # For base-consensus (default reth client) + BASE_NODE_L1_ETH_RPC= + BASE_NODE_L1_BEACON= + + # For op-node (geth/nethermind clients) OP_NODE_L1_ETH_RPC= OP_NODE_L1_BEACON= OP_NODE_L1_BEACON_ARCHIVER= @@ -84,9 +89,11 @@ Supported clients: ### Required Settings - L1 Configuration: - - `OP_NODE_L1_ETH_RPC`: Your Ethereum L1 node RPC endpoint - - `OP_NODE_L1_BEACON`: Your L1 beacon node endpoint - - `OP_NODE_L1_BEACON_ARCHIVER`: Your L1 beacon archiver endpoint + - `BASE_NODE_L1_ETH_RPC`: Your Ethereum L1 node RPC endpoint (used by base-consensus, default reth client) + - `BASE_NODE_L1_BEACON`: Your L1 beacon node endpoint (used by base-consensus, default reth client) + - `OP_NODE_L1_ETH_RPC`: Your Ethereum L1 node RPC endpoint (used by op-node with geth/nethermind) + - `OP_NODE_L1_BEACON`: Your L1 beacon node endpoint (used by op-node with geth/nethermind) + - `OP_NODE_L1_BEACON_ARCHIVER`: Your L1 beacon archiver endpoint (used by op-node with geth/nethermind) - `OP_NODE_L1_RPC_KIND`: The type of RPC provider being used (default: "debug_geth"). Supported values: - `alchemy`: Alchemy RPC provider - `quicknode`: QuickNode RPC provider