Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STR-1180: remove legacy bridge client #737

Merged
merged 28 commits into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fdbd111
chaintsn, primitives, state: added `deposit_idx` field to `DepositInf…
delbonis Mar 13, 2025
487bb2a
state: fixed deposit next_idx bookkeeping
delbonis Mar 13, 2025
7adff5c
state: fixed deposit next_idx bookkeeping for real this time
delbonis Mar 13, 2025
a603a4f
removed bridge-client binary
delbonis Mar 13, 2025
720ed27
removed other bridge related crates
delbonis Mar 13, 2025
b5292da
fntest: removed legacy bridge related logic
delbonis Mar 13, 2025
6f45121
removed references to bridge crates from crate deps
delbonis Mar 13, 2025
f62245b
removed most references to removed bridge crates
delbonis Mar 13, 2025
ff7fa35
docker: removed references to bridge clients
delbonis Mar 13, 2025
1e31bf3
fntest/fw: removed unused variable
delbonis Mar 13, 2025
c9d2688
misc: fixed a bunch of tests and things
delbonis Mar 13, 2025
ab26833
fntest/fw: fixed ref to bridge fac
delbonis Mar 14, 2025
ad70b03
ci: remove integration test jobs
delbonis Mar 14, 2025
d48944e
strata-cli: removed deposit subcommand
delbonis Mar 14, 2025
ef2cdd7
fntest: disabled some tests, added logging to prover_checkpoint_runner
delbonis Mar 14, 2025
cf71a67
test-utils: removed unused imports
delbonis Mar 14, 2025
2e20c54
strata-client: fixed typos
delbonis Mar 14, 2025
55b36b8
fntest: fixed ruff lints
delbonis Mar 14, 2025
94df2bf
fntest/prover_checkpoint_runner: added better logging
delbonis Mar 14, 2025
145919b
consensus-logic: loosened epoch sanity check for updating base block
delbonis Mar 14, 2025
cc65faf
chaintsn: improved handling for invalid proto ops to just disregard them
delbonis Mar 17, 2025
e66cb1e
consensus-logic: minor refactor pending epoch finalization queue
delbonis Mar 17, 2025
f8ff295
prover-client: improved logging in checkpoint runner
delbonis Mar 17, 2025
60587bb
misc: improved logging with more spans
delbonis Mar 17, 2025
1512670
fntest: misc troubleshooting
delbonis Mar 17, 2025
0f2a91b
clstf: use correct epoch
sapinb Mar 18, 2025
ae9d3bf
fntest: fix prover cl dispatch
sapinb Mar 18, 2025
8e9db63
fntest: fix lint
sapinb Mar 18, 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
48 changes: 0 additions & 48 deletions .github/workflows/integration.yml

This file was deleted.

136 changes: 0 additions & 136 deletions Cargo.lock

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

13 changes: 1 addition & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
[workspace]
members = [
"crates/bridge-exec",
"crates/bridge-relay",
"crates/bridge-sig-manager",
"crates/bridge-tx-builder",
"crates/btcio",
"crates/chaintsn",
"crates/common",
Expand All @@ -27,7 +23,6 @@ members = [
"crates/reth/node",
"crates/reth/rpc",
"crates/rpc/api",
"crates/rpc/bridge-api",
"crates/rpc/prover-client-api",
"crates/rpc/types",
"crates/rpc/utils",
Expand All @@ -45,7 +40,6 @@ members = [
"provers/sp1",

# binaries listed separately
"bin/bridge-client",
"bin/datatool",
"bin/strata-cli",
"bin/strata-client",
Expand All @@ -60,22 +54,17 @@ members = [
]

default-members = [
"bin/bridge-client",
"bin/datatool",
"bin/prover-client",
"bin/strata-reth",
"bin/strata-client",
"bin/strata-sequencer-client",
"crates/util/python-utils",
]

resolver = "2"

[workspace.dependencies]
strata-bridge-exec = { path = "crates/bridge-exec" }
strata-bridge-relay = { path = "crates/bridge-relay" }
strata-bridge-rpc-api = { path = "crates/rpc/bridge-api" }
strata-bridge-sig-manager = { path = "crates/bridge-sig-manager" }
strata-bridge-tx-builder = { path = "crates/bridge-tx-builder" }
strata-btcio = { path = "crates/btcio" }
strata-chaintsn = { path = "crates/chaintsn" }
strata-common = { path = "crates/common" }
Expand Down
43 changes: 0 additions & 43 deletions bin/bridge-client/Cargo.toml

This file was deleted.

Loading
Loading