Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c90177c
skeleton test setup
kmchicoine Oct 15, 2025
9ac2960
add basic tests and rpc client
kmchicoine Oct 15, 2025
59e7931
add client
kmchicoine Oct 15, 2025
3ba620d
full e2e tests, with local node
kmchicoine Oct 24, 2025
a262b34
Ignore test that requires node running
kmchicoine Oct 24, 2025
cdad812
Mark full node tests with env flag
kmchicoine Oct 27, 2025
9f65698
Merge remote-tracking branch 'origin/master' into kaley/e2e-testing
kmchicoine Oct 27, 2025
1f9fe4d
Finish merge
kmchicoine Oct 27, 2025
ae9641f
readme + fmt
kmchicoine Oct 28, 2025
8272ed9
Merge remote-tracking branch 'origin/master' into kaley/e2e-testing
kmchicoine Oct 28, 2025
e78c225
yarn update
kmchicoine Oct 28, 2025
56ef9a0
Update tests for clean fail
kmchicoine Oct 28, 2025
d254ec2
fmt
kmchicoine Oct 28, 2025
b5b4502
Add mock provider to avoid need to run node for e2e tests
kmchicoine Oct 30, 2025
15cada8
Cargo
kmchicoine Oct 30, 2025
f0cc6a9
Merge remote-tracking branch 'origin/master' into kaley/e2e-testing
kmchicoine Oct 30, 2025
4d74529
lint + clippy
kmchicoine Oct 30, 2025
d7b82a2
Update env var flag and readme
kmchicoine Oct 31, 2025
6541a73
Merge remote-tracking branch 'origin/master' into kaley/e2e-testing
kmchicoine Nov 3, 2025
8ec09b6
Merge remote-tracking branch 'origin/master' into kaley/e2e-testing
kmchicoine Nov 6, 2025
d34f5b5
run tests with full services
kmchicoine Nov 6, 2025
126e4e5
update integration tests filename
kmchicoine Nov 6, 2025
3a9cf7b
Merge remote-tracking branch 'origin/master' into kaley/e2e-testing
kmchicoine Nov 7, 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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,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