bark-rest-client 0.2.5

A simple REST API for barkd, a wallet daemon for integrating bitcoin payments into your app over HTTP. Supports self-custodial Lightning, Ark, and on-chain out of the box. barkd is a long-running daemon best suited for always-on or high-connectivity environments like nodes, servers, desktops, and point-of-sale terminals. All endpoints return JSON. Amounts are denominated in satoshis.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# WalletTxInfo

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**balance_change_sat** | **i64** | Net change to the wallet's balance: `received - sent` over wallet-owned outputs. Positive for inbound, negative for outbound, zero for self-spends with no net change. | 
**confirmation** | Option<[**models::BlockRef**]BlockRef.md> | `Some` when the transaction is mined; `None` while still in the mempool. | [optional]
**is_cpfp** | **bool** | `true` when this tx spends a P2A fee anchor output — i.e. it is a CPFP child bumping its parent. In bark this typically means the wallet is fee-bumping an exit transaction. | 
**onchain_fee_sat** | Option<**i64**> | Total fee paid by the transaction, when known. `None` for txs whose foreign prevouts BDK has not indexed (e.g. inbound payments observed via the bitcoind-rpc sync path; esplora sync always populates prevouts). | [optional]
**tx** | **String** |  | 
**txid** | **String** |  | 

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)