pub mod network;
pub mod node;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub fn identity() -> &'static str {
"soft3"
}
pub fn default_network() -> network::Network {
network::Network::DEFAULT
}
pub fn manifesto() -> &'static [&'static str] {
&[
"one mind โ shared, provable, self-improving",
"many languages โ write, compute, mean",
"open world โ no schema, no gatekeeper",
"engine: cybergraph + bbg on spacepussy-test",
"default network: spacepussy-test (soft3 chaosnet)",
]
}
#[cfg(feature = "stack")]
pub use cyb;
#[cfg(test)]
mod tests {
#[test]
fn default_network_spacepussy_test() {
assert_eq!(super::default_network().chain_id(), "spacepussy-test");
}
}