mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-23 03:28:21 +00:00
16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import { HardhatUserConfig } from "hardhat/config";
|
|
import "@nomicfoundation/hardhat-toolbox";
|
|
|
|
const config: HardhatUserConfig = {
|
|
solidity: "0.8.18",
|
|
networks: {
|
|
hardhat: {},
|
|
optimismGoerli: {
|
|
url: `https://optimism-goerli.infura.io/v3/${process.env.INFURA_API_KEY}`,
|
|
// accounts: [`0x${process.env.ACCOUNT_KEY}`],
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|