Hardhat
Hardhat is an EVM developer environment helping developers quickly and easily create, test, and deploy smart contracts. Hardhat is also home to a vibrant community offering a number of different plugins.
Setup for a SKALE Chain
-
Hardhat project setup
Terminal window mkdir hardhat-skale && cd hardhat-skale && npx hardhat init -
hardhat.config setup
require("@nomicfoundation/hardhat-toolbox");require("@nomiclabs/hardhat-etherscan");const dotenv = require("dotenv");dotenv.config();module.exports = {solidity: {version: "0.8.19",settings: {optimizer: {enabled: true,runs: 50,},},},networks:{nebula: {url: "https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet",chainId: 37084624, // Replace with the correct chainId for the "nebula" networkaccounts: [process.env.PK], // Add private keys or mnemonics of accounts to use},calypso: {url: "https://testnet.skalenodes.com/v1/giant-half-dual-testnet",chainId: 974399131, // Replace with the correct chainId for the "calypso" networkaccounts: [process.env.PK], // Add private keys or mnemonics of accounts to use},europa: {url: "https://testnet.skalenodes.com/v1/juicy-low-small-testnet",chainId: 1444673419, // Replace with the correct chainId for the "europa" networkaccounts: [process.env.PK], // Add private keys or mnemonics of accounts to use},titan: {url: "https://testnet.skalenodes.com/v1/aware-fake-trim-testnet",chainId: 1020352220, // Replace with the correct chainId for the "titan" networkaccounts: [process.env.PK], // Add private keys or mnemonics of accounts to use}},etherscan: {apiKey: {nebula: "does not matter as long it has a non empty string",calypso: "does not matter as long it has a non empty string",europa: "does not matter as long it has a non empty string",titan: "does not matter as long it has a non empty string",},customChains: [{network: "nebula",chainId: 37084624,urls: {apiURL:"https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com/api",browserURL:"https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com/",},},{network: "calypso",chainId: 974399131,urls: {apiURL:"https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/api",browserURL:"https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/",},},{network: "europa",chainId: 1444673419,urls: {apiURL:"https://juicy-low-small-testnet.explorer.testnet.skalenodes.com/api",browserURL:"https://juicy-low-small-testnet.explorer.testnet.skalenodes.com/",},},{network: "titan",chainId: 1020352220,urls: {apiURL:"https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com/api",browserURL:"https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com/",},},],},}; -
Create a smart contract - contracts/MockContract.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.19;import "@openzeppelin/contracts/token/ERC721/ERC721.sol";contract MockContract is ERC721 {uint256 private _nextTokenId;constructor(address initialOwner)ERC721("MyToken", "MTK"){}function safeMint(address to) public {uint256 tokenId = _nextTokenId++;_safeMint(to, tokenId);}} -
Create a deploy script - scripts/deploy.js
const hre = require("hardhat");async function main() {const myAddress = "0x_some_address"const token = await hre.ethers.deployContract("MockContract", [myAddress]);console.log(token.address);}main().catch((error) => {console.error(error);process.exitCode = 1;}); -
Deploy contract
Terminal window npx hardhat run scripts/deploy.js --network <network name you defined on hardhat.config> -
Verify contract
Terminal window npx hardhat verify --network <network name> <deployed contract address> <contract deployed constructor arguments>
Additional Hardhat Documentation
Click here for the official documentation.