56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import * as dotenv from "dotenv";
|
|
|
|
import { HardhatUserConfig } from "hardhat/config";
|
|
import { NetworksUserConfig } from "hardhat/types";
|
|
|
|
import "@nomicfoundation/hardhat-foundry";
|
|
import "hardhat-deploy";
|
|
import "@nomiclabs/hardhat-etherscan";
|
|
import "@nomiclabs/hardhat-ethers";
|
|
import "@nomiclabs/hardhat-waffle";
|
|
import "hardhat-gas-reporter";
|
|
import "solidity-docgen";
|
|
|
|
dotenv.config();
|
|
const { SEPOLIA_URL, PRIVATE_KEY, ETHERSCAN_API_KEY } = process.env;
|
|
|
|
const getNetworkConfig = (): NetworksUserConfig | undefined => {
|
|
if (SEPOLIA_URL && PRIVATE_KEY) {
|
|
return {
|
|
sepolia: {
|
|
url: SEPOLIA_URL,
|
|
accounts: [PRIVATE_KEY],
|
|
forking: {
|
|
url: SEPOLIA_URL,
|
|
},
|
|
verify: {
|
|
etherscan: {
|
|
apiKey: ETHERSCAN_API_KEY,
|
|
apiUrl: "https://api-sepolia.etherscan.io",
|
|
},
|
|
},
|
|
},
|
|
localhost_integration: {
|
|
url: "http://localhost:8545",
|
|
},
|
|
};
|
|
}
|
|
return undefined;
|
|
};
|
|
|
|
// 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(),
|
|
};
|
|
|
|
export default config;
|