diff --git a/docs/learn/onchain-app-development/account-abstraction/account-abstraction-on-base-using-biconomy.mdx b/docs/learn/onchain-app-development/account-abstraction/account-abstraction-on-base-using-biconomy.mdx
index 1ebc1a566..622179f4c 100644
--- a/docs/learn/onchain-app-development/account-abstraction/account-abstraction-on-base-using-biconomy.mdx
+++ b/docs/learn/onchain-app-development/account-abstraction/account-abstraction-on-base-using-biconomy.mdx
@@ -38,11 +38,11 @@ This tutorial requires you to have a wallet. You can create a wallet by download
### Wallet funds
-To complete this tutorial, you will need to fund a wallet with ETH on Base Goerli.
+To complete this tutorial, you will need to fund a wallet with ETH on Base Sepolia.
The ETH is required for covering gas fees associated with deploying smart contracts to the network.
-- To fund your wallet with ETH on Base Goerli, visit a faucet listed on the [Base Faucets](https://docs.base.org/base-chain/tools/network-faucets) page.
+- To fund your wallet with ETH on Base Sepolia, visit a faucet listed on the [Base Faucets](https://docs.base.org/base-chain/tools/network-faucets) page.
## What is Biconomy?
@@ -151,20 +151,20 @@ cast wallet list
To deploy the smart contract, you can use the `forge create` command. The command requires you to specify the smart contract you want to deploy, an RPC URL of the network you want to deploy to, and the account you want to deploy with.
-Your wallet must be funded with ETH on the Base Goerli testnet to cover the gas fees associated with the smart contract deployment. Otherwise, the deployment will fail.
+Your wallet must be funded with ETH on the Base Sepolia testnet to cover the gas fees associated with the smart contract deployment. Otherwise, the deployment will fail.
To get testnet ETH, see the [prerequisites](#prerequisites).
-To deploy the smart contract to the Base Goerli testnet, run the following command:
+To deploy the smart contract to the Base Sepolia testnet, run the following command:
```bash
-forge create ./src/Counter.sol:Counter --rpc-url https://goerli.base.org --account deployer
+forge create ./src/Counter.sol:Counter --rpc-url https://sepolia.base.org --account deployer
```
When prompted, enter the password that you set earlier, when you imported your wallet's private key.
-After running the command above, the contract will be deployed on the Base Goerli test network. You can view the deployment status and contract by using a [block explorer](/base-chain/tools/block-explorers).
+After running the command above, the contract will be deployed on the Base Sepolia test network. You can view the deployment status and contract by using a [block explorer](/base-chain/tools/block-explorers).
## Setting up the Paymaster and Bundler
@@ -177,7 +177,7 @@ Add and register a Paymaster by completing the following steps:
1. Visit the sign in to the [Biconomy Dashboard](https://dashboard.biconomy.io/)
1. From the dashboard, select the **Paymasters** tab and click **Add your first Paymaster**
1. Provide a **Name** for your paymaster
-1. Select **Base Goerli** from the **Network** dropdown
+1. Select **Base Sepolia** from the **Network** dropdown
1. Click **Register**
You should now have a registered Biconomy paymaster.
@@ -217,7 +217,7 @@ Set up and fund the paymaster's gas tank by completing the following steps:
1. From the dashboard, select the **Bundlers** tab
-At the time of writing this tutorial, the Bundler service is still under development, however a **Bundler URL** is provided for testing out UserOperations on test networks. You can specify the chain ID **84531** to use the Bundler URL on **Base Goerli** testnet.
+At the time of writing this tutorial, the Bundler service is still under development, however a **Bundler URL** is provided for testing out UserOperations on test networks. You can specify the chain ID **84532** to use the Bundler URL on **Base Sepolia** testnet.
## Setting up the frontend