Packages

sealed trait ContractInfo extends TLVSerializable[ContractInfoTLV]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ContractInfo
  2. TLVSerializable
  3. NetworkElement
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def allOutcomesAndPayouts: Vector[(OracleOutcome, Satoshis)]

    Computes the CET set and their corresponding payouts using CETCalculator.

  2. abstract def contractDescriptors: Vector[ContractDescriptor]
  3. abstract def contracts: Vector[SingleContractInfo]
  4. abstract def maxOffererPayout: Satoshis

    Returns the maximum payout the offerer could win from this contract

  5. abstract def oracleInfos: Vector[OracleInfo]
  6. abstract def toTLV: ContractInfoTLV
    Definition Classes
    TLVSerializable
  7. abstract def totalCollateral: Satoshis
  8. abstract def updateOnAccept(newTotalCollateral: Satoshis, negotiationFields: NegotiationFields): ContractInfo

    A ContractInfo can be constructed by the offerer, but it will not contain new information which alters the DLC's contract which is received in the accept message.

    A ContractInfo can be constructed by the offerer, but it will not contain new information which alters the DLC's contract which is received in the accept message.

    Specifically if the total collateral changes or negotiation fields are relevant.

    In these cases, this function should be called to update the ContractInfo.

Concrete 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. lazy val adaptorPoints: Vector[ECPublicKey]
  5. lazy val adaptorPointsIndexed: Vector[Indexed[ECPublicKey]]
  6. lazy val allOutcomes: Vector[OracleOutcome]

    Corresponds with this DLC's CET set

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def byteSize: Long

    The size of the NetworkElement in bytes.

    The size of the NetworkElement in bytes.

    Definition Classes
    NetworkElement
  9. def bytes: ByteVector

    The byte representation of the NetworkElement

    The byte representation of the NetworkElement

    Definition Classes
    TLVSerializableNetworkElement
  10. def bytesLE: ByteVector

    The byte representation of the NetworkElement in little endian

    The byte representation of the NetworkElement in little endian

    Definition Classes
    NetworkElement
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def findOutcome(sigs: Vector[OracleSignatures]): Option[OracleOutcome]

    Searches all possible outcomes for one which corresponds to the given signatures.

    Searches all possible outcomes for one which corresponds to the given signatures.

    Warning: This will return false if too many OracleSignatures are given.

  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def getPayouts(outcome: OracleOutcome): (Satoshis, Satoshis)

    Returns the payouts for the outcome as (toOffer, toAccept)

  18. def getPayouts(sigs: Vector[OracleSignatures]): (Satoshis, Satoshis)

    Returns the payouts for the signature as (toOffer, toAccept)

  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hex: String

    The hexadecimal representation of the NetworkElement

    The hexadecimal representation of the NetworkElement

    Definition Classes
    NetworkElement
  21. def hexLE: String

    The hexadecimal representation of the NetworkElement in little endian

    The hexadecimal representation of the NetworkElement in little endian

    Definition Classes
    NetworkElement
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. lazy val outcomeMap: Map[OracleOutcome, (ECPublicKey, Satoshis, Satoshis)]

    Map OracleOutcomes (which correspond to CETs) to their adpator point and payouts

  27. def resultOfOutcome(outcome: OracleOutcome): (ECPublicKey, Satoshis, Satoshis)

    Returns the adaptor point and payouts for a given OracleOutcome

  28. def serializationVersion: DLCSerializationVersion
  29. lazy val sigPointMap: Map[ECPublicKey, OracleOutcome]

    Maps adpator points to their corresponding OracleOutcomes (which correspond to CETs)

  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. def verifySigs(outcome: OracleOutcome, sigs: Vector[OracleSignatures]): Boolean

    Checks if the given OracleSignatures exactly match the given OracleOutcome.

    Checks if the given OracleSignatures exactly match the given OracleOutcome.

    Warning: This will return false if too many OracleSignatures are given.

    TODO: Needs a lot of optimization

  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from NetworkElement

Inherited from AnyRef

Inherited from Any

Ungrouped