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

chore(deps): bump alloy and primitives #1725

Merged
merged 41 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9d2855f
latest eip7702 wip
rakita Aug 7, 2024
bd2f4ee
add code loading handler
rakita Aug 7, 2024
6fa2fb0
WIP adding is_delegate_cold flag
rakita Aug 8, 2024
5020d9f
feat: add StateLoad and Eip7702CodeLoad
rakita Aug 9, 2024
5db4074
feat: add gas accounting among other things
rakita Aug 9, 2024
6a91562
clippy,fmt, op test
rakita Aug 9, 2024
9e3735b
Merge remote-tracking branch 'origin/main' into eip7702
rakita Aug 9, 2024
05940a8
Merge remote-tracking branch 'origin/main' into eip7702
rakita Aug 9, 2024
cab9bb1
path to latest alloy-eips
rakita Aug 9, 2024
43918ca
comment eip7702 decode tests
rakita Aug 9, 2024
a466e2f
Eip7702 format starts with 0xEF0100
rakita Aug 10, 2024
16c3933
typo
rakita Aug 10, 2024
18548c5
fix(eip7702): fix empty or eip7702 code check
rkrasiuk Aug 15, 2024
e665984
Merge pull request #1705 from bluealloy/rkrasiuk/fix-empty-and-eip770…
rkrasiuk Aug 15, 2024
9efccc4
Type Eip7702s to Eip7702
rakita Aug 15, 2024
b9b8f27
Corrent comments
rakita Aug 15, 2024
071e285
switch new and new_raw Eip7702Bytecode
rakita Aug 15, 2024
a69e173
propagate last commit
rakita Aug 15, 2024
7c4196d
nit: rename fn
rakita Aug 15, 2024
7e3c47d
fix(eip7702): set delegated code on call (#1706)
rkrasiuk Aug 15, 2024
d2111c6
type change, return eip7702 raw on Bytecode::bytecode
rakita Aug 15, 2024
caadc71
eip7702 delegation test
rakita Aug 15, 2024
502d6d1
Cleanup, refactor sstore gas calc
rakita Aug 27, 2024
6e7868c
doc
rakita Aug 27, 2024
2609442
chore: add AuthList json format
rakita Aug 27, 2024
7b27584
chore(deps): bump alloy
klkvr Aug 27, 2024
2b5331f
fix initial eip7702 gas, fix eip7702 refund on revert
rakita Aug 27, 2024
61b3567
small refactor
rakita Aug 27, 2024
3098302
fix refund cnt
rakita Aug 27, 2024
54a21a6
error handling, EIP-3607 fix, wip on auth validity
rakita Aug 28, 2024
84839ba
rm patches
klkvr Aug 28, 2024
53d4143
add auth validity check, fix EIP-3607 fix
rakita Aug 28, 2024
f56ff19
Merge remote-tracking branch 'origin/main' into eip7702
rakita Aug 28, 2024
1cec60d
switch tests
rakita Aug 28, 2024
c427b99
missing comment
rakita Aug 28, 2024
af5e112
fix tests
rakita Aug 28, 2024
7a2a01c
rm println
rakita Aug 28, 2024
9db723e
remove skip of required fields
rakita Aug 28, 2024
4add28b
docs, test meta dat
rakita Aug 29, 2024
1314d99
Merge remote-tracking branch 'origin/main' into eip7702
rakita Aug 29, 2024
a4d7ef3
Merge branch 'eip7702' into alloy_bump
rakita Aug 29, 2024
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
151 changes: 87 additions & 64 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ debug = true
[profile.ethtests]
inherits = "test"
opt-level = 3

[patch.crates-io]
alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "05cc4e0" }
alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "05cc4e0" }
alloy-transport = { git = "https://github.com/alloy-rs/alloy", rev = "05cc4e0" }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about this version?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should remove this patch right? And just go to latest version?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should remove this patch right? And just go to latest version?

yep, removed patches in 84839ba

4 changes: 2 additions & 2 deletions bins/revm-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ bytes = "1.6"
hex = "0.4"
revm = { path = "../../crates/revm", version = "13.0.0", default-features=false }
microbench = "0.5"
alloy-sol-macro = "0.7.7"
alloy-sol-types = "0.7.7"
alloy-sol-macro = "0.8.0"
alloy-sol-types = "0.8.0"
regex = "1.10.6"
eyre = "0.6.12"

Expand Down
Loading