Skip to content

Commit

Permalink
Create resetchain.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
wcgcyx committed Feb 21, 2024
1 parent 86a629f commit 9178788
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions scripts/localdev/resetchain.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";

const config: HardhatUserConfig = {
networks: {
hardhat: {
hardfork: "shanghai",
mining: {
auto: false,
interval: 1200
},
chainId: 2502,
accounts: [],
},
localhost: {
url: "http://127.0.0.1:8502/",
}
},
solidity: "0.8.19",
};
export default config;

0 comments on commit 9178788

Please sign in to comment.