Claude/init claude docs fn eqz#188
Closed
susruth wants to merge 4 commits intoBlockstream:new-indexfrom
Closed
Conversation
Detailed plan covering feature flag, network constants, address handling, configuration, and all files requiring changes to support Litecoin as a new network alongside Bitcoin and Liquid. https://claude.ai/code/session_01S9ujRXvjmfhRpmdYdjxRk5
Implement Litecoin (mainnet, testnet, regtest) support following the same mutually-exclusive feature flag pattern used by `liquid`. Key changes: - New `litecoin` feature flag in Cargo.toml - Network enum variants: Litecoin, LitecoinTestnet, LitecoinRegtest - Litecoin-specific magic bytes, genesis hashes, and default ports - Custom address encoding/decoding (bech32 ltc1/tltc1/rltc1 and base58check with Litecoin version bytes) in util/litecoin_addr.rs - Updated cfg guards across codebase for three-way feature exclusivity - Default daemon directory ~/.litecoin, Litecoin Core RPC port 9332 - Electrum discovery default servers for Litecoin - Unit tests for address encoding roundtrips - Documentation updates in CLAUDE.md MWEB (MimbleWimble Extension Blocks) support is not included and is planned as a follow-up feature. https://claude.ai/code/session_01S9ujRXvjmfhRpmdYdjxRk5
Implements full Dogecoin support including: - AuxPoW (Auxiliary Proof of Work) block deserialization for merged mining - Dogecoin address encoding/decoding (P2PKH/P2SH base58check, no SegWit) - Network configuration (magic bytes, genesis hashes, RPC ports, data dirs) - Config, REST API, Electrum, and precache integration with Dogecoin addresses - Block deserialization abstraction via chain::deserialize_block() used by daemon.rs and fetch.rs, dispatching to AuxPoW-aware parser for Dogecoin The dogecoin feature is mutually exclusive with liquid and litecoin. Networks: dogecoin, dogecointestnet, dogecoinregtest. https://claude.ai/code/session_01S9ujRXvjmfhRpmdYdjxRk5
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.
No description provided.