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
Prepare the environment
Install Node.js
sudo apt update
sudo apt install curl git
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt install nodejscurl -o- https://raw.githubusercontent.com/creationix/nvm/v0.35.2/install.sh | bash
nvm install 12
nvm use 12
nvm alias default 12
npm install npm --global Install Hardhat
Last updated