Packages

package v2

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class InitRequest(domainId: String, topologySnapshot: Option[TopologyTransactions], domainParameters: Option[StaticDomainParameters], snapshot: ByteString) extends GeneratedMessage with Updatable[InitRequest] with Product with Serializable

    Includes sufficient detail for (used in Daml 2.x):

    Includes sufficient detail for (used in Daml 2.x):

    • the sequencer to generate its own key to return the public key to the domain node
    • topology and additional bootstrap information
    topologySnapshot

    a topology snapshot up until the point where this sequencer's key is registered

    snapshot

    optional - snapshot to initialize sequencer from, as a versioned SequencerSnapshot of version v1 or higher

    Annotations
    @SerialVersionUID()
  2. final case class InitializeMediatorRequest(domainId: String, domainParameters: Option[StaticDomainParameters], sequencerConnections: Seq[SequencerConnection], sequencerTrustThreshold: Int) extends GeneratedMessage with Updatable[InitializeMediatorRequest] with Product with Serializable

    domainId

    the domain identifier

    domainParameters

    parameters for the domain, must match the parameters used by all other domain entities

    sequencerConnections

    how should the member connect to the domain sequencer

    sequencerTrustThreshold

    This field determines the minimum level of agreement, or consensus, required among the sequencers before a message is considered reliable and accepted by the system.

    Annotations
    @SerialVersionUID()
  3. final case class InitializeMediatorResponse() extends GeneratedMessage with Updatable[InitializeMediatorResponse] with Product with Serializable
    Annotations
    @SerialVersionUID()
  4. final case class InitializeSequencerRequest(topologySnapshot: Option[TopologyTransactions], domainParameters: Option[StaticDomainParameters], snapshot: ByteString) extends GeneratedMessage with Updatable[InitializeSequencerRequest] with Product with Serializable

    Includes sufficient detail for:

    Includes sufficient detail for:

    • the sequencer to generate its own key to return the public key to the domain node
    • topology and additional bootstrap information
    topologySnapshot

    a topology snapshot up until (including) the point where this sequencer is becoming active on the domain the topology snapshot will be persisted in the domain store of the sequencer

    snapshot

    optional - snapshot to initialize sequencer from, as a versioned SequencerSnapshot of version v1 or higher

    Annotations
    @SerialVersionUID()
  5. final case class InitializeSequencerResponse(replicated: Boolean) extends GeneratedMessage with Updatable[InitializeSequencerResponse] with Product with Serializable

    replicated

    Indicate if the initialized sequencer is replicated

    Annotations
    @SerialVersionUID()

Ungrouped