forked from Layr-Labs/eigensdk-go
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #3 from gasp-xyz/feature/bumb-eigenware
bump-eigenware
- Loading branch information
Showing
189 changed files
with
22,877 additions
and
8,192 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 |
---|---|---|
@@ -1,16 +1,9 @@ | ||
Fixes # . | ||
|
||
### Motivation | ||
<!-- | ||
Does this solve a bug? Enable a new use-case? Improve an existing behavior? Concrete examples are helpful here. | ||
--> | ||
### What Changed? | ||
<!-- Describe the changes made in this pull request --> | ||
|
||
### Solution | ||
<!-- | ||
What is the solution here from a high level. What are the key technical decisions and why were they made? | ||
--> | ||
|
||
### Open questions | ||
<!-- | ||
(optional) Any open questions or feedback on design desired? | ||
--> | ||
### Reviewer Checklist | ||
- [ ] Code is well-documented | ||
- [ ] Code adheres to Go [naming conventions](https://go.dev/doc/effective_go#names) | ||
- [ ] Code deprecates any old functionality before removing it |
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,33 @@ | ||
name: check that make fmt was run | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
check-make-fmt: | ||
name: check make fmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: install go1.21 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
|
||
- name: Run make fmt | ||
run: make fmt | ||
|
||
- name: Check if make fmt generated changes that should be committed | ||
run: | | ||
if [ -n "$(git status --porcelain)" ]; then | ||
echo "Error: make fmt generated changes that should be committed. Please run 'make fmt' and commit the changes." | ||
git diff | ||
git status | ||
exit 1 | ||
fi |
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 @@ | ||
name: check mocks up-to-date | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
make-mocks: | ||
name: make mocks and check for diffs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: install go1.21 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
|
||
- name: run make mocks and check for diffs | ||
run: | | ||
make mocks | ||
if [ ! -z "$(git status --porcelain)" ]; then | ||
printf "Current generated mocks not up to date\n" | ||
git diff | ||
git status | ||
exit 1 | ||
fi |
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
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "contracts/lib/eigenlayer-middleware"] | ||
path = contracts/lib/eigenlayer-middleware | ||
url = git@github.com:Layr-Labs/eigenlayer-middleware.git | ||
[submodule "contracts/lib/forge-std"] | ||
path = contracts/lib/forge-std | ||
url = git@github.com:foundry-rs/forge-std |
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
Oops, something went wrong.