abstract class AbstractStateReplacementFlow<T>
Abstract flow to be used for replacing one state with another, for example when changing the notary of a state. Notably this requires a one to one replacement of states, states cannot be split, merged or issued as part of these flows.
The Instigator assembles the transaction for state replacement and sends out change proposals to all participants (Acceptor) of that state. If participants agree to the proposed change, they each sign the transaction. Finally, Instigator sends the transaction containing all signatures back to each participant so they can record it and use the new updated state for future transactions.
Acceptor |
abstract class Acceptor<T> : FlowLogic<Unit> |
Instigator |
abstract class Instigator<out S : ContractState, T> : FlowLogic<StateAndRef<S>> |
Proposal |
interface Proposal<out T> |
Result |
data class Result |
<init> |
AbstractStateReplacementFlow()
Abstract flow to be used for replacing one state with another, for example when changing the notary of a state. Notably this requires a one to one replacement of states, states cannot be split, merged or issued as part of these flows. |
NotaryChangeFlow |
object NotaryChangeFlow : AbstractStateReplacementFlow<Party>
A flow to be used for changing a state's Notary. This is required since all input states to a transaction must point to the same notary. |