corda / net.corda.core.transactions / NotaryChangeWireTransaction

NotaryChangeWireTransaction

data class NotaryChangeWireTransaction : CoreTransaction

A special transaction for changing the notary of a state. It only needs specifying the state(s) as input(s), old and new notaries. Output states can be computed by applying the notary modification to corresponding inputs on the fly.

Types

Component

enum class Component

Constructors

<init>

Old version of NotaryChangeWireTransaction constructor for ABI compatibility.

NotaryChangeWireTransaction(serializedComponents: List<OpaqueBytes>)NotaryChangeWireTransaction(inputs: List<StateRef>, notary: Party, newNotary: Party)

A special transaction for changing the notary of a state. It only needs specifying the state(s) as input(s), old and new notaries. Output states can be computed by applying the notary modification to corresponding inputs on the fly.

NotaryChangeWireTransaction(serializedComponents: List<OpaqueBytes>, digestService: DigestService)

Properties

digestService

val digestService: DigestService

id

A privacy salt is not really required in this case, because we already used nonces in normal transactions and thus input state refs will always be unique. Also, filtering doesn't apply on this type of transactions.

val id: SecureHash

inputs

The inputs of this transaction, containing state references only.

val inputs: List<StateRef>

networkParametersHash

Hash of the network parameters that were in force when the transaction was notarised. Null means, that the transaction was created on older version of Corda (before 4), resolution will default to initial parameters.

val networkParametersHash: SecureHash?

newNotary

Identity of the notary service to reassign the states to.

val newNotary: Party

notary

If present, the notary for this transaction. If absent then the transaction is not notarised at all. This is intended for issuance/genesis transactions that don't consume any other states and thus can't double spend anything.

val notary: Party

outputs

This transaction does not contain any output states, outputs can be obtained by resolving a NotaryChangeLedgerTransaction and applying the notary modification to inputs.

val outputs: List<TransactionState<ContractState>>

references

The reference inputs of this transaction, containing the state references only.

val references: List<StateRef>

serializedComponents

Contains all of the transaction components in serialized form. This is used for calculating the transaction id in a deterministic fashion, since re-serializing properties may result in a different byte sequence depending on the serialization context.

val serializedComponents: List<OpaqueBytes>

Functions

copy

Old version of NotaryChangeWireTransaction.copy for ABI compatibility.

fun copy(serializedComponents: List<OpaqueBytes>): NotaryChangeWireTransaction

resolve

Resolves input states and network parameters and builds a NotaryChangeLedgerTransaction.

fun resolve(services: ServicesForResolution, sigs: List<TransactionSignature>): NotaryChangeLedgerTransaction

Resolves input states and builds a NotaryChangeLedgerTransaction.

fun resolve(services: ServiceHub, sigs: List<TransactionSignature>): NotaryChangeLedgerTransaction