bark-rest-client 0.1.4

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.
1
2
3
4
5
6
7
8
9
10
11
12
13
# OffboardFees

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**base_fee_sat** | **i64** | A fee applied to every transaction regardless of value. | 
**fixed_additional_vb** | **i64** | Fixed number of virtual bytes charged offboard on top of the output size  The fee for an offboard will be this value, plus the offboard output virtual size, multiplied with the offboard fee rate, plus the `base_fee`, and plus the additional fee calculated with the `ppm_expiry_table`. | 
**ppm_expiry_table** | [**Vec<models::PpmExpiryFeeEntry>**]PpmExpiryFeeEntry.md | A table mapping how soon a VTXO will expire to a PPM (parts per million) fee rate. The table should be sorted by each `expiry_blocks_threshold` value in ascending order. | 

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