SolanaPrivateKey.fromSeed constructor
Factory method to create a SolanaPrivateKey instance from a seed represented as a list of bytes.
Implementation
factory SolanaPrivateKey.fromSeed(List<int> keyBytes) {
final privateKey = Ed25519PrivateKey.fromBytes(keyBytes);
return SolanaPrivateKey._(privateKey);
}