GetKeysFromString()
Get private key, public key and wallet address form a seed phrase written on a single Map object
func GetKeysFromString(seedPhrase string) (map[string]string, error)Name
Type
Description
package main
import (
"fmt"
"github.com/circular-protocol/circular-go/utils"
)
func main() {
seed := "circular protocol hello world test"
res, _ := utils.GetKeysFromString(seed)
fmt.Println(res)
}Last updated