docs: describe running against zebrad instead of the deprecated zcashd - #594
Merged
Conversation
The README's setup instructions predate zebrad support: they direct the reader to configure a zcashd instance, although zcashd is deprecated and lightwalletd already accepts a zebrad.toml via --zcash-conf-path and detects the zebrad backend at startup. Rewrite the local and production setup instructions zebrad-first, and add a grpcurl health-check section so operators can verify both the gRPC frontend and the backend connection after starting the server. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
nuttycom
marked this pull request as ready for review
August 24, 2026 20:31
Collaborator
|
post-merge ACK |
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.
zcashd is deprecated, but the README's setup instructions still directed readers to configure a zcashd instance. This rewrites the setup documentation to be zebrad-first:
Zcashdsection with aZebradsection covering the[rpc]configuration (listen_addr,enable_cookie_auth = false) that lightwalletd requires.--zcash-conf-pathat azebrad.toml, and document that the file extension selects the config format (zebrad.tomlvs. zcashd-style.conf), along with the--rpchost/--rpcport/--rpcuser/--rpcpasswordalternative.GetLightdInfowith grpcurl. The server answers this RPC by querying the backend node, so a successful reply verifies both the gRPC frontend and the backend connection. gRPC reflection is enabled at the default log level, so grpcurl needs no.protofiles.🤖 Generated with Claude Code