Packages

final case class Metadata(submissionSeed: Option[Hash], submissionTime: Timestamp, usedPackages: Set[PackageId], dependsOnTime: Boolean, nodeSeeds: ImmArray[(NodeId, Hash)]) extends Product with Serializable

Transaction meta data

submissionSeed

: the submission seed used to derive the contract IDs. If undefined no seed has been used (the legacy contract ID scheme have been used) or it is unknown (output of partial reinterpretation).

submissionTime

: the submission time

usedPackages

The set of packages used during command processing. This is a hint for what packages are required to validate the transaction using the current interpreter. If set to empty the package dependency have not be computed.

dependsOnTime

: indicate the transaction computation depends on ledger time.

nodeSeeds

: An association list that maps to each ID of create and exercise nodes its seeds.

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Metadata
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Metadata(submissionSeed: Option[Hash], submissionTime: Timestamp, usedPackages: Set[PackageId], dependsOnTime: Boolean, nodeSeeds: ImmArray[(NodeId, Hash)])

    submissionSeed

    : the submission seed used to derive the contract IDs. If undefined no seed has been used (the legacy contract ID scheme have been used) or it is unknown (output of partial reinterpretation).

    submissionTime

    : the submission time

    usedPackages

    The set of packages used during command processing. This is a hint for what packages are required to validate the transaction using the current interpreter. If set to empty the package dependency have not be computed.

    dependsOnTime

    : indicate the transaction computation depends on ledger time.

    nodeSeeds

    : An association list that maps to each ID of create and exercise nodes its seeds.

Value Members

  1. val dependsOnTime: Boolean
  2. val nodeSeeds: ImmArray[(NodeId, Hash)]
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. val submissionSeed: Option[Hash]
  5. val submissionTime: Timestamp
  6. val usedPackages: Set[PackageId]