interface NamedByHash
Implemented by anything that can be named by a secure hash value (e.g. transactions, attachments).
id |
abstract val id: SecureHash |
Attachment |
interface Attachment : NamedByHash An attachment is a ZIP (or an optionally signed JAR) that contains one or more files. Attachments are meant to contain public static data which can be referenced from transactions and utilised from contracts. Good examples of how attachments are meant to be used include: |
SignedTransaction |
data class SignedTransaction : NamedByHash Container for a WireTransaction and attached signatures. |
WireTransaction |
data class WireTransaction : NamedByHash Transaction ready for serialisation, without any signatures attached. |