Skip to content

Commit

Permalink
add: hardhat-foundry
Browse files Browse the repository at this point in the history
  • Loading branch information
aitimate-0 committed Nov 4, 2023
1 parent e4cc243 commit a5610ad
Show file tree
Hide file tree
Showing 103 changed files with 30,354 additions and 0 deletions.
4 changes: 4 additions & 0 deletions basic/79-hardhat-foundry/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
PRIVATE_KEY=0x0000000000000000000000000000000000000000000000000000000000000000
ETHERSCAN_BSC=
ETHERSCAN_ETH=
ETHERSCAN_ARB=
81 changes: 81 additions & 0 deletions basic/79-hardhat-foundry/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
*.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
6 changes: 6 additions & 0 deletions basic/79-hardhat-foundry/.gitmodules
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
Loading

0 comments on commit a5610ad

Please sign in to comment.