Skip to content

Commit

Permalink
refactor: hardhat config
Browse files Browse the repository at this point in the history
  • Loading branch information
juliopavila committed Aug 27, 2024
1 parent 7299bc4 commit ac1f57a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion deploy/01_mastercopy_module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { HardhatRuntimeEnvironment } from "hardhat/types"
import { deployFactories, deployMastercopy } from "@gnosis-guild/zodiac-core"

import createAdapter from "./eip1193"
import MODULE_CONTRACT_ARTIFACT from "../build/artifacts/contracts/MyModule.sol/MyModule.json"
import MODULE_CONTRACT_ARTIFACT from "../artifacts/contracts/MyModule.sol/MyModule.json"

const FirstAddress = "0x0000000000000000000000000000000000000001"

Expand Down
2 changes: 1 addition & 1 deletion deploy/03_proxy_module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { DeployFunction } from "hardhat-deploy/types"
import { HardhatRuntimeEnvironment } from "hardhat/types"

import MODULE_CONTRACT_ARTIFACT from "../build/artifacts/contracts/MyModule.sol/MyModule.json"
import MODULE_CONTRACT_ARTIFACT from "../artifacts/contracts/MyModule.sol/MyModule.json"
import createAdapter from "./eip1193"
import { deployFactories, deployProxy } from "@gnosis-guild/zodiac-core"

Expand Down
6 changes: 0 additions & 6 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@ dotenv.config()

const config: HardhatUserConfig = {
solidity: "0.8.22",
paths: {
artifacts: "build/artifacts",
cache: "build/cache",
deploy: "src/deploy",
sources: "contracts",
},
networks: {
sepolia: {
url: process.env.SEPOLIA_URL || "",
Expand Down

0 comments on commit ac1f57a

Please sign in to comment.