Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
hardhat: remove hardcoded fees
Browse files Browse the repository at this point in the history
This should make deployment easier in most cases.
  • Loading branch information
sveitser committed Nov 11, 2022
1 parent fcc45d7 commit 59a9ba0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,16 @@ const config: HardhatUserConfig = {
},
rinkeby: {
url: process.env.RINKEBY_URL,
gasPrice: 2_000_000_000,
accounts: { mnemonic: process.env.RINKEBY_MNEMONIC },
tags: ["public"],
},
goerli: {
url: process.env.GOERLI_URL,
gasPrice: 2_000_000_000,
accounts: { mnemonic: process.env.GOERLI_MNEMONIC },
tags: ["public"],
},
arbitrum_goerli: {
url: "https://goerli-rollup.arbitrum.io/rpc",
gasPrice: 100_000_000,
accounts: { mnemonic: process.env.GOERLI_MNEMONIC },
},
localhost: {
Expand Down

0 comments on commit 59a9ba0

Please sign in to comment.