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.
- Alphabetic
- By Inheritance
- ExecutedScriptProgram
- Serializable
- Product
- Equals
- StartedScriptProgram
- ScriptProgram
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- 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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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
- ExecutedScriptProgram → ScriptProgram
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val codeSeparatorTapscriptIdx: Option[Int]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val error: Option[ScriptError]
- 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
- ExecutedScriptProgram → ScriptProgram
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- 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
- ExecutedScriptProgram → ScriptProgram
- def getAnnexHashOpt: Option[Sha256Digest]
- Definition Classes
- ScriptProgram
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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
- ExecutedScriptProgram → StartedScriptProgram
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val originalScript: List[ScriptToken]
The original script that was given.
The original script that was given.
- Definition Classes
- ExecutedScriptProgram → ScriptProgram
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val script: List[ScriptToken]
The script operations that need to still be executed.
The script operations that need to still be executed.
- Definition Classes
- ExecutedScriptProgram → ScriptProgram
- 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
- ExecutedScriptProgram → ScriptProgram
- def stackTopIsFalse: Boolean
Returns true if the stack top is false
Returns true if the stack top is false
- Definition Classes
- ScriptProgram
- def stackTopIsTrue: Boolean
Returns true if the stack top is true
Returns true if the stack top is true
- Definition Classes
- ScriptProgram
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- 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
- def taprootSerializationOptions: TaprootSerializationOptions
- Definition Classes
- ExecutedScriptProgram → StartedScriptProgram
- 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
- ExecutedScriptProgram → ScriptProgram
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()