Hardhat
Using Hardhat for StratoVM Development
Configuring Hardhat for StratoVM
import { HardhatUserConfig } from "hardhat/config";
import "@nomiclabs/hardhat-ethers";
const config: HardhatUserConfig = { networks: {
/* For StratoVM Sepolia Testnet "stratovm-sepolia":
{ url: "https://rpc.stratovm.io",
accounts: [process.env.PRIVATE_KEY as string],
gasPrice: 1000000000,},
// For local development environment "stratovm-local":
{ url: "http://localhost:8545",
accounts: [process.env.PRIVATE_KEY as string],
gasPrice: 1000000000, }, },
defaultNetwork: "stratovm-local",};
export default config; */Your Smart Contracts on Superseed Testnet
Deployment
Verification
Last updated