Skip to content

Commit 22ff3e0

Browse files
Add foundry config (#99)
* chore: forge init * forge install: forge-std v1.6.1 * Revert README.md change * Add out/ to gitignore * Remove boilerplate foundry * forge install: openzeppelin-contracts v4.9.3 * Change to foundry-out in gitignore * Remove openzeppelin forge dependency
1 parent 494e2c9 commit 22ff3e0

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ cache
1111
artifacts
1212

1313
# Build files
14-
dist/
14+
dist/
15+
16+
# Forge files
17+
foundry-out/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "lib/forge-std"]
2+
path = lib/forge-std
3+
url = https://github.com/foundry-rs/forge-std

foundry.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[profile.default]
2+
src = 'contracts'
3+
out = 'foundry-out'
4+
libs = ["lib", "node_modules"]
5+
6+
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options

lib/forge-std

Submodule forge-std added at 1d9650e

0 commit comments

Comments
 (0)