Packages

final case class StaticDomainParameters(reconciliationInterval: PositiveSeconds, maxRatePerParticipant: NonNegativeInt, maxInboundMessageSize: NonNegativeInt, uniqueContractKeys: Boolean, requiredSigningKeySchemes: NonEmptySet[SigningKeyScheme], requiredEncryptionKeySchemes: NonEmptySet[EncryptionKeyScheme], requiredSymmetricKeySchemes: NonEmptySet[SymmetricKeyScheme], requiredHashAlgorithms: NonEmptySet[HashAlgorithm], requiredCryptoKeyFormats: NonEmptySet[CryptoKeyFormat], protocolVersion: ProtocolVersion) extends HasVersionedWrapper[VersionedStaticDomainParameters] with HasProtoV0[protocol.v0.StaticDomainParameters] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StaticDomainParameters
  2. Serializable
  3. Product
  4. Equals
  5. HasProtoV0
  6. HasVersionedWrapper
  7. HasVersionedToByteString
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new StaticDomainParameters(reconciliationInterval: PositiveSeconds, maxRatePerParticipant: NonNegativeInt, maxInboundMessageSize: NonNegativeInt, uniqueContractKeys: Boolean, requiredSigningKeySchemes: NonEmptySet[SigningKeyScheme], requiredEncryptionKeySchemes: NonEmptySet[EncryptionKeyScheme], requiredSymmetricKeySchemes: NonEmptySet[SymmetricKeyScheme], requiredHashAlgorithms: NonEmptySet[HashAlgorithm], requiredCryptoKeyFormats: NonEmptySet[CryptoKeyFormat], protocolVersion: ProtocolVersion)

Value Members

  1. def maxBatchMessageSize: NonNegativeInt

    Compute the max size limit for the sum of the envelope payloads of a batch

    Compute the max size limit for the sum of the envelope payloads of a batch

    taking 0.9 of the max inbound size, assuming that this will be enough to accommodate any metadata and the list of recipients.

  2. val maxInboundMessageSize: NonNegativeInt
  3. val maxRatePerParticipant: NonNegativeInt
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. val protocolVersion: ProtocolVersion
  6. val reconciliationInterval: PositiveSeconds
  7. val requiredCryptoKeyFormats: NonEmptySet[CryptoKeyFormat]
  8. val requiredEncryptionKeySchemes: NonEmptySet[EncryptionKeyScheme]
  9. val requiredHashAlgorithms: NonEmptySet[HashAlgorithm]
  10. val requiredSigningKeySchemes: NonEmptySet[SigningKeyScheme]
  11. val requiredSymmetricKeySchemes: NonEmptySet[SymmetricKeyScheme]
  12. def toByteArray(version: ProtocolVersion): Array[Byte]

    Yields a byte array representation of the corresponding Versioned... wrapper of this instance.

    Yields a byte array representation of the corresponding Versioned... wrapper of this instance.

    Definition Classes
    HasVersionedWrapper
  13. def toByteString(version: ProtocolVersion): ByteString

    Yields a byte string representation of the corresponding Versioned... wrapper of this instance.

    Yields a byte string representation of the corresponding Versioned... wrapper of this instance.

    Definition Classes
    HasVersionedWrapperHasVersionedToByteString
  14. def toProtoV0: v0.StaticDomainParameters

    Yields the proto representation of the class.

    Yields the proto representation of the class.

    Subclasses should make this method public by default, as this supports composing proto serializations. Keep it protected, if there are good reasons for it (e.g. com.digitalasset.canton.serialization.MemoizedEvidence).

    Definition Classes
    StaticDomainParametersHasProtoV0
  15. def toProtoVersioned(version: ProtocolVersion): VersionedStaticDomainParameters

    Yields the proto representation of the class inside a Versioned... wrapper.

    Yields the proto representation of the class inside a Versioned... wrapper.

    Subclasses should make this method public by default, as this supports composing proto serializations. Keep it protected, if there are good reasons for it (e.g. com.digitalasset.canton.serialization.MemoizedEvidence).

    Definition Classes
    StaticDomainParametersHasVersionedWrapper
  16. val uniqueContractKeys: Boolean