txPublicKey static method

Uint8List txPublicKey(
  1. Uint8List txSecretKey
)

Implementation

static Uint8List txPublicKey(Uint8List txSecretKey) {
  return VaultKeeper.vault.ed25519.scalarMultBase(txSecretKey);
}