Wallet
Wallet class inherits Signer and can sign transactions and messages using.
func New(privateKeyStr string) (w Wallet, err error)
You can create Wallet w/ your privateKey string.
func main() {
w, _ := wallet.New("<privateKey>")
}
Wallet class inherits Signer and can sign transactions and messages using.
func New(privateKeyStr string) (w Wallet, err error)
You can create Wallet w/ your privateKey string.
func main() {
w, _ := wallet.New("<privateKey>")
}