Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
530c370
feat: transact frags transaction
Dec 18, 2025
d02f031
feat: execute frag done
Dec 18, 2025
95d252a
fix cargo
Dec 18, 2025
780c975
update ub
Dec 18, 2025
8f3d3f3
improve docs
Dec 18, 2025
ac0030a
chore(reth): smol
mempirate Dec 18, 2025
dd80f73
fix(reth): receipt gas used
mempirate Dec 18, 2025
33828e0
Merge remote-tracking branch 'origin/ki/reth/new-frag' into ki/reth/s…
Dec 18, 2025
3f646bf
Merge remote-tracking branch 'origin/ki/reth/state_executor' into ki/…
Dec 18, 2025
ab59ac9
finish execute frag
Dec 18, 2025
945090e
feat(reth): start wiring things together
mempirate Dec 18, 2025
f42f9fb
fix(reth): merge
mempirate Dec 18, 2025
50d4779
fix header number
Dec 18, 2025
8fad766
Merge remote-tracking branch 'origin/ki/reth/state_executor' into ki/…
Dec 18, 2025
6adc04f
feat(reth): almost complete eth_ API
mempirate Dec 18, 2025
14957ad
Merge branch 'ki/reth/state_executor' of https://github.com/gattaca-c…
mempirate Dec 18, 2025
0422fd4
feat(reth): smol update
mempirate Dec 18, 2025
0dfd9fd
remove async from execute frag
Dec 19, 2025
651cc23
Merge remote-tracking branch 'origin/ki/reth/state_executor' into ki/…
Dec 19, 2025
98289f9
feat(reth): fix transaction receipt conversions
mempirate Dec 19, 2025
bbe10f5
feat(reth): fix transaction receipt conversions
mempirate Dec 19, 2025
3f0bb95
feath(based-op-reth): handleEnvV0 and reset shared state (#273)
pamungkaski Dec 19, 2025
5100758
construct deposit nonce and deposit receipt version
pamungkaski Dec 19, 2025
488802a
feat(based-op-reth): Seal Block on last frags and Set Canonical Block…
pamungkaski Dec 19, 2025
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
89 changes: 54 additions & 35 deletions based/Cargo.lock

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

30 changes: 21 additions & 9 deletions based/crates/reth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
edition.workspace = true
name = "reth"
name = "based-op-reth"
repository.workspace = true
rust-version.workspace = true
version.workspace = true
Expand All @@ -11,27 +11,39 @@ alloy-eips.workspace = true
alloy-network.workspace = true
alloy-primitives.workspace = true
alloy-rpc-types.workspace = true
alloy-rpc-types-eth = "1.1.3"
anyhow = "1.0.98"
arc-swap = "1.7.1"
bop-common.workspace = true
clap.workspace = true
eyre.workspace = true
futures.workspace = true
jsonrpsee.workspace = true
op-alloy-consensus = "0.22.1"
op-alloy-network.workspace = true
op-alloy-rpc-types.workspace = true
thiserror.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
tracing.workspace = true

reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-chainspec" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
reth-engine-tree = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-engine-tree" }
reth-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-evm" }
reth-exex = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-optimism-chainspec" }
reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
reth-optimism-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-optimism-evm" }
reth-optimism-node = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-optimism-primitives" }
reth-optimism-rpc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-optimism-rpc" }
reth-revm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-revm" }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
reth-rpc-convert = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-rpc-convert" }
reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3" }
op-alloy-consensus = "0.22.1"
alloy-rpc-types-eth = "1.1.3"
reth-storage-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-storage-api" }
reth-storage-errors = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-storage-errors" }
revm = { version = "31.0.1", features = ["optional_balance_check", "secp256k1", "std"], default-features = false }
thiserror.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
tracing.workspace = true
reth_optimism_consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.3", package = "reth-optimism-consensus" }
Loading
Loading