psibase 0.23.0

Library and command-line tool for interacting with psibase networks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[crate::service(name = "db", dispatch = false, psibase_mod = "crate")]
#[allow(unused_variables)]
mod service {
    use crate::{DbId, Hex};
    #[action]
    fn open(db: DbId, prefix: Hex<Vec<u8>>, mode: u8) -> u32 {
        unimplemented!()
    }
}

#[test]
fn verify_schema() {
    crate::assert_schema_matches_package::<Wrapper>();
}