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

feat: integrate builder #6611

Merged
merged 45 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
a789a5a
Add crate
mattsse Feb 14, 2024
a52ba54
add noargs
mattsse Feb 14, 2024
85197e8
chore: add launch function
mattsse Feb 14, 2024
5f9e70a
chore: work on lauch
mattsse Feb 14, 2024
acd5aa0
chore: add run ethereum
mattsse Feb 14, 2024
0665d74
Merge branch 'main' into matt/integrate-node-builder
mattsse Feb 15, 2024
c695ae1
make it compile
mattsse Feb 15, 2024
1777089
migrate main
mattsse Feb 15, 2024
3fafb61
enable evm config
mattsse Feb 15, 2024
99195c1
migrate binaries
mattsse Feb 15, 2024
abecb65
remove rollup args
mattsse Feb 15, 2024
f405944
fix compile error
mattsse Feb 15, 2024
f6e0c6b
port engine interceptor
mattsse Feb 15, 2024
743691d
chore: use futures block on
mattsse Feb 15, 2024
7a2c392
asyincify component traits
mattsse Feb 15, 2024
dc8ee5e
impl for async closures
mattsse Feb 15, 2024
f291d85
migrate example
mattsse Feb 15, 2024
f5f14e1
migrate more examples
mattsse Feb 15, 2024
5dd8a6c
migrate more
mattsse Feb 15, 2024
d083d73
chore: migrate more
mattsse Feb 15, 2024
1e8d16c
chore: migrate example
mattsse Feb 15, 2024
295337e
fix clippy
mattsse Feb 15, 2024
7b51d98
cleanup
mattsse Feb 15, 2024
a6ebf52
more example
mattsse Feb 15, 2024
f8bd1fc
fixes
mattsse Feb 15, 2024
00db04b
clippy
mattsse Feb 15, 2024
7666cdb
fix: use separate receipt root functions
mattsse Feb 15, 2024
74fbb1b
add node trait
mattsse Feb 16, 2024
16e5a51
add node trait
mattsse Feb 16, 2024
aced888
chore: docs
mattsse Feb 16, 2024
e499012
more docs
mattsse Feb 16, 2024
9d0aaa1
update node example
mattsse Feb 16, 2024
f1a26b1
Merge branch 'main' into matt/integrate-node-builder
mattsse Feb 16, 2024
5854d83
rename
mattsse Feb 16, 2024
162fc6d
fix missing fn
mattsse Feb 16, 2024
97feba2
Merge branch 'main' into matt/integrate-node-builder
mattsse Feb 20, 2024
6254ddb
cleanup
mattsse Feb 20, 2024
cd494ba
fixes
mattsse Feb 20, 2024
e952573
Merge branch 'main' into matt/integrate-node-builder
mattsse Feb 27, 2024
136622e
add evm example
mattsse Feb 27, 2024
c8e915e
feat: add custom precompile example
mattsse Feb 27, 2024
cbc3a3e
Merge branch 'main' into matt/integrate-node-builder
mattsse Feb 29, 2024
f85b24e
resolve conflicts
mattsse Feb 29, 2024
56d74ed
migrate example
mattsse Feb 29, 2024
34b3ea8
Merge branch 'main' into matt/integrate-node-builder
mattsse Feb 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
73 changes: 54 additions & 19 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ members = [
"examples/additional-rpc-namespace-in-cli/",
"examples/beacon-api-sse/",
"examples/cli-extension-event-hooks/",
"examples/custom-evm/",
"examples/custom-node/",
"examples/custom-node-components/",
"examples/custom-dev-node/",
"examples/custom-payload-builder/",
"examples/manual-p2p/",
"examples/rpc-db/",
Expand Down
3 changes: 1 addition & 2 deletions bin/reth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ reth-node-optimism = { workspace = true, optional = true, features = [
"optimism",
] }
reth-node-core.workspace = true
reth-node-builder.workspace = true

# crypto
alloy-rlp.workspace = true
Expand Down Expand Up @@ -137,8 +138,6 @@ optimism = [
"reth-blockchain-tree/optimism",
"reth-payload-builder/optimism",
"reth-optimism-payload-builder/optimism",
"reth-ethereum-payload-builder/optimism",
"reth-node-ethereum/optimism",
"dep:reth-node-optimism",
"reth-node-core/optimism",
]
Expand Down
Loading
Loading