data class MultiOwnerState : ContractState, State
Alternative state with multiple owners. This exists primarily to provide a dummy state with multiple participants, and could in theory be merged with SingleOwnerState by putting the additional participants in a different field, however this is a good example of a contract with multiple states.
<init> |
MultiOwnerState(magicNumber: Int = 0, owners: List<PublicKey>) Alternative state with multiple owners. This exists primarily to provide a dummy state with multiple participants, and could in theory be merged with SingleOwnerState by putting the additional participants in a different field, however this is a good example of a contract with multiple states. |
contract |
val contract: DummyContract An instance of the contract class that will verify this state. |
magicNumber |
val magicNumber: Int |
owners |
val owners: List<PublicKey> |
participants |
val participants: List<PublicKey> A |