corda / net.corda.core.transactions / TransactionWithSignatures

TransactionWithSignatures

@DoNotImplement interface TransactionWithSignatures : NamedByHash

An interface for transactions containing signatures, with logic for signature verification.

Properties

requiredSigningKeys

Specifies all the public keys that require signatures for the transaction to be valid.

abstract val requiredSigningKeys: Set<PublicKey>

sigs

List of signatures on this transaction.

abstract val sigs: List<TransactionSignature>

Functions

checkSignaturesAreValid

Mathematically validates the signatures that are present on this transaction. This does not imply that the signatures are by the right keys, or that there are sufficient signatures, just that they aren't corrupt. If you use this function directly you'll need to do the other checks yourself. Probably you want verifyRequiredSignatures instead.

open fun checkSignaturesAreValid(): Unit

getKeyDescriptions

Get a human readable description of where signatures are required from, and are missing, to assist in debugging the underlying cause.

abstract fun getKeyDescriptions(keys: Set<PublicKey>): List<String>

getMissingSigners

Return the PublicKeys for which we still need signatures.

open fun getMissingSigners(): Set<PublicKey>

verifyRequiredSignatures

Verifies the signatures on this transaction and throws if any are missing. In this context, "verifying" means checking they are valid signatures and that their public keys are in the requiredSigningKeys set.

open fun verifyRequiredSignatures(): Unit

verifySignaturesExcept

Verifies the signatures on this transaction and throws if any are missing which aren't passed as parameters. In this context, "verifying" means checking they are valid signatures and that their public keys are in the requiredSigningKeys set.

open fun verifySignaturesExcept(vararg allowedToBeMissing: PublicKey): Unit
open fun verifySignaturesExcept(allowedToBeMissing: Collection<PublicKey>): Unit

Inheritors

ContractUpgradeLedgerTransaction

A contract upgrade transaction with fully resolved inputs and signatures. Contract upgrade transactions are separate to regular transactions because their validation logic is specialised; the original contract by definition cannot be aware of the upgraded contract (it was written after the original contract was developed), so its validation logic cannot succeed. Instead alternative verification logic is used which verifies that the outputs correspond to the inputs after upgrading.

class ContractUpgradeLedgerTransaction : FullTransaction, TransactionWithSignatures

NotaryChangeLedgerTransaction

A notary change transaction with fully resolved inputs and signatures. In contrast with a regular transaction, signatures are checked against the signers specified by input states' participants fields, so full resolution is needed for signature verification.

class NotaryChangeLedgerTransaction : FullTransaction, TransactionWithSignatures

SignedTransaction

SignedTransaction wraps a serialized WireTransaction. It contains one or more signatures, each one for a public key (including composite keys) that is mentioned inside a transaction command. SignedTransaction is the top level transaction type and the type most frequently passed around the network and stored. The identity of a transaction is the hash of Merkle root of a WireTransaction, therefore if you are storing data keyed by WT hash be aware that multiple different STs may map to the same key (and they could be different in important ways, like validity!). The signatures on a SignedTransaction might be invalid or missing: the type does not imply validity. A transaction ID should be the hash of the WireTransaction Merkle tree root. Thus adding or removing a signature does not change it.

data class SignedTransaction : TransactionWithSignatures