electrs_client 0.2.9

A client for electrs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::Deserialize;

use crate::InscriptionCacheType;

#[derive(Deserialize, Debug, Clone)]
pub struct Config {
    pub url: String,
    pub user: String,
    pub password: String,
    pub reorgs_path: Option<String>,
    pub limit: Option<u32>,
    pub source_type: InscriptionCacheType,
}