Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 5 additions & 24 deletions LogRocket/20220615-random/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,14 @@ task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
}
});

// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more


// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more

/**
* @type import('hardhat/config').HardhatUserConfig
*/

module.exports = {
solidity: "0.8.4",
/*

networks: {
"local-devnode": {
url: "http://localhost:8545",
accounts: { mnemonic: "test test test test test test test test test test test junk" }
},
"optimistic-kovan": {
url: "https://kovan.optimism.io",
accounts: { mnemonic: process.env.MNEMONIC }
},
"optimism": {
url: "https://mainnet.optimism.io",
accounts: { mnemonic: process.env.MNEMONIC }
"goerli": {
url: "https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161",
accounts: ["56ff5f24ad152eb16c5e722e9537e58324617c2c39044f20f20a5e8841a2fac8"]
}
}
*/

};
Loading