-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
2 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 |
---|---|---|
|
@@ -4,4 +4,3 @@ | |
[submodule "lib/forge-std"] | ||
path = lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std | ||
branch = v1.7.1 |
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 |
---|---|---|
|
@@ -33,7 +33,7 @@ $ git submodule update | |
|
||
Install [Foundry](https://getfoundry.sh/): | ||
|
||
``` | ||
```bash | ||
$ curl -L https://foundry.paradigm.xyz | bash | ||
``` | ||
|
||
|
@@ -55,6 +55,20 @@ See the instructions here: https://github.com/flashbots/suave-geth#starting-a-lo | |
|
||
Check out the [`/examples/`](/examples/) folder for several example Suapps and `main.go` files to deploy and run them! | ||
|
||
## Contributing | ||
|
||
Some notes and helpers for contributing to this repository: | ||
|
||
```bash | ||
# Install testing dependencies | ||
$ go install mvdan.cc/[email protected] | ||
$ go install honnef.co/go/tools/cmd/[email protected] | ||
$ go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
|
||
# Update the git submodules to the latest commit | ||
$ git submodule update --remote | ||
``` | ||
|
||
--- | ||
|
||
Happy hacking 🛠️ |