5 min read
Overview​
Developing applications involves juggling several moving pieces like front-ends, back-ends, and databases. But developing a decentralized application on a blockchain adds a few more elements like smart contracts and nodes that allow you to connect to the blockchain.Â
Managing these pieces can become arduous if you are just starting as a developer wanting to develop a decentralized blockchain application. Scaffold-ETH gives you a jump start with its application pack. In this guide, we will learn how to set up and use Scaffold-ETH.Â
Prerequisites
- Node.js.
- Yarn.
- Git.
- An Ethereum node.
- Terminal/cms (CLI).
What is Scaffold-ETH​
Scaffold-ETH is a framework to understand the workings of dApps, and it comes with a set of tools to make the Ethereum dApp building process faster and easier. The combination of tools used in Scaffold-ETH allows you to have a frontend for your smart contracts. The stack of tools for development are as follows:
- Solidity - The programming language to write smart contracts.
- Hardhat - A smart contract local environment tool to deploy and test smart contracts.
- React - JS framework to build the frontend.
- Ethers.js - Awesome Web3 JS library to interface with the blockchain.
- Ant - Which is used for UI but can be changed as per preference like Atomize, React bootstrap, etc.
Setting up Scaffold-ETH environment​
First of all, before getting started with Scaffold-ETH, your machine needs to have Yarn, Node.js, and Git installed.
Now, go to a directory where you would like to clone the Scaffold-ETH repository and follow these instructions.
Step one here is to clone the repository and install all the necessary packages; type the following in your terminal/cmd:
git clone https://github.com/scaffold-eth/scaffold-eth.git
cd scaffold-eth
yarn install
This will clone the repo, make the `scaffold-eth` your working directory, and install yarn packages.
Working with Scaffold-eth​
Scaffold-ETH comes with a demo contract and a front-end. Let us try to run that and understand what it does under the hood.
Type the following in your terminal/cmd window:
yarn chain
What this will do is start the Hardhat network, which is a local Ethereum network for development. Once the process is completed, you will see a message similar to this.
Now, let us try to deploy the contract, you can find a demo available at /packages/hardhat/contracts/YourContract.sol. Open a new terminal/cmd window, go to the scaffold-eth directory and type the following:
yarn deploy
Here, we are telling Hardhat to deploy the smart contract to the Hardhat local network, which we started in the last step. The deployment script can be found under /packages/hardhat/deploy/ 00_deploy_your_contract.js
You will see a message similar to this when the contract deploys.
Now that we have deployed the contract, it's time to fire up the application. To do so, open a third terminal window and type the following:
yarn start
This will launch the React app, which uses the local network and deployed contract. Once the server starts, the app runs on https://localhost:3000.
And it should look something like this.
We can now walk through the demo contract YourContract.sol which is working behind this frontend app.
pragma solidity >=0.8.0 <0.9.0;
//SPDX-License-Identifier: MIT
import "hardhat/console.sol";
//import "@openzeppelin/contracts/access/Ownable.sol"; //https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol
contract YourContract {
//event SetPurpose(address sender, string purpose);
string public purpose = "Building Unstoppable Apps!!!";
constructor() {
// what should we do on deploy?
}
function setPurpose(string memory newPurpose) public {
purpose = newPurpose;
console.log(msg.sender,"set purpose to",purpose);
//emit SetPurpose(msg.sender, purpose);
}
}
Line 1: Declaring Solidity version.
Line 2: Specifying SPDX license type, which is an addition after Solidity ^0.6.8.Â
Whenever the source code of a smart contract is made available to the public, these licenses can help resolve/avoid copyright issues. If you do not wish to specify any license type, you can use a special license UNLICENSED or simply skip the whole comment (it won’t result in an error, just a warning).
Line 4: Importing the Hardhat console contract (there is no contract; this is just to demo on how to import local contracts).
Line 7-11: Starting the contract YourContract and storing a string in the purpose variable.
Line 13-15: Example of contract constructor, which gets activated as soon as the contract is deployed.
Line 17-22: A function to take a new string as input and store it in newPurpose variable, then giving the value of newPurpose variable to the purpose variable, finally printing the string stored in the purpose variable.
Lets see this in action. On the homepage, you must see a message/string which we hard-coded in our contract.
We will change that by typing a new message in the setPurpose box and submit the transaction by clicking on send. This will store the new string in the newPurpose variable, which will be transferred to the purpose variable, ultimately displaying the new message on the page.
For example, here, we have set a new message as '>>>>>And keep building'
You can also connect this app with wallets like MetaMask by clicking the connect button on the top right. This shows an excellent example of connecting web apps with web3 wallets. Now, see how quickly we can set up QuickNode in the Scaffold-ETH setup.
Setting up QuickNode with Scaffold-eth​
We will set up a QuickNode Rinkeby endpoint; for that, first, set up a free QuickNode account here and create an Ethereum endpoint. Head to the hardhat.config.js file, which you will find under the /packages/hardhat directory. Then find the Rinkeby network, add the QuickNode HTTP URL and a new variable 'url' and comment out the other 'url' variable. It will look similar to the image below.
You can also refer to this guide on How to create and deploy a smart contract with Hardhat, to learn more about Hardhat and how to set up QuickNode with Hardhat.
Conclusion​
Congratulations, and thank you for making it here; I appreciate you! In this guide, you learned about Scaffold-ETH, how to install Scaffold-ETH and how to set it up. Special thanks to Austin Griffith for creating such a fantastic tool that enables us to kick start our dApp development journey. To find out about the ins and outs of Scaffold-ETH check out their official documentation.
Subscribe to our newsletter for more articles and guides on Ethereum. If you have any feedback, feel free to reach out to us via Twitter. You can always chat with us on our Discord community server, featuring some of the coolest developers you’ll ever meet :)