Skip to content

Commit 6e3b1bb

Browse files
committed
chore: remove unused network config, use localhost default
1 parent 4b6c3b7 commit 6e3b1bb

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

hardhat.config.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,6 @@ const config: HardhatUserConfig = {
134134
},
135135
hardfork: 'london',
136136
},
137-
local: {
138-
chainId: 1337,
139-
url: 'http://127.0.0.1:8545',
140-
gasPrice: 300000000000, // 300 gwei
141-
},
142137
},
143138
etherscan: {
144139
apiKey: process.env.ETHERSCAN_API_KEY,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"clean": "rm -rf build/ cache/ dist/",
8282
"compile": "hardhat compile",
8383
"deploy": "yarn build && scripts/predeploy && hardhat migrate",
84-
"deploy-local": "yarn deploy --force --network local",
84+
"deploy-localhost": "yarn deploy --force --network localhost",
8585
"deploy-rinkeby": "yarn deploy --force --network rinkeby --graph-config config/graph.rinkeby.yml",
8686
"deploy-goerli": "yarn deploy --force --network goerli --graph-config config/graph.goerli.yml",
8787
"predeploy": "scripts/predeploy",

0 commit comments

Comments
 (0)