Contract Deployment Tutorial
The Blast Chain Mainnet allows anyone to deploy a smart contract. In this tutorial, you will learn how to deploy a contract on Blast using common tools for developing on Ethereum-compatible networks. This demo repo illustrates contract deployment with Hardhat and Foundry.
Got OWCT?
Before you start deploying your contract, make sure you have OWCT in your wallet to cover transaction fees. OWCT can be acquired through various exchanges or peer-to-peer transactions.
Initial setup
Add the Blast Chain to your Metamask wallet. Ensure you have some OWCT for transaction fees, which you can obtain through an exchange or peer-to-peer transaction.
Clone the repo using the command below:
Install dependencies and start the React app (you can copy all three lines in one go):
Correct installation opens up the Counter App at localhost:3000. You can test it by clicking on the +1 button several times.
Back in the CLI, install the necessary dependencies:
Populate the .env.sample
file with your ACCOUNT_PRIVATE_KEY
.
How to get your private key in MetaMask:
Ensure that you handle your private key securely to avoid exposing your assets to theft.
Copy the contents of the .env.sample
file to a new .env
file:
Hardhat smart contract
Next is the initialization of a project using Hardhat. Hardhat cannot initialize a sample project if there is an existing README file. To avoid clashes, rename any existing README.md
temporarily before initializing Hardhat.
Initialize a project with Hardhat:
npx hardhat init
.Next, (… To avoid failure … please go slow with this cli dialogue…),
The aim here is to achieve the following outcome:
So then,
Press
<ENTER>
to set the project root.Press
<ENTER>
again to accept addition of.gitignore
.Type
n
to reject installingsample project's dependencies
.The idea here is to postpone installing dependencies to later steps due to a possible version-related bug.
Open the
hardhat.config.js
file and paste the below code:Note that a different path to artifacts is added so that the React app can read the contract ABI within the
src
folder.
Add scripts
Create a new file, in the contracts folder, named
Counter.sol
:touch contracts/Counter.sol
.Copy the below code and paste it in the Counter contract code:
Create a new file in the scripts folder
deploy-counter.js
:touch scripts/deploy-counter.js
.Add the code below to the
deploy-counter.js
file:Before compiling the contract, you need to install the toolbox. You may need to change directory to install outside the project. Use this command:
Compile your contract code (i.e., go back to the project root in the CLI):
Now run the scripts:
Here’s an output example:
Counter contract deployed to https://blastchain.org/address/0x5FbDB2315678afecb367f032d93F642f64180aa3
Update frontend
The next step is to turn Counter.sol
into a dApp by importing the ethers
and the Counter
file, as well as logging the contract’s ABI.
Include the below code in the
App.js
file:Update the
counterAddress
to your deployed address.It is the hexadecimal number found at the tail-end of the output of the last
npx hardhat run ...
command and looks like this0x5FbDB2315678afecb367f032d93F642f64180aa3
.It must be pasted in the
App.js
to replaceyour-contract-address
. Be sure to use the deployed address from your own implementation!
Update frontend counter to read from blockchain. Include the below code in the
App.js
file:Also, to import
useEffect
, insert it like this:To be able to track a loader, add this to your state:
This is within the
App()
function.
Let frontend counter write to the blockchain by adding the below
requestAccount
andupdateCounter
functions:Place these two functions above the
readCounterValue()
function in theApp.js
file.Replace the
incrementCounter
function with this one:Update the increment button code to:
Now, run the Counter dApp by simply using npm start
in CLI at the project root.
Congratulations for reaching this far. You have successfully deployed a dApp on the Blast Chain.
Last updated