Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ TIPS_UI_S3_BUCKET_NAME=tips
TIPS_UI_S3_CONFIG_TYPE=manual
TIPS_UI_S3_ENDPOINT=http://localhost:7000
TIPS_UI_S3_ACCESS_KEY_ID=minioadmin
TIPS_UI_S3_SECRET_ACCESS_KEY=minioadmin
TIPS_UI_S3_SECRET_ACCESS_KEY=minioadmin
186 changes: 176 additions & 10 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ homepage = "https://github.com/base/tips"
repository = "https://github.com/base/tips"

[workspace]
members = ["crates/audit", "crates/ingress-rpc", "crates/bundle-pool", "crates/core"]
members = ["crates/audit", "crates/ingress-rpc", "crates/bundle-pool", "crates/core", "crates/e2e-tests"]
resolver = "2"

[workspace.dependencies]
tips-audit = { path = "crates/audit" }
tips-bundle-pool = { path = "crates/bundle-pool" }
tips-core = { path = "crates/core" }
tips-e2e-tests = { path = "crates/e2e-tests" }

# Reth
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
Expand All @@ -27,6 +28,9 @@ alloy-primitives = { version = "1.3.1", default-features = false, features = [
] }
alloy-consensus = { version = "1.0.37" }
alloy-provider = { version = "1.0.37" }
alloy-rpc-types = { version = "1.0.37" }
alloy-signer = { version = "1.0.37" }
alloy-network = { version = "1.0.37" }
alloy-serde = "1.0.41"

# op-alloy
Expand Down
Loading