UNPKG

hardhat-ignition-deploy-everything

Version:

A hardhat plugin providing the ability to list and manage a bunch of hardhat-ignition deployments to execute at once (even conditional deployment modules)

39 lines (37 loc) 1.19 kB
require("@nomicfoundation/hardhat-toolbox"); require("hardhat-enquirer-plus"); require("hardhat-common-tools"); require("hardhat-blueprints"); require("hardhat-ignition-deploy-everything"); /** @type import('hardhat/config').HardhatUserConfig */ module.exports = { solidity: "0.8.24", networks: { hardhat: { chainId: 31337, accounts: { mnemonic: "dentist whale pattern drastic time black cigar bike person destroy punch hungry", accountsBalance: "10000000000000000000000", count: 100 } }, testnet: { chainId: 80002, url: "https://rpc-amoy.polygon.technology", accounts: { mnemonic: "dentist whale pattern drastic time black cigar bike person destroy punch hungry", // mnemonic: process.env.MNEMONIC || 'invalid-mnemonic-please-set-one', count: 100 } }, mainnet: { chainId: 137, url: "https://polygon-mainnet.infura.io", accounts: { mnemonic: "dentist whale pattern drastic time black cigar bike person destroy punch hungry", // mnemonic: process.env.MNEMONIC || 'invalid-mnemonic-please-set-one', count: 100 } } } };