rln-contract/hardhat.config.ts

48 lines
1022 B
TypeScript
Raw Normal View History

2022-06-23 13:36:10 +00:00
import * as dotenv from "dotenv";
import { HardhatUserConfig } from "hardhat/config";
import { NetworksUserConfig } from "hardhat/types";
import "hardhat-deploy";
import "@nomiclabs/hardhat-ethers";
2022-06-23 13:36:10 +00:00
import "@nomiclabs/hardhat-waffle";
import "hardhat-gas-reporter";
import "solidity-coverage";
dotenv.config();
const { SEPOLIA_URL, PRIVATE_KEY } = process.env;
const getNetworkConfig = (): NetworksUserConfig | undefined => {
if (SEPOLIA_URL && PRIVATE_KEY) {
return {
goerli: {
url: SEPOLIA_URL,
accounts: [PRIVATE_KEY],
forking: {
url: SEPOLIA_URL,
},
},
localhost_integration: {
url: "http://localhost:8545",
},
};
2022-06-23 13:36:10 +00:00
}
return undefined;
};
2022-06-23 13:36:10 +00:00
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: "0.8.15",
},
],
},
networks: getNetworkConfig(),
2022-06-23 13:36:10 +00:00
};
export default config;