Packages

c

org.bitcoins.core.script

ExecutedScriptProgram

case class ExecutedScriptProgram(txSignatureComponent: TxSigComponent, stack: List[ScriptToken], script: List[ScriptToken], originalScript: List[ScriptToken], altStack: List[ScriptToken], flags: Seq[ScriptFlag], lastCodeSeparator: Option[Int], codeSeparatorTapscriptIdx: Option[Int], error: Option[ScriptError]) extends StartedScriptProgram with Product with Serializable

Type for a ScriptProgram that has been evaluated completely by the ScriptInterpreter.

error

Indicates if the ScriptProgram has encountered a ScriptError in its execution.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExecutedScriptProgram
  2. Serializable
  3. Product
  4. Equals
  5. StartedScriptProgram
  6. ScriptProgram
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ExecutedScriptProgram(txSignatureComponent: TxSigComponent, stack: List[ScriptToken], script: List[ScriptToken], originalScript: List[ScriptToken], altStack: List[ScriptToken], flags: Seq[ScriptFlag], lastCodeSeparator: Option[Int], codeSeparatorTapscriptIdx: Option[Int], error: Option[ScriptError])

    error

    Indicates if the ScriptProgram has encountered a ScriptError in its execution.

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 altStack: List[ScriptToken]

    The alternative stack is used in some Script op codes.

    The alternative stack is used in some Script op codes.

    Definition Classes
    ExecutedScriptProgramScriptProgram
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. val codeSeparatorTapscriptIdx: Option[Int]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. val error: Option[ScriptError]
  10. def failExecution(error: ScriptError): ExecutedScriptProgram

    Sets a ScriptError on a given ScriptProgram.

    Sets a ScriptError on a given ScriptProgram.

    error

    the error that the program hit while being executed in the script interpreter

    returns

    the ExecutedScriptProgram with the given error set inside of the trait

    Definition Classes
    ExecutedScriptProgramScriptProgram
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. val flags: Seq[ScriptFlag]

    ScriptFlag that are run with the script.

    ScriptFlag that are run with the script. These flags indicate special conditions that a script needs to be run with. https://github.com/bitcoin/bitcoin/blob/master/src/script/interpreter.h#L31

    Definition Classes
    ExecutedScriptProgramScriptProgram
  13. def getAnnexHashOpt: Option[Sha256Digest]
    Definition Classes
    ScriptProgram
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. val lastCodeSeparator: Option[Int]

    The index of the last code separator WITH push operations in the original script

    The index of the last code separator WITH push operations in the original script

    Definition Classes
    ExecutedScriptProgramStartedScriptProgram
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. val originalScript: List[ScriptToken]

    The original script that was given.

    The original script that was given.

    Definition Classes
    ExecutedScriptProgramScriptProgram
  21. def productElementNames: Iterator[String]
    Definition Classes
    Product
  22. val script: List[ScriptToken]

    The script operations that need to still be executed.

    The script operations that need to still be executed.

    Definition Classes
    ExecutedScriptProgramScriptProgram
  23. val stack: List[ScriptToken]

    The current state of the stack for execution of the ScriptProgram.

    The current state of the stack for execution of the ScriptProgram.

    Definition Classes
    ExecutedScriptProgramScriptProgram
  24. def stackTopIsFalse: Boolean

    Returns true if the stack top is false

    Returns true if the stack top is false

    Definition Classes
    ScriptProgram
  25. def stackTopIsTrue: Boolean

    Returns true if the stack top is true

    Returns true if the stack top is true

    Definition Classes
    ScriptProgram
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def tapLeafHashOpt: Option[Sha256Digest]

    Calculates the leaf hash if we have a tapscript, else returns None if we don't have a tapscript

    Calculates the leaf hash if we have a tapscript, else returns None if we don't have a tapscript

    Definition Classes
    ScriptProgram
  28. def taprootSerializationOptions: TaprootSerializationOptions
  29. val txSignatureComponent: TxSigComponent

    This contains all relevant information for hashing and checking a ScriptSignature for a Transaction.

    This contains all relevant information for hashing and checking a ScriptSignature for a Transaction.

    Definition Classes
    ExecutedScriptProgramScriptProgram
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from StartedScriptProgram

Inherited from ScriptProgram

Inherited from AnyRef

Inherited from Any

Ungrouped