disaronno 0.1.5

Disaronno is a blockchain framework designed to support the Scattered-Systems Ecosystem
Documentation
use crate::networking::peers::Peer;

pub trait Node {
    fn new() -> Self;
    fn setup() -> Self;
    fn scaffold_chain() -> String;
}

pub struct Interface {
    pub peer: Peer,
}

impl Node for Interface {
    fn new() -> Self {
        todo!()
    }

    fn setup() -> Self {
        todo!()
    }

    fn scaffold_chain() -> String {
        todo!()
    }
}