t

org.bitcoins.core.api.wallet

AddressHandlingApi

trait AddressHandlingApi extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AddressHandlingApi
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def dropAddressTag(addressTagDb: AddressTagDb): Future[Int]
  2. abstract def dropAddressTagName(address: BitcoinAddress, addressTagName: AddressTagName): Future[Int]
  3. abstract def dropAddressTagType(address: BitcoinAddress, addressTagType: AddressTagType): Future[Int]
  4. abstract def dropAddressTagType(addressTagType: AddressTagType): Future[Int]
  5. abstract def findOurOutputs(transaction: Transaction): Future[Vector[(TransactionOutput, TransactionOutPoint)]]

    Given a transaction, returns the outputs (with their corresponding outpoints) that pay to this wallet

  6. abstract def getAddressInfo(address: BitcoinAddress): Future[Option[AddressInfo]]
  7. abstract def getAddressTags(address: BitcoinAddress, tagType: AddressTagType): Future[Vector[AddressTagDb]]
  8. abstract def getAddressTags(tagType: AddressTagType): Future[Vector[AddressTagDb]]
  9. abstract def getAddressTags(address: BitcoinAddress): Future[Vector[AddressTagDb]]
  10. abstract def getAddressTags(): Future[Vector[AddressTagDb]]
  11. abstract def getNewAddress(addressType: AddressType, tags: Vector[AddressTag]): Future[BitcoinAddress]
  12. abstract def getNewAddress(addressType: AddressType): Future[BitcoinAddress]
  13. abstract def getNewAddress(tags: Vector[AddressTag]): Future[BitcoinAddress]
  14. abstract def getNewAddress(): Future[BitcoinAddress]
  15. abstract def getNewChangeAddress(): Future[BitcoinAddress]
  16. abstract def getUnusedAddress: Future[BitcoinAddress]

    Gets a external address.

    Gets a external address. Calling this method multiple times will return the same address, until it has received funds.

  17. abstract def isChange(output: TransactionOutput): Future[Boolean]

    Determines if the given output is from this wallet and is a change output from this wallet

  18. abstract def listAddresses(): Future[Vector[AddressDb]]
  19. abstract def listFundedAddresses(): Future[Vector[(AddressDb, CurrencyUnit)]]
  20. abstract def listScriptPubKeys(): Future[Vector[ScriptPubKeyDb]]
  21. abstract def listSpentAddresses(): Future[Vector[AddressDb]]
  22. abstract def listUnusedAddresses(): Future[Vector[AddressDb]]
  23. abstract def tagAddress(address: BitcoinAddress, tag: AddressTag): Future[AddressTagDb]
  24. abstract def watchScriptPubKey(scriptPubKey: ScriptPubKey): Future[ScriptPubKeyDb]

Concrete 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. final def contains(address: BitcoinAddress, accountOpt: Option[(AccountHandlingApi, HDAccount)])(implicit ec: ExecutionContext): Future[Boolean]
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped