Upskill 2 Part 2 (Hardhat): Smart Contract Compiling

Introduction  On the last blog post we have set up an initial environment, and created a new Hard hat project. For this blog we will be writing and compiling a smart contract on Hard hat. We will resume with the official hard hat documentation found here. Steps Assuming we’re still on the ‘hardhat-demo’ directory. Writing a Smart Contract Create a directory called ‘contracts’. mkdir contracts Create a file called ‘Token....

June 5, 2022 · Kenywil Tiu

Upskill 2 Part 1 (Hardhat): Concepts & Setup

Introduction  I have some practical experience with Solidity already, and was recommended by one of my colleague to try to supplement my knowledge with the Hardhat framework. I checked it out and would like to try it out and create a basic working smart contract. I will be following the official document of Hardhat found here. Hardhat Concepts Hardhat is composed of the following concepts. Tasks: There are commands that can be ran on the terminal, some are provided by Hardhat upon install (e....

June 4, 2022 · Kenywil Tiu