miguelmota / go-ethereum-hdwallet

Ethereum HD Wallet derivations in Go (golang)
https://github.com/miguelmota/go-ethereum-hdwallet
MIT License
494 stars 269 forks source link

cannot find module providing package github.com/btcsuite/btcd/btcec #32

Open jeffcail opened 4 months ago

jeffcail commented 4 months ago

` $ go get github.com/miguelmota/go-ethereum-hdwallet

go: github.com/miguelmota/go-ethereum-hdwallet imports github.com/btcsuite/btcutil/hdkeychain imports github.com/btcsuite/btcd/btcec: cannot find module providing package github.com/btcsuite/btcd/btcec

`

shakefu commented 3 months ago

Looks like this package is using a very outdated reference to btcutil which has been rolled into the btcd repository.

bu commented 3 months ago

as time of writing this message (2024-06-01), put this line in your go.mod

replace github.com/btcsuite/btcutil => github.com/btcsuite/btcd/btcutil v1.1.5

should fix same issue to #30

jeffcail commented 2 months ago

as time of writing this message (2024-06-01), put this line in your go.mod

replace github.com/btcsuite/btcutil => github.com/btcsuite/btcd/btcutil v1.1.5

should fix same issue to #30

as time of writing this message (2024-06-01), put this line in your go.mod

replace github.com/btcsuite/btcutil => github.com/btcsuite/btcd/btcutil v1.1.5

should fix same issue to #30

ok, Tank yoou, I will try this

jeffcail commented 2 months ago

Looks like this package is using a very outdated reference to btcutil which has been rolled into the btcd repository.

yeah