typestring
typestring
The README is outdated `tss.SetCurve` has been marked as deprecated you should pass the curve when calling `tss.NewParameters` check #185
In the `common.SignatureData` struct, `V` is in the `SignatureRecovery` field.
You can use the `github.com/binance-chain/tss-lib/crypto/vss` package to recover the private key. I've wrote an example for you. I haven't tested it though. ```go package main import ( "crypto/ecdsa" "crypto/elliptic" "github.com/binance-chain/tss-lib/crypto/vss"...