Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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