Packages

final case class NodeCreate[+Cid](coid: Cid, templateId: TypeConName, arg: Value[Cid], agreementText: String, signatories: Set[Party], stakeholders: Set[Party], key: Option[KeyWithMaintainers[Value[Cid]]], version: TransactionVersion) extends GenActionNode[Nothing, Cid] with LeafOnlyActionNode[Cid] with Create with Product with Serializable

Denotes the creation of a contract instance.

Linear Supertypes
Create, LeafOnlyActionNode[Cid], GenActionNode[Nothing, Cid], ActionNodeInfo, GenNode[Nothing, Cid], CidContainer[GenActionNode[Nothing, Cid]], Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeCreate
  2. Create
  3. LeafOnlyActionNode
  4. GenActionNode
  5. ActionNodeInfo
  6. GenNode
  7. CidContainer
  8. Serializable
  9. Product
  10. Equals
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new NodeCreate(coid: Cid, templateId: TypeConName, arg: Value[Cid], agreementText: String, signatories: Set[Party], stakeholders: Set[Party], key: Option[KeyWithMaintainers[Value[Cid]]], version: TransactionVersion)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val agreementText: String
  5. val arg: Value[Cid]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. final def assertNoCid[B](message: (ContractId) => String)(implicit checker: NoCidChecker[GenActionNode[Nothing, Cid], B]): B
    Definition Classes
    CidContainer
  8. def byKey: Boolean
    Definition Classes
    NodeCreateGenActionNode
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. val coid: Cid
  11. def coinst: ContractInst[Value[Cid]]
  12. final def ensureNoCid[B](implicit checker: NoCidChecker[GenActionNode[Nothing, Cid], B]): Either[ContractId, B]
    Definition Classes
    CidContainer
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def foreach2(fNid: (Nothing) => Unit, fCid: (Cid) => Unit): Unit
    Definition Classes
    GenActionNodeGenNode
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def informeesOfNode: Set[Party]

    Compute the informees of a node based on the ledger model definition.

    Compute the informees of a node based on the ledger model definition.

    Refer to https://docs.daml.com/concepts/ledger-model/ledger-privacy.html#projections

    Definition Classes
    CreateActionNodeInfo
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. val key: Option[KeyWithMaintainers[Value[Cid]]]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def optVersion: Option[TransactionVersion]
    Definition Classes
    GenNode
  24. def productElementNames: Iterator[String]
    Definition Classes
    Product
  25. final def requiredAuthorizers: Set[Party]

    Required authorizers (see ledger model); UNSAFE TO USE on fetch nodes of transaction with versions < 5

    Required authorizers (see ledger model); UNSAFE TO USE on fetch nodes of transaction with versions < 5

    The ledger model defines the fetch node actingParties as the nodes' required authorizers. However, the our transaction data structure did not include the actingParties in versions < 5. The usage of this method must thus be restricted to: 1. settings where no fetch nodes appear (for example, the validate method of DAMLe, which uses it on root nodes, which are guaranteed never to contain a fetch node) 2. Daml ledger implementations that do not store or process any transactions with version < 5

    Definition Classes
    CreateActionNodeInfo
  26. final def self: NodeCreate.this.type
    Attributes
    protected
    Definition Classes
    GenActionNodeCidContainer
  27. val signatories: Set[Party]
    Definition Classes
    NodeCreateCreate
  28. val stakeholders: Set[Party]
    Definition Classes
    NodeCreateCreate
  29. final def suffixCid[B](f: (Hash) => Bytes)(implicit suffixer: CidSuffixer[GenActionNode[Nothing, Cid], B]): Either[String, B]
    Definition Classes
    CidContainer
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. val templateId: TypeConName
    Definition Classes
    NodeCreateGenActionNode
  32. val version: TransactionVersion
    Definition Classes
    NodeCreateGenActionNode
  33. def versionValue[Cid2 >: Cid](v: Value[Cid2]): VersionedValue[Cid2]
    Attributes
    protected
    Definition Classes
    GenActionNode
  34. def versionedCoinst: ContractInst[VersionedValue[Cid]]
  35. def versionedKey: Option[KeyWithMaintainers[VersionedValue[Cid]]]
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Create

Inherited from LeafOnlyActionNode[Cid]

Inherited from GenActionNode[Nothing, Cid]

Inherited from ActionNodeInfo

Inherited from GenNode[Nothing, Cid]

Inherited from CidContainer[GenActionNode[Nothing, Cid]]

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped