Pin LEZ wallet docs to v0.2.0 and fix crate paths#379
Open
fryorcraken wants to merge 1 commit into
Open
Conversation
The LEZ crates moved under a `lez/` prefix between v0.1.2 and v0.2.0 (commit a58fbce). The top-level `wallet/`, `sequencer/`, and `indexer/` directories no longer exist at v0.2.0, breaking two filesystem-path arguments in the wallet quickstart. - Pin both wallet setup docs to `git checkout v0.2.0` (the quickstart previously cloned the default branch with no ref; connect-wallet-cli still pinned the old v0.1.2). - Fix `cargo install --path wallet` -> `--path lez/wallet`. - Fix the sequencer config path in the quickstart to `lez/sequencer/...`. Crate-name references (`-p sequencer_service`) and the `just run-*` recipes were unaffected and left as-is. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
moudyellaz
approved these changes
Jul 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Points the LEZ wallet setup docs at the v0.2.0 release and fixes two stale filesystem paths that break at that tag.
Why
Between
v0.1.2andv0.2.0(commita58fbce) the LEZ crates moved under alez/prefix. The top-levelwallet/,sequencer/, andindexer/directories no longer exist at v0.2.0, so two path arguments in the wallet quickstart fail against the current release. Separately, the two wallet docs disagreed on versioning: the quickstart cloned the default branch with no ref, whileconnect-wallet-clistill pinned the oldv0.1.2.Changes
v0.2.0in both docs (git checkout v0.2.0).cargo install --path wallet→--path lez/wallet(both docs).lez/sequencer/service/configs/debug/sequencer_config.json.Verified against the v0.2.0 tag
lez/wallet/andlez/sequencer/service/configs/debug/sequencer_config.jsonexist atv0.2.0; the old top-levelwallet/andsequencer/trees do not.-p sequencer_service,-p indexer_service) still resolve, so they were left unchanged.just run-bedrock/run-sequencer/run-indexerrecipes and the indexer config'sbedrock_config.addr+channel_idfields still match — no change needed there.Note
Other LEZ docs still link to and clone from
mainrather than a tag (e.g.run-lez-indexer.mduses/tree/main/...links). This PR only fixes the two broken paths + version pins in the wallet setup flow; a broader "pin all LEZ docs to a release tag" pass is a separate decision.🤖 Generated with Claude Code