brk_server 0.3.5

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

#[derive(Deserialize, JsonSchema)]
pub struct AddrHashPrefixParam {
    pub addr_type: OutputType,
    pub prefix: String,
}