Quick Setup
We have to make sure that all relevant tools are installed in the environment before proceeding to Semantic SBT contract.
Hardhat β a tool for contract compilation and deployment
Hardhat
is a development environment for Ethereum-compatible blockchains. It can automate, streamline and simplify repetitive tasks when building smart contracts and Dapps. It also provides developers with a built-in Hardhat network, a local Ethereum network specifically for deploying, testing, and debugging smart contracts
Prepare the environment
Install Node.js
Hardhat is written in JavaScript. So we should make sure that Node.js (>=12.0) is installed.
Ubuntu
MacOS
Install Hardhat
We can start installing Hardhat after the Node environment is ready.
Last updated