brk_server 0.3.0-beta.1

A server with an API for anything from BRK
Documentation
1
2
3
4
5
6
7
8
9
10
use schemars::JsonSchema;
use serde::Deserialize;

use brk_types::Txid;

#[derive(Debug, Default, Deserialize, JsonSchema)]
pub struct AddrTxidsParam {
    /// Txid to paginate from (return transactions before this one)
    pub after_txid: Option<Txid>,
}