Skip to content
Open
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ L2_CHAIN_ID?=$(shell \
L2_CHAIN_ID_HEX:=$(shell printf "0x%064x" $(L2_CHAIN_ID))
PORTAL?=http://0.0.0.0:8080
TXPROXY?=http://0.0.0.0:8090
L1_RPC_URL?=http://3.84.162.42:8545
L1_BEACON_RPC_URL?=http://3.84.162.42:5051
L1_RPC_URL?=https://ethereum-sepolia-rpc.publicnode.com
L1_BEACON_RPC_URL?=https://ethereum-sepolia-beacon-api.publicnode.com
PUBLIC_IP?=$(shell curl ifconfig.me)
# if GATEWAY_SEQUENCING_KEY is set, use that one, otherwise key_to_address will generate a new one
GATEWAY_SEQUENCING_KEY ?= $(shell \
Expand Down
150 changes: 109 additions & 41 deletions based/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 based/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ either = "1.15.0"
ethereum_ssz = "0.9.0"
eyre = "0.6.12"
futures = "0.3.31"
futures-util = "0.3.31"
hickory-resolver = "=0.25.0-alpha.5" # Use the exact version reth expects
http = "1.3.1"
hyper = "1.5.2"
Expand All @@ -59,6 +60,7 @@ op-alloy-rpc-types = "0.22.0"
op-alloy-rpc-types-engine = { version = "0.22.0", default-features = false, features = [
"serde",
] }
op-alloy-provider = "0.22.0"
op-revm = "12.0.1"
parking_lot = "0.12.3"
paste = "0.1.18"
Expand Down Expand Up @@ -124,6 +126,7 @@ strum_macros = "0.24"
tabwriter = "1.4.1"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
tokio-websockets = { version = "0.12.1", features = ["client", "openssl", "rand", "server"] }
toml = "0.8.19"
tower = { version = "0.5", features = ["timeout"] }
tower-http = { version = "0.6", features = ["cors"] }
Expand Down
Loading
Loading