Deploying Contracts
Deploying Contracts using Hardhat
Last updated
Was this helpful?
Deploying Contracts using Hardhat
Last updated
Was this helpful?
You can deploy your contracts in 3Base using hardhat.
Hardhat is a development environment for Ethereum. It helps developer manage and automate building smart contracts. It consists of different components for editing, compiling, debugging and deploying your smart contracts and dApps, all of which work together to create a complete development environment.
Create a directory for you project
Initialize the project with hardhat
Choose the Configuration of your hardhat project, a sample typescript project(recommended)
Add your contracts to the contracts folder or
Create a contracts directory, if there is none
Create your contract in the contracts directory
Create a secrets.json file to store your private key
Add your private key to secrets.json
Add secrets.json to .gitignore, to avoid pushing your private key to github
Modify the hardhat.config.ts file as below
Compile your contract
Create a scripts directory and create your deployment scripts
Create a deployment script, like the one below
Deploy your_contract.sol using the command below