Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update suave-geth v0.2.0 #65

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ jobs:
- name: Install suave-geth
uses: flashbots/[email protected]

- name: Show suave-geth version
run: suave-geth --version

- name: Run suave
run: |
make devnet-up
Expand Down
1 change: 1 addition & 0 deletions framework/framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ func New(opts ...ConfigOption) *Framework {
}

suaveClt := sdk.NewClient(kettleRPC, config.FundedAccount.Priv, accounts[0])
suaveClt.WithEIP712()

fr := &Framework{
config: &config,
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.21

toolchain go1.21.3

replace github.com/ethereum/go-ethereum => github.com/flashbots/suave-geth v0.1.3
replace github.com/ethereum/go-ethereum => github.com/flashbots/suave-geth v0.2.0

require (
github.com/ethereum/go-ethereum v1.12.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ github.com/flashbots/go-boost-utils v1.7.0 h1:BaLeGl71nD/ro0aUzCYqHc8PiqIIaErLwc
github.com/flashbots/go-boost-utils v1.7.0/go.mod h1:1Y0rD/e57KZZIRgkCcXRvvztW+v+eZHnWu25wxtGstU=
github.com/flashbots/go-utils v0.4.13-0.20230919094729-c049be707f79 h1:y2obQCUIvqKISLxWxC0Tz8Oc618vA3q1xmn9GwElvfI=
github.com/flashbots/go-utils v0.4.13-0.20230919094729-c049be707f79/go.mod h1:LauDwifaRdSK0mS5X34GR59pJtUu1T/lOFNdff1BqtI=
github.com/flashbots/suave-geth v0.1.3 h1:yTmt5Iez8GbwleG5D0Qpf7qTyQXyILC+KxWjfxRftD0=
github.com/flashbots/suave-geth v0.1.3/go.mod h1:fUoPFJkZQ0Q2E+DsixtdqJm/4oWuuFzJ7Ukz8pmgHeA=
github.com/flashbots/suave-geth v0.2.0 h1:ewn/ubhcWgygN7SsAYZ36K02hD8jvDbIBfV0qJGnrxI=
github.com/flashbots/suave-geth v0.2.0/go.mod h1:fUoPFJkZQ0Q2E+DsixtdqJm/4oWuuFzJ7Ukz8pmgHeA=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY=
Expand Down
Loading