Packages

object TransactionTestUtil extends TransactionTestUtil

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TransactionTestUtil
  2. TransactionTestUtil
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def bech32mAddr: Bech32mAddress
    Definition Classes
    TransactionTestUtil
  6. def buildCreditingTransaction(scriptPubKey: ScriptPubKey, amount: Option[CurrencyUnit] = None): (Transaction, UInt32)

    Mimics this test utility found in bitcoin core https://github.com/bitcoin/bitcoin/blob/605c17844ea32b6d237db6d83871164dc7d59dab/src/test/script_tests.cpp#L57

    Mimics this test utility found in bitcoin core https://github.com/bitcoin/bitcoin/blob/605c17844ea32b6d237db6d83871164dc7d59dab/src/test/script_tests.cpp#L57

    returns

    the transaction and the output index of the scriptPubKey

    Definition Classes
    TransactionTestUtil
  7. def buildSpendingTransaction(creditingTx: Transaction, scriptSignature: ScriptSignature, outputIndex: UInt32, witness: Option[(ScriptWitness, CurrencyUnit)] = None): (Transaction, UInt32)

    Builds a spending transaction according to bitcoin core

    Builds a spending transaction according to bitcoin core

    returns

    the built spending transaction and the input index for the script signature

    Definition Classes
    TransactionTestUtil
  8. def buildTransactionTo(output: TransactionOutput, outPoint: TransactionOutPoint): Transaction
    Definition Classes
    TransactionTestUtil
  9. def buildTransactionTo(output: TransactionOutput): Transaction

    Builds a dummy transaction that sends money to the given output

    Builds a dummy transaction that sends money to the given output

    Definition Classes
    TransactionTestUtil
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. def dummyPSBT(prevTxId: DoubleSha256Digest = DoubleSha256Digest.empty, scriptSig: ScriptSignature = EmptyScriptSignature, spk: ScriptPubKey = EmptyScriptPubKey): PSBT
    Definition Classes
    TransactionTestUtil
  12. def dummyTx(prevTxId: DoubleSha256Digest = DoubleSha256Digest.empty, scriptSig: ScriptSignature = EmptyScriptSignature, spk: ScriptPubKey = EmptyScriptPubKey): Transaction
    Definition Classes
    TransactionTestUtil
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def multiSignatureScriptPubKey: ScriptPubKey
    Definition Classes
    TransactionTestUtil
  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. val output: TransactionOutput
    Definition Classes
    TransactionTestUtil
  24. def p2pkhTransactionWithCreditingScriptPubKey: (Transaction, UInt32, ScriptPubKey)

    Returns a valid transaction that spends a p2pkh output at the inputIndex

    Returns a valid transaction that spends a p2pkh output at the inputIndex

    Definition Classes
    TransactionTestUtil
  25. def p2sh2Of3CreditingTransaction: Transaction
    Definition Classes
    TransactionTestUtil
  26. def p2sh2Of3Transaction: Transaction
    Definition Classes
    TransactionTestUtil
  27. def p2sh2Of3TransactionWithSpendingInputAndCreditingOutput: (Transaction, TransactionInput, UInt32, TransactionOutput)

    Returns a p2sh transaction that has 2 of 3 signatures with the creiditing output

    Returns a p2sh transaction that has 2 of 3 signatures with the creiditing output

    Definition Classes
    TransactionTestUtil
  28. def p2shTransactionWithSpendingInputAndCreditingOutput: (Transaction, TransactionInput, UInt32, TransactionOutput)

    Returns a p2sh transaction with its corresponding crediting output

    Returns a p2sh transaction with its corresponding crediting output

    Definition Classes
    TransactionTestUtil
  29. def rawMultiSignatureScriptPubKey: String

    Raw multisignature script pub key output

    Raw multisignature script pub key output

    Definition Classes
    TransactionTestUtil
  30. def rawP2sh2Of3CreditingTransaction: String
    Definition Classes
    TransactionTestUtil
  31. def rawP2sh2Of3Transaction: String
    Definition Classes
    TransactionTestUtil
  32. def rawSignedMultiSignatureTx: String

    First input of this raw tx is a spending a multisignature output the first input is signed for this tx

    First input of this raw tx is a spending a multisignature output the first input is signed for this tx

    Definition Classes
    TransactionTestUtil
  33. val segwitV0: P2WPKHWitnessSPKV0
    Definition Classes
    TransactionTestUtil
  34. def signedMultiSignatureTransaction: (Transaction, Int, ScriptPubKey, Seq[ECPublicKeyBytes])
    Definition Classes
    TransactionTestUtil
  35. def signedMultiSignatureTx: Transaction

    First input of this raw tx is a spending a multisignature output the first input is signed for this tx

    First input of this raw tx is a spending a multisignature output the first input is signed for this tx

    Definition Classes
    TransactionTestUtil
  36. val spendingInfoDb: SegwitV0SpendingInfo
    Definition Classes
    TransactionTestUtil
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. def testTransaction: Transaction

    This transaction has one input which is set to EmptyTransactionInput The purpose of this transaction is a base transaction that can be used to manipulate the scriptSignature to be whatever we need it to be

    This transaction has one input which is set to EmptyTransactionInput The purpose of this transaction is a base transaction that can be used to manipulate the scriptSignature to be whatever we need it to be

    Definition Classes
    TransactionTestUtil
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. def transactionWithNonStrictDerSignature: (Transaction, UInt32)

    Builds a transaction with a non strict der encoded signature

    Builds a transaction with a non strict der encoded signature

    returns

    the transaction and the inputIndex of the non strict der encoded signature

    Definition Classes
    TransactionTestUtil
  41. def transactionWithSpendingInputAndCreditingOutput: (Transaction, TransactionInput, UInt32, TransactionOutput)

    Returns a transaction, the input that is spending the output, and the inputIndex inside of the tx

    Returns a transaction, the input that is spending the output, and the inputIndex inside of the tx

    Definition Classes
    TransactionTestUtil
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from TransactionTestUtil

Inherited from AnyRef

Inherited from Any

Ungrouped