-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1005 from aitimate/hardhat-foundry
add: hardhat-foundry
- Loading branch information
Showing
29 changed files
with
3,040 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
PRIVATE_KEY=0x0000000000000000000000000000000000000000000000000000000000000000 | ||
ETHERSCAN_BSC= | ||
ETHERSCAN_ETH= | ||
ETHERSCAN_ARB= |
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,84 @@ | ||
*.swp | ||
*.swo | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
allFiredEvents | ||
scTopics | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
coverage.json | ||
coverageEnv | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Dependency directory | ||
node_modules | ||
|
||
# Debug log from npm | ||
npm-debug.log | ||
|
||
# local env variables | ||
.env | ||
|
||
# truffle build directory | ||
build/ | ||
|
||
# macOS | ||
.DS_Store | ||
|
||
# truffle | ||
.node-xmlhttprequest-* | ||
|
||
# IntelliJ IDE | ||
.idea | ||
|
||
# vscode IDE | ||
.vscode | ||
|
||
# docs artifacts | ||
docs/modules/api | ||
|
||
# only used to package @openzeppelin/contracts | ||
contracts/build/ | ||
contracts/README.md | ||
|
||
# temporary artifact from solidity-coverage | ||
.coverage_artifacts | ||
.coverage_cache | ||
.coverage_contracts | ||
|
||
# hardat-exposed | ||
contracts-exposed | ||
|
||
# Hardhat | ||
cache | ||
artifacts | ||
|
||
# Foundry | ||
out | ||
cache_forge | ||
|
||
# Certora | ||
.certora* | ||
.last_confs | ||
certora_* | ||
.zip-output-url.txt | ||
|
||
# extends | ||
/abi | ||
/abi-pure | ||
|
||
/typechain-types | ||
/**/*.js | ||
|
||
/lib | ||
/contracts/diamond-2 |
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,6 @@ | ||
[submodule "lib/forge-std"] | ||
path = lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std | ||
[submodule "contracts/diamond-2"] | ||
path = contracts/diamond-2 | ||
url = https://github.com/mudgen/diamond-2-hardhat.git |
Oops, something went wrong.