From 35d95b67fa674dd9930c00ba2a34b115751477aa Mon Sep 17 00:00:00 2001 From: Erhnysr Date: Thu, 9 Apr 2026 00:41:06 +0300 Subject: [PATCH] docs: add RPC configuration warning to deploy smart contracts guide Added a warning about RPC endpoint and network configuration before deploying smart contracts. --- docs/get-started/deploy-smart-contracts.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/get-started/deploy-smart-contracts.mdx b/docs/get-started/deploy-smart-contracts.mdx index 84d7e6ca9..6358053cf 100644 --- a/docs/get-started/deploy-smart-contracts.mdx +++ b/docs/get-started/deploy-smart-contracts.mdx @@ -141,3 +141,4 @@ This will return the initial value of the Counter contract's `number` storage va - Use [wagmi](https://wagmi.sh) or [viem](https://viem.sh) to connect your frontend to your contracts. - Learn more about interacting with your contracts in the command line using Foundry from our [Foundry tutorial](/learn/foundry/deploy-with-foundry). +> ⚠️ **Important:** Before deploying smart contracts, ensure your RPC endpoint and network configuration match the intended environment (Base mainnet vs testnet). Misconfiguration may lead to failed deployments or unexpected contract behavior.