Packages

trait TransactionTestUtil extends AnyRef

Created by chris on 2/12/16.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TransactionTestUtil
  2. AnyRef
  3. 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
  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

  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

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

    Builds a dummy transaction that sends money to the given output

  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
  12. def dummyTx(prevTxId: DoubleSha256Digest = DoubleSha256Digest.empty, scriptSig: ScriptSignature = EmptyScriptSignature, spk: ScriptPubKey = EmptyScriptPubKey): Transaction
  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
  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
  24. def p2pkhTransactionWithCreditingScriptPubKey: (Transaction, UInt32, ScriptPubKey)

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

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

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

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

    Returns a p2sh transaction with its corresponding crediting output

  29. def rawMultiSignatureScriptPubKey: String

    Raw multisignature script pub key output

  30. def rawP2sh2Of3CreditingTransaction: String
  31. def rawP2sh2Of3Transaction: String
  32. def rawSignedMultiSignatureTx: String

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

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

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

  36. val spendingInfoDb: SegwitV0SpendingInfo
  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

  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

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

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

  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 AnyRef

Inherited from Any

Ungrouped