Ejemplo n.º 1
0
        public static KeyPair FromAccountId(string accountId)
        {
            var bytes = StrKey.DecodeCheck(VersionByte.ed25519Publickey, accountId);

            return(FromPublicKey(bytes));
        }
Ejemplo n.º 2
0
        public static KeyPair FromSeed(string seed)
        {
            var bytes = StrKey.DecodeCheck(VersionByte.ed25519SecretSeed, seed);

            return(FromRawSeed(bytes));
        }