brk_server 0.11.0

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

#[derive(Deserialize, JsonSchema)]
pub struct AddrHashPrefixParam {
    pub addr_type: OutputType,
    /// First 1–16 hexadecimal nibbles of the RapidHash v3 hash over the raw
    /// address payload bytes.
    pub prefix: String,
}