π·ββοΈTesting with Hardhat
A step-by-step guide for creating a Hardhat project and deploying it to your private StealthTest environment.
Last updated
Was this helpful?
Was this helpful?
require("@nomicfoundation/hardhat-toolbox");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: "0.8.18",
defaultNetwork: "stealthtest",
networks: {
stealthtest: {
url: "https://5937ec2d-1c79-41b8-a5d1-c288e0e2efc7.ethereum.staging-42.nameless.io",
chainId: 148073,
accounts: ["0xf5d82a795ec5c5751161334378841e7a765182a047ee071bdfb1184f67b78d76"],
},
},
};