Interface WalletInterface

    • Constructor Detail

    • Method Detail

      • applyUnconfirmedTxs

         abstract Unit applyUnconfirmedTxs(List<UnconfirmedTx> unconfirmedTxs)

        Apply relevant unconfirmed transactions to the wallet. Transactions that are not relevant are filtered out.

      • applyUpdate

         abstract Unit applyUpdate(Update update)

        Applies an update to the wallet and stages the changes (but does not persist them).

        Usually you create an update by interacting with some blockchain data source and inserting transactions related to your wallet into it.

        After applying updates you should persist the staged wallet changes. For an example of how to persist staged wallet changes see `Wallet::reveal_next_address`.

      • balance

         abstract Balance balance()

        Return the balance, separated into available, trusted-pending, untrusted-pending and immature values.

      • calculateFee

         abstract Amount calculateFee(Transaction tx)

        Calculates the fee of a given transaction. Returns `Amount::ZERO` if tx is a coinbase transaction.

        To calculate the fee for a `Transaction` with inputs not owned by this wallet you must manually insert the TxOut(s) into the tx graph using the `insert_txout` function.

        Note tx does not have to be in the graph for this to work.

      • calculateFeeRate

         abstract FeeRate calculateFeeRate(Transaction tx)

        Calculate the `FeeRate` for a given transaction.

        To calculate the fee rate for a `Transaction` with inputs not owned by this wallet you must manually insert the TxOut(s) into the tx graph using the `insert_txout` function.

        Note tx does not have to be in the graph for this to work.

      • cancelTx

         abstract Unit cancelTx(Transaction tx)

        Informs the wallet that you no longer intend to broadcast a tx that was built from it.

        This frees up the change address used when creating the tx for use in future transactions.

      • derivationIndex

         abstract UInt derivationIndex(KeychainKind keychain)

        The derivation index of this wallet. It will return None if it has not derived any addresses. Otherwise, it will return the index of the highest address it has derived.

      • derivationOfSpk

         abstract KeychainAndIndex derivationOfSpk(Script spk)

        Finds how the wallet derived the script pubkey spk.

        Will only return Some(_) if the wallet has given out the spk.

      • descriptorChecksum

         abstract String descriptorChecksum(KeychainKind keychain)

        Return the checksum of the public descriptor associated to keychain

        Internally calls `Self::public_descriptor` to fetch the right descriptor

      • finalizePsbt

         abstract Boolean finalizePsbt(Psbt psbt, SignOptions signOptions)

        Finalize a PSBT, i.e., for each input determine if sufficient data is available to pass validation and construct the respective scriptSig or scriptWitness. Please refer to BIP174, and BIP371 for further information.

        Returns true if the PSBT could be finalized, and false otherwise.

        The `SignOptions` can be used to tweak the behavior of the finalizer.

      • getTx

         abstract CanonicalTx getTx(String txid)

        Get a single transaction from the wallet as a `WalletTx` (if the transaction exists).

        WalletTx contains the full transaction alongside meta-data such as:

        • Blocks that the transaction is `Anchor`ed in. These may or may not be blocks that exist in the best chain.

        • The `ChainPosition` of the transaction in the best chain - whether the transaction is confirmed or unconfirmed. If the transaction is confirmed, the anchor which proves the confirmation is provided. If the transaction is unconfirmed, the unix timestamp of when the transaction was last seen in the mempool is provided.

      • getUtxo

         abstract LocalOutput getUtxo(OutPoint op)

        Returns the utxo owned by this wallet corresponding to outpoint if it exists in the wallet's database.

      • isMine

         abstract Boolean isMine(Script script)

        Return whether or not a script is part of this wallet (either internal or external)

      • listOutput

         abstract List<LocalOutput> listOutput()

        List all relevant outputs (includes both spent and unspent, confirmed and unconfirmed).

        To list only unspent outputs (UTXOs), use `Wallet::list_unspent` instead.

      • listUnusedAddresses

         abstract List<AddressInfo> listUnusedAddresses(KeychainKind keychain)

        List addresses that are revealed but unused.

        Note if the returned iterator is empty you can reveal more addresses by using Self::reveal_next_address or Self::reveal_addresses_to.

      • markUsed

         abstract Boolean markUsed(KeychainKind keychain, UInt index)

        Marks an address used of the given keychain at index.

        Returns whether the given index was present and then removed from the unused set.

      • network

         abstract Network network()

        Get the Bitcoin network the wallet is using.

      • nextDerivationIndex

         abstract UInt nextDerivationIndex(KeychainKind keychain)

        The index of the next address that you would get if you were to ask the wallet for a new address

      • nextUnusedAddress

         abstract AddressInfo nextUnusedAddress(KeychainKind keychain)

        Get the next unused address for the given keychain, i.e. the address with the lowest derivation index that hasn't been used in a transaction.

        This will attempt to reveal a new address if all previously revealed addresses have been used, in which case the returned address will be the same as calling `Wallet::reveal_next_address`.

        WARNING: To avoid address reuse you must persist the changes resulting from one or more calls to this method before closing the wallet. See `Wallet::reveal_next_address`.

      • peekAddress

         abstract AddressInfo peekAddress(KeychainKind keychain, UInt index)

        Peek an address of the given keychain at index without revealing it.

        For non-wildcard descriptors this returns the same address at every provided index.

        This panics when the caller requests for an address of derivation index greater than the BIP32 max index.

      • revealAddressesTo

         abstract List<AddressInfo> revealAddressesTo(KeychainKind keychain, UInt index)

        Reveal addresses up to and including the target index and return an iterator of newly revealed addresses.

        If the target index is unreachable, we make a best effort to reveal up to the last possible index. If all addresses up to the given index are already revealed, then no new addresses are returned.

        WARNING: To avoid address reuse you must persist the changes resulting from one or more calls to this method before closing the wallet. See `Wallet::reveal_next_address`.

      • revealNextAddress

         abstract AddressInfo revealNextAddress(KeychainKind keychain)

        Attempt to reveal the next address of the given keychain.

        This will increment the keychain's derivation index. If the keychain's descriptor doesn't contain a wildcard or every address is already revealed up to the maximum derivation index defined in BIP32, then the last revealed address will be returned.

      • sentAndReceived

         abstract SentAndReceivedValues sentAndReceived(Transaction tx)

        Compute the tx's sent and received `Amount`s.

        This method returns a tuple (sent, received). Sent is the sum of the txin amounts that spend from previous txouts tracked by this wallet. Received is the summation of this tx's outputs that send to script pubkeys tracked by this wallet.

      • sign

         abstract Boolean sign(Psbt psbt, SignOptions signOptions)

        Sign a transaction with all the wallet's signers, in the order specified by every signer's `SignerOrdering`. This function returns the Result type with an encapsulated bool that has the value true if the PSBT was finalized, or false otherwise.

        The `SignOptions` can be used to tweak the behavior of the software signers, and the way the transaction is finalized at the end. Note that it can't be guaranteed that every signers will follow the options, but the "software signers" (WIF keys and xprv) defined in this library will.

      • startFullScan

         abstract FullScanRequestBuilder startFullScan()

        Create a `FullScanRequest for this wallet.

        This is the first step when performing a spk-based wallet full scan, the returned `FullScanRequest collects iterators for the wallet's keychain script pub keys needed to start a blockchain full scan with a spk based blockchain client.

        This operation is generally only used when importing or restoring a previously used wallet in which the list of used scripts is not known.

      • startSyncWithRevealedSpks

         abstract SyncRequestBuilder startSyncWithRevealedSpks()

        Create a partial `SyncRequest` for this wallet for all revealed spks.

        This is the first step when performing a spk-based wallet partial sync, the returned `SyncRequest` collects all revealed script pubkeys from the wallet keychain needed to start a blockchain sync with a spk based blockchain client.