From 12c69aa8103ca3346872111f2708a23993bca2c9 Mon Sep 17 00:00:00 2001 From: Erhnysr Date: Mon, 6 Apr 2026 23:07:45 +0300 Subject: [PATCH] docs: clarify RPC usage in build app guide Adds a clarification note in the build app guide to help developers avoid common RPC misconfiguration issues when building on Base. --- docs/get-started/build-app.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/get-started/build-app.mdx b/docs/get-started/build-app.mdx index c292e60a8..16b180d17 100644 --- a/docs/get-started/build-app.mdx +++ b/docs/get-started/build-app.mdx @@ -544,3 +544,4 @@ Base is a fast, low-cost Ethereum L2 built to bring the next billion users oncha - **Batch read calls** — reduce RPC round trips by batching reads via viem's `multicall`. - **Optimistic updates** — update the UI before confirmation using TanStack Query's `onMutate` callback. - **Wagmi setup reference** — review the full [Wagmi setup guide](/base-account/framework-integrations/wagmi/setup) for additional configuration options. +> ⚠️ **Important:** Ensure you are using the correct RPC endpoint for Base (mainnet vs testnet). Incorrect configuration may result in failed transactions or unexpected behavior during development.