publicKeys property

CardanoShelleyPublicKeys get publicKeys

Retrieves and returns the corresponding public keys associated with the private keys.

Implementation

CardanoShelleyPublicKeys get publicKeys {
  return CardanoShelleyPublicKeys(
    pubAddrKey: privAddrKey.publicKey,
    pubSkKey: privSkKey.publicKey,
    coinConf: coinConf,
  );
}