How to Deploy
Remix or Hardhat
Last updated
Remix or Hardhat
Last updated
Step 1: Set Up Metamask for Base Sepolia
Open Metamask and add a new network.
Network details:
Network Name: Base Sepolia
RPC URL: https://sepolia.base.org
Chain ID: 11155111
Symbol: ETH
Block Explorer: https://sepolia.etherscan.io
Step 2: Get Sepolia ETH
Go to .
Connect your wallet and request test ETH to cover gas fees.
Step 3: Deploying with Remix
Open Remix IDE.
Create a new file and write or paste your Solidity contract. Example:
Compile the contract using the Solidity compiler.
Ensure the Solidity version matches the one in the code.
Switch to the Deploy & Run Transactions tab.
Select Injected Web3 as the environment, connecting it to Metamask.
Click Deploy and confirm the transaction in Metamask.
Step 4: Verify Deployment
Check the status on Base Sepolia Explorer using your wallet address or transaction hash.
Step 1: Install Node.js and Hardhat
Open your terminal and run the following command to install Hardhat:
Step 2: Create a Hardhat Project
Initialize your Hardhat project:
Choose "Create an empty hardhat.config.js" for simplicity.
Step 3: Write the Contract
Create a file SimpleStorage.sol
in the contracts
folder with this code:
Step 4: Configure Hardhat for Base Sepolia
In your hardhat.config.js
file, add the Base Sepolia network:
Make sure to add your wallet private key in a .env
file:
Step 5: Deploy the Contract
Create a deploy.js
file inside the scripts
folder:
Step 6: Deploy via Hardhat
Run the following command to deploy your contract to Base Sepolia:
Step 7: Verify Deployment
Check your contract on the Base Sepolia Explorer.
Install Node.js from .