Command

data class Command<T : CommandData>(val value: T, val signers: List<PublicKey>)

Command data/content plus pubkey pair: the signature is stored at the end of the serialized bytes

Constructors

Link copied to clipboard
constructor(data: T, key: PublicKey)
constructor(value: T, signers: List<PublicKey>)

Properties

Link copied to clipboard
Link copied to clipboard
val value: T

Functions

Link copied to clipboard
open override fun toString(): String