blacklistrc 0.0.1

BRC: Blacklist Request for Comment
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub struct BRCChannel {
    pub channel_id: String,
    pub participants: Vec<String>,
    pub balance_msat: u64,
    pub state: ChannelState,
}

pub enum ChannelState {
    Open,
    Closed,
    Pending,
}