Bitcoin private key and address generator in golang

0

1

I am looking for a golang alternative to https://github.com/richardkiss/pycoin . So far I have found https://github.com/btcsuite/btcd but have not figured out how to generate private keys and addresses using btcd. The Python pycoin has a very handy ku utility to generate private keys and addresses from integers.

Is it possible to generate private keys and addresses from integers using https://github.com/btcsuite/btcd ?

TIA.

The Gripmaster

Posted 2019-09-08T17:56:59.897

Reputation: 115

Answers

2

btcd does no support this functionality by design, however you can use btcwallet which is written in golang and support what you want

https://github.com/btcsuite/btcwallet

here is a similar question https://github.com/btcsuite/btcd/issues/1308

Saxtheowl

Posted 2019-09-08T17:56:59.897

Reputation: 1 148