Go
go get github.com/devdasx/wallet-hd-derivation-kit@v1.0.0
source := wallethd.MnemonicSource(os.Getenv("WALLET_MNEMONIC"), "")
result, err := wallethd.DeriveAddress(source, wallethd.Options{Chain: "dogecoin"})
if err != nil { log.Fatal(err) }
fmt.Println(result.Address)
The module is discoverable through pkg.go.dev after the public tag is fetched. Runnable example.