Deploy your Smart Contracts
To deploy your smart contracts to a live network, there are a few things you need to adjust.
1. Configure your network
Scaffold-ETH 2 comes with a predefined networks. You can also add your custom network in:
- Hardhat =>
packages/hardhat/hardhat.config.ts
- Foundry =>
packages/foundry/foundry.toml
Here are the Alchemy docs for information on specific networks.
2. Generate a new account or add one to deploy the contract(s) from.
The deployer account is the account that will deploy your contracts. Additionally, the deployer account will be used to execute any function calls that are part of your deployment script.
You can generate a random account / private key or add the private key of your crypto wallet.
To create a random account and add the DEPLOYER_PRIVATE_KEY
to the .env
file, run:
yarn generate
If you prefer to manually set your own private key, need to add DEPLOYER_PRIVATE_KEY=yourWalletPrivateKey
to packages/hardhat/.env
/ packages/foundry/.env
file.
You can check the configured (generated or manually set) account and balances with:
yarn account
3. Deploy your smart contract(s)
By default yarn deploy
will deploy contract to the local network. You can change defaultNetwork
in:
- Hardhat =>
hardhat.config.ts
- Foundry =>
foundry.toml
Run the command below to deploy the smart contract to the target network. Make sure to have some funds in your deployer account to pay for the transaction.
yarn deploy --network network_name
eg: yarn deploy --network sepolia
4. Verify your smart contract
You can verify your smart contract on Etherscan by running:
yarn verify --network network_name
Configuration of Third-Party Services for Production-Grade Apps.
By default, Scaffold-ETH 2 provides predefined API keys for popular services such as Alchemy and Etherscan. This allows you to begin developing and testing your applications more easily, avoiding the need to register for these services.
For production-grade applications, it's recommended to obtain your own API keys (to prevent rate limiting issues). You can configure these at:
ALCHEMY_API_KEY
variable inpackages/hardhat/.env
andpackages/nextjs/.env.local
. You can create API keys from the Alchemy dashboard.ETHERSCAN_API_KEY
variable inpackages/hardhat/.env
|packages/foundry/.env
with your generated API key. You can get your key here.
It's recommended to store env's for nextjs in Vercel/system env config for live apps and use .env.local for local testing.