sealed abstract class TransactionSignatureSerializer extends AnyRef
Created by chris on 2/16/16. Wrapper that serializes like Transaction, but with the modifications required for the signature hash done https://github.com/bitcoin/bitcoin/blob/93c85d458ac3e2c496c1a053e1f5925f55e29100/src/script/interpreter.cpp#L1016-L1105 bitcoinj version of this https://github.com/bitcoinj/bitcoinj/blob/master/core/src/main/java/org/bitcoinj/core/Transaction.java#L924-L1008
- Alphabetic
- By Inheritance
- TransactionSignatureSerializer
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashForSignature(spendingTransaction: Transaction, signingInfo: InputSigningInfo[InputInfo], hashType: HashType, taprootOptions: TaprootSerializationOptions): HashDigest
Hashes a InputSigningInfo to give the value that needs to be signed by a Sign to produce a valid ECDigitalSignature for a transaction
- def hashForSignature(txSigComponent: TxSigComponent, hashType: HashType, taprootOptions: TaprootSerializationOptions): HashDigest
Hashes a TxSigComponent to give the value that needs to be signed by a Sign to produce a valid ECDigitalSignature for a transaction
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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()
- def removeOpCodeSeparators(script: Seq[ScriptToken]): Seq[ScriptToken]
Removes OP_CODESEPARATOR operations then returns the script.
- def serializeForSignature(spendingTransaction: Transaction, signingInfo: InputSigningInfo[InputInfo], hashType: HashType, taprootOptions: TaprootSerializationOptions): ByteVector
Implements the signature serialization algorithm that Satoshi Nakamoto originally created and the new signature serialization algorithm as specified by BIP143.
Implements the signature serialization algorithm that Satoshi Nakamoto originally created and the new signature serialization algorithm as specified by BIP143. https://github.com/bitcoin/bitcoin/blob/f8528134fc188abc5c7175a19680206964a8fade/src/script/interpreter.cpp#L1113
- def serializeForSignature(txSigComponent: TxSigComponent, hashType: HashType, taprootOptions: TaprootSerializationOptions): ByteVector
Implements the signature serialization algorithim that Satoshi Nakamoto originally created and the new signature serialization algorithm as specified by BIP143.
Implements the signature serialization algorithim that Satoshi Nakamoto originally created and the new signature serialization algorithm as specified by BIP143. https://github.com/bitcoin/bitcoin/blob/f8528134fc188abc5c7175a19680206964a8fade/src/script/interpreter.cpp#L1113
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()