object TransactionSignatureCreator extends TransactionSignatureCreator

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TransactionSignatureCreator
  2. TransactionSignatureCreator
  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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def createSig(component: TxSigComponent, adaptorSign: (ByteVector) => ECAdaptorSignature, hashType: HashType): ECAdaptorSignature
    Definition Classes
    TransactionSignatureCreator
  7. def createSig(spendingTransaction: Transaction, signingInfo: InputSigningInfo[InputInfo], sign: (ByteVector) => Future[ECDigitalSignature], hashType: HashType)(implicit ec: ExecutionContext): Future[ECDigitalSignature]

    This is the same as createSig above, except the 'sign' function returns a Future[ECDigitalSignature]

    This is the same as createSig above, except the 'sign' function returns a Future[ECDigitalSignature]

    Definition Classes
    TransactionSignatureCreator
  8. def createSig(spendingTransaction: Transaction, signingInfo: InputSigningInfo[InputInfo], sign: (ByteVector) => ECDigitalSignature, hashType: HashType): ECDigitalSignature

    This is intended to be a low level hardware wallet API.

    This is intended to be a low level hardware wallet API. At a fundamental level, a hardware wallet expects a scodec.bits.ByteVector as input, and returns an ECDigitalSignature if it is able to sign the scodec.bits.ByteVector's correctly.

    sign

    - the implementation of the hardware wallet protocol to sign the scodec.bits.ByteVector w/ the given public key

    hashType

    - the hash type to be appended on the digital signature when the hardware wallet is done being signed

    returns

    the digital signature returned by the hardware wallet

    Definition Classes
    TransactionSignatureCreator
  9. def createSig(spendingTransaction: Transaction, signingInfo: InputSigningInfo[InputInfo], privateKey: ECPrivateKey, hashType: HashType): ECDigitalSignature

    Creates a signature from a tx signature component

    Creates a signature from a tx signature component

    privateKey

    the private key which we are signing the hash with

    hashType

    the procedure to use for hashing to transaction

    Definition Classes
    TransactionSignatureCreator
  10. def createSig(component: TxSigComponent, sign: (ByteVector) => ECDigitalSignature, hashType: HashType): ECDigitalSignature

    This is intended to be a low level hardware wallet API.

    This is intended to be a low level hardware wallet API. At a fundamental level, a hardware wallet expects a scodec.bits.ByteVector as input, and returns an ECDigitalSignature if it is able to sign the scodec.bits.ByteVector's correctly.

    component

    - the information needed to sign the transaction

    sign

    - the implementation of the hardware wallet protocol to sign the scodec.bits.ByteVector w/ the given public key

    hashType

    - the hash type to be appended on the digital signature when the hardware wallet is done being signed

    returns

    the digital signature returned by the hardware wallet

    Definition Classes
    TransactionSignatureCreator
  11. def createSig(txSignatureComponent: TxSigComponent, privateKey: ECPrivateKey, hashType: HashType): ECDigitalSignature

    Creates a signature from a tx signature component

    Creates a signature from a tx signature component

    txSignatureComponent

    contains the tx, inputIndex which specify which input we are creating a sig for

    privateKey

    the private key which we are signing the hash with

    hashType

    the procedure to use for hashing to transaction

    Definition Classes
    TransactionSignatureCreator
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def createSig(component: TxSigComponent, sign: (ByteVector) => Future[ECDigitalSignature], hashType: HashType)(implicit ec: ExecutionContext): Future[ECDigitalSignature]

    This is the same as createSig above, except the 'sign' function returns a Future[ECDigitalSignature]

    This is the same as createSig above, except the 'sign' function returns a Future[ECDigitalSignature]

    Definition Classes
    TransactionSignatureCreator
    Annotations
    @deprecated
    Deprecated

    (Since version 6/23/2020) use an InputSigningInfo[InputInfo] instead

Inherited from AnyRef

Inherited from Any

Ungrouped