Skip to content
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
69 changes: 35 additions & 34 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ serde = { version = "1.0.219", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.140", default-features = false }

# Kona
kona-client = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.10-rc.1", default-features = false }
kona-host = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.10-rc.1", default-features = false }
kona-proof = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.10-rc.1", default-features = false }
kona-preimage = {git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.10-rc.1", default-features = false }
kona-genesis = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.10-rc.1", default-features = false }
kona-registry = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.10-rc.1", default-features = false }
kona-client = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.11", default-features = false }
kona-host = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.11", default-features = false }
kona-proof = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.11", default-features = false }
kona-preimage = {git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.11", default-features = false }
kona-genesis = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.11", default-features = false }
kona-registry = { git="https://github.com/ethereum-optimism/optimism", rev= "kona-node/v1.2.11", default-features = false }

# Alloy
alloy-primitives = { version = "1.5.6", default-features = false }

[patch."crates-io"]
# Unify op-alloy crates to use the same git revision as kona
op-alloy-consensus = { git = "https://github.com/ethereum-optimism/optimism", rev = "kona-node/v1.2.10-rc.1" }
op-alloy-network = { git = "https://github.com/ethereum-optimism/optimism", rev = "kona-node/v1.2.10-rc.1" }
op-alloy-rpc-types = { git = "https://github.com/ethereum-optimism/optimism", rev = "kona-node/v1.2.10-rc.1" }
op-alloy-rpc-types-engine = { git = "https://github.com/ethereum-optimism/optimism", rev = "kona-node/v1.2.10-rc.1" }
op-alloy-consensus = { git = "https://github.com/ethereum-optimism/optimism", rev = "kona-node/v1.2.11" }
op-alloy-network = { git = "https://github.com/ethereum-optimism/optimism", rev = "kona-node/v1.2.11" }
op-alloy-rpc-types = { git = "https://github.com/ethereum-optimism/optimism", rev = "kona-node/v1.2.11" }
op-alloy-rpc-types-engine = { git = "https://github.com/ethereum-optimism/optimism", rev = "kona-node/v1.2.11" }

4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SED = $(shell which gsed 2>/dev/null || echo sed)

.PHONY: chain
chain:
git clone --depth 1 -b op-node/v1.16.7 https://github.com/ethereum-optimism/optimism ./chain
git clone --depth 1 -b op-node/v1.16.8 https://github.com/ethereum-optimism/optimism ./chain
# override devnet config
cp kurtosis/kurtosis.yaml ./chain/kurtosis-devnet/optimism-package-trampoline/kurtosis.yml
cp kurtosis/main.star ./chain/kurtosis-devnet/optimism-package-trampoline/main.star
Expand All @@ -11,6 +11,8 @@ chain:
cp kurtosis/op-service/eth/config.go ./chain/op-service/eth/config.go
# kurtosis 1.15.2 is required
$(SED) -i 's/v1.8.2-0.20250602144112-2b7d06430e48/v1.15.2/g' ./chain/go.mod
# add op-reth-image recipe to justfile
$(SED) -i '/^op-interop-mon-image/a\\nop-reth-image TAG='"'"'op-reth:devnet'"'"': (_docker_build TAG "" "../rust" "op-reth/DockerfileOp" "--build-arg BUILD_PROFILE=release")' ./chain/kurtosis-devnet/justfile
cd chain && go mod tidy

.PHONY: devnet-up
Expand Down
4 changes: 2 additions & 2 deletions kurtosis/simple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ optimism_package:
participants:
node0:
el:
type: op-geth
image: "us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:v1.101608.0"
type: op-reth
image: {{ localDockerImage "op-reth" }}
log_level: ""
extra_env_vars: {}
extra_labels: {}
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ kona-registry = { workspace = true }
alloy-primitives = { workspace = true, features = ["map", "serde"] }

# optimism derivation
optimism-derivation = { git = "https://github.com/datachainlab/optimism-elc", rev = "c67a2d3a4349e784d97e5e0760f04a6d638ab705", default-features = false }
optimism-derivation = { git = "https://github.com/datachainlab/optimism-elc", rev = "58e7aae28689b69508d0c0ff3fa7d9202d371b6a", default-features = false }

[dev-dependencies]
prost = "0.11.9"
Expand Down