aether-sdk 0.1.1

Aether is a next generation EVM Native Multi-Chain engineered for optimal preformance and the highest security
Documentation
/*
   Appellation: aether <binary>
   Creator: FL03 <jo3mccain@icloud.com>
   Description:
       ... Summary ...
*/
pub use crate::{app::*, core::*, data::*};

mod app;
mod core;
mod data;

pub(crate) type AsyncError = Box<dyn std::error::Error + Send + Sync + 'static>;

#[tokio::main]
async fn main() -> Result<(), AsyncError> {
    let mut interface = Interface::new();
    println!("{}", &interface);
    interface.run().await;
    Ok(())
}