generated from rhinestonewtf/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding hardhat in the foundry project * Added files
- Loading branch information
1 parent
3ba7d58
commit 93dd66f
Showing
8 changed files
with
200 additions
and
542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import "@nomicfoundation/hardhat-toolbox" | ||
import "@nomicfoundation/hardhat-foundry" | ||
import "@typechain/hardhat" | ||
import { HardhatUserConfig } from "hardhat/config" | ||
|
||
const hardhatConfig: HardhatUserConfig = { | ||
solidity: { | ||
version: "0.8.27", | ||
settings: { | ||
optimizer: { | ||
enabled: true, | ||
runs: 200 | ||
} | ||
} | ||
}, | ||
networks: { | ||
hardhat: { | ||
chainId: 31337, | ||
allowUnlimitedContractSize: true | ||
}, | ||
}, | ||
gasReporter: { | ||
currency: "USD", | ||
enabled: process.env.REPORT_GAS === "true", | ||
coinmarketcap: process.env.COINMARKETCAP_API_KEY | ||
}, | ||
typechain: { | ||
target: "ethers-v6" | ||
}, | ||
}; | ||
|
||
export default hardhatConfig; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@rhinestone/=node_modules/@rhinestone/ | ||
sentinellist/=node_modules/@rhinestone/sentinellist/src/ | ||
erc4337-validation/=node_modules/@rhinestone/erc4337-validation/src/ | ||
safe7579/=node_modules/@rhinestone/safe7579/src/ | ||
modulekit/=node_modules/@rhinestone/modulekit/src/ | ||
module-bases/=node_modules/@rhinestone/module-bases/src/ | ||
registry/=node_modules/@rhinestone/registry/src/ | ||
|
||
@ERC4337/=node_modules/@ERC4337/ | ||
account-abstraction/=node_modules/@ERC4337/account-abstraction/contracts/ | ||
account-abstraction-v0.6/=node_modules/@ERC4337/account-abstraction-v0.6/contracts/ | ||
|
||
@openzeppelin/=node_modules/@openzeppelin/ | ||
@safe-global/=node_modules/@safe-global/ | ||
ds-test/=node_modules/ds-test/src/ | ||
erc7579/=node_modules/erc7579/src/ | ||
forge-std/=node_modules/forge-std/src/ | ||
solady/=node_modules/solady/src/ | ||
solarray/=node_modules/solarray/src/ | ||
@prb/math/=node_modules/@prb/math/src/ | ||
kernel/=node_modules/@zerodev/kernel/src/ | ||
ExcessivelySafeCall/=node_modules/excessively-safe-call/src/ | ||
|
||
@semaphore-protocol/contracts/=node_modules/@semaphore-protocol/contracts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters