Can you tell me where I went wrong, I can give you 80. DCR, thank you,Before I find the hex, I enter in your thread only 32 characters
If you have the seed hex, then replace your hex into this golang code:
package main
import (
"github.com/decred/dcrwallet/pgpwordlist"
"encoding/hex"
"fmt"
)
func main() {
bytes, err := hex.DecodeString("e92cfab0018f6519f885c13939687de14c2b8f6e3e5a55dfa6e3861ba9a105d5")
if err != nil {
panic(err)
}
words, err := pgpwordlist.ToStringChecksum(bytes)
if err != nil {
panic(err)
}
fmt.Printf("words: %s\n", words)
}
Compile and run it.