File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change 1- require ( "@nomicfoundation/hardhat-toolbox" ) ;
2-
31/** @type import('hardhat/config').HardhatUserConfig */
42const config = {
53 solidity : "0.8.24" ,
64 networks : {
7- hardhat : { } ,
5+ hardhat : {
6+ chainId : 31337
7+ } ,
88 sepolia : {
99 url : process . env . SEPOLIA_RPC_URL || `https://sepolia.infura.io/v3/${ process . env . INFURA_API_KEY } ` ,
1010 accounts : process . env . PRIVATE_KEY ? [ process . env . PRIVATE_KEY ] : [ ] ,
@@ -22,13 +22,6 @@ const config = {
2222 accounts : process . env . PRIVATE_KEY ? [ process . env . PRIVATE_KEY ] : [ ] ,
2323 } ,
2424 } ,
25- gasReporter : {
26- enabled : process . env . REPORT_GAS !== undefined ,
27- currency : "USD" ,
28- } ,
29- etherscan : {
30- apiKey : process . env . ETHERSCAN_API_KEY ,
31- } ,
3225} ;
3326
34- module . exports = config ;
27+ export default config ;
You can’t perform that action at this time.
0 commit comments