Before proceeding, you need to install Node.js (we'll use v16.x) and the npm package manager. You can download directly from Node.js or in your terminal:
# You can use homebrew (https://docs.brew.sh/Installation)$brewinstallnode# Or you can use nvm (https://github.com/nvm-sh/nvm)$nvminstallnode
You can verify that everything is installed correctly by querying the version for each package:
If you haven't already, you will also need to install Uptick if you plan on deploying your smart contracts locally. Check this document for the full instructions.
Create Hardhat Project
To create a new project, navigate to your project directory and run:
Following the prompts should create a new project structure in your directory. Consult the Hardhat config page for a list of configuration options to specify in hardhat.config.js. Most importantly, you should set the defaultNetwork entry to point to your desired JSON-RPC network:
Local Node
Testnet
To ensure you are targeting the correct network, you can query for a list of accounts available to you from your default network provider:
Deploying a Smart Contract
You will see that a default smart contract, written in Solidity, has already been provided under contracts/Greeter.sol:
This contract allows you to set and query a string greeting. Hardhat also provides a script to deploy smart contracts to a target network; this can be invoked via the following command, targeting your default network:
Hardhat also lets you manually specify a target network via the --network <your-network> flag:
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract Greeter {
string private greeting;
constructor(string memory _greeting) {
console.log("Deploying a Greeter with greeting:", _greeting);
greeting = _greeting;
}
function greet() public view returns (string memory) {
return greeting;
}
function setGreeting(string memory _greeting) public {
console.log("Changing greeting from '%s' to '%s'", greeting, _greeting);
greeting = _greeting;
}
}
npx hardhat run scripts/sample-script.js
npx hardhat run --network http://localhost:8545 scripts/sample-script.js
npx hardhat run --network https://json-rpc.origin.uptick.network scripts/sample-script.js
$ npx hardhat test
Compiling 1 file with 0.8.4
Compilation finished successfully
Greeter
Deploying a Greeter with greeting: Hello, world!
Changing greeting from 'Hello, world!' to 'Hola, mundo!'
✓ Should return the new greeting once it's changed (803ms)
1 passing (805ms)