brk_types 0.2.2

Structs used throughout BRK
Documentation
1
2
3
4
5
6
7
8
9
10
use schemars::JsonSchema;
use serde::Deserialize;

use crate::Addr;

#[derive(Deserialize, JsonSchema)]
pub struct AddrParam {
    #[serde(rename = "address")]
    pub addr: Addr,
}