psibase 0.23.0

Library and command-line tool for interacting with psibase networks
Documentation
#[crate::service(name = "events", dispatch = false, psibase_mod = "crate")]
#[allow(non_snake_case, unused_variables)]
mod service {
    use crate::{AccountNumber, DbId, MethodNumber};

    #[action]
    fn addIndex(db_id: DbId, service: AccountNumber, event: MethodNumber, column: u8) {
        unimplemented!()
    }

    #[action]
    fn sync() {
        unimplemented!()
    }
}

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