zeekay 8b8e4a9496 fix(deps): correct moved-tag hashes for luxfi modules in go.sum
Several luxfi versions carry TWO different contents across this workspace,
because published tags were moved instead of a new patch being cut:
age@v1.5.0, pq@v1.0.3, threshold@v1.9.4, zap@v0.6.0, zap@v0.8.1.

Adjudicated before editing, since "checksum mismatch / SECURITY ERROR" is also
what a real supply-chain attack looks like. It is not one here: sum.golang.org
holds the OLD hash while proxy.golang.org and a direct fetch BOTH serve the same
NEW bytes. Two independent transports agreeing means nothing is rewriting
content in flight — the tag moved at source. The sumdb entry is a fossil:
GOPRIVATE covers github.com/luxfi/* with GOSUMDB=off, so our own modules never
consult the checksum DB and a moved tag splits consumers silently.

The old bytes are served by nothing now, so a stale pin can never build.
Corrected to the only content that exists, in BOTH line forms (h1: and
/go.mod h1:) — Go reports these one at a time, so a partial fix just relocates
the error.

Deliberately no `go mod tidy`: this changes no selected version, only the
recorded hash of versions already chosen.

Verified: `go list -m all` resolves with no checksum error.

The durable fix is upstream: never move a published tag, cut x.y.z+1 instead.
2026-07-26 02:42:49 -07:00
2026-06-28 20:57:14 -07:00
2025-07-25 00:45:26 -05:00
2025-12-20 22:26:39 -08:00
2025-12-20 22:26:39 -08:00
2025-07-25 00:45:26 -05:00
2025-07-25 00:45:26 -05:00
2026-02-14 05:26:20 -08:00
2025-12-20 22:26:39 -08:00
2026-06-28 20:57:15 -07:00
2025-07-25 00:45:26 -05:00

go-bip32

GO-BIP32

This repository contains a local copy of the original github.com/tyler-smith/go-bip32 library.

⚠️ Important Notice

The original go-bip32 library by tyler-smith has been removed from GitHub. To ensure continuity and compatibility for existing projects, this repository provides a preserved version of the library based on a previously cached local copy.

Usage

There are two ways to use this fork in your project:

  1. Replace the original path in go.mod
replace github.com/tyler-smith/go-bip32 => github.com/luxfi/go-bip32 v1.0.0
  1. Import directly via go get You can also import this fork directly using:
go get github.com/luxfi/go-bip32

Original README

The original README from the now-deleted repository is preserved in this repo as tyler-smith.README.md

S
Description
BIP-32 HD key derivation library for Go: generate and manage hierarchical deterministic wallets.
Readme BSD-3-Clause
68 KiB
Languages
Go 100%