-
Notifications
You must be signed in to change notification settings - Fork 8
ADR 003 implementation: custom EvTransaction using EIP-2718, with sponsorship and atomic batch txs. #103
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
Merged
Merged
ADR 003 implementation: custom EvTransaction using EIP-2718, with sponsorship and atomic batch txs. #103
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
93cb8fd
create primitives
randygrok d525ad2
work until rpc
randygrok 77e5614
reorder paths
randygrok 9e61d28
finish impl phase 1
randygrok 738d8f9
fix lint
randygrok 0992079
fix linter
randygrok 400e072
fix clippy
randygrok d8cf5f5
fix clippy 2
randygrok 3c1af2b
fmt linter
randygrok f5e1c19
Merge remote-tracking branch 'origin/main' into randygrok/adr-phase2
randygrok e182cdd
fix e2e tests
randygrok 185a52e
remove error on payload builder when ev node tx
randygrok dae3ab6
add e2e test for signature of sponsorship
randygrok 0f23ac3
fmt: format e2e tests
jgimeno d10f79e
fix issue with fee payer
jgimeno 46081cc
Merge main
randygrok 073760c
fix clippy
randygrok 5555a95
fmt
randygrok c921f2f
add case where invalid signature was included but did not allow to bu…
randygrok 25c810a
fix lint problems
randygrok b735012
add case where the vector is empty.
randygrok 71b419f
fix max gax limits calculations
randygrok 9b49507
revert and create logic increases nonce
randygrok fb81941
fix linter
randygrok 07bf8ef
improve panic messages and add docs for Compact trait implementations
randygrok 2670b5d
address comments from PR
randygrok 75a4977
Merge branch 'main' into randygrok/adr-phase2
randygrok fd177fd
fix: address clippy warnings and formatting
randygrok 2342ba1
add hash calc for payload
jgimeno 8369e57
add pool validatios for ev node as eip1559
jgimeno 13a520b
Merge branch 'main' into randygrok/adr-phase2
randygrok efa12dd
Merge branch 'main' into randygrok/adr-phase2
randygrok 5f1926c
remove comment
randygrok 84b669a
fix or add some context for special cases
randygrok 45ae369
fix comments for lint
randygrok 553a6f9
make fmt
randygrok dd2b40e
Merge branch 'main' into randygrok/adr-phase2
tac0turtle bd1e542
Merge branch 'main' into randygrok/adr-phase2
randygrok 1767880
Merge branch 'main' into randygrok/adr-phase2
randygrok bc85deb
update README with new module
randygrok 93ff61d
update changelog
randygrok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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,22 @@ | ||
| [package] | ||
randygrok marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| name = "ev-primitives" | ||
| version = "0.1.0" | ||
| edition = "2021" | ||
| rust-version = "1.82" | ||
| license = "MIT OR Apache-2.0" | ||
|
|
||
| [dependencies] | ||
| alloy-consensus = { workspace = true } | ||
| alloy-eips = { workspace = true, features = ["serde"] } | ||
| alloy-primitives = { workspace = true, features = ["k256", "rlp", "serde"] } | ||
| alloy-serde = { workspace = true } | ||
| alloy-rlp = { workspace = true, features = ["derive"] } | ||
| bytes = { workspace = true } | ||
| reth-codecs = { workspace = true } | ||
| reth-db-api = { workspace = true } | ||
| reth-ethereum-primitives = { workspace = true } | ||
| reth-primitives-traits = { workspace = true, features = ["serde-bincode-compat"] } | ||
| serde = { workspace = true, features = ["derive"] } | ||
|
|
||
| [features] | ||
| serde-bincode-compat = ["reth-primitives-traits/serde-bincode-compat"] | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.