Alexander Breadman

Results 4 comments of Alexander Breadman

As a user I want to look at the repo and see the latest API/examples, and the whole thing be self-referential and intuitive, not having to follow examples that don't...

I would be grateful to know if there is an interface between bip32.ExtendedKey and bec.PrivateKey, I'm building a wallet implementation to learn, which can hopefully have both working in the...

``` import ( "context" "fmt" "github.com/kr/pretty" "github.com/libsv/go-bk/bec" "github.com/libsv/go-bk/wif" "github.com/libsv/go-bt/v2" "github.com/libsv/go-bt/v2/bscript" "github.com/XXXXXXXX/bsv" ) func (self *KeyInfo) SendSatoshisToAddress(satoshis uint64, scriptHash, address, changeAddress string) (string, error) { tx := bt.NewTx() var availableSatoshis uint64...

Also the bec.PrivateKey when made into a bitcoin address with the go-bt repo generates a different address than the official instructions on the bitcoin sv website which I translated to...