charms 13.0.0

Programmable assets on Bitcoin and beyond
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[tokio::main]
async fn main() -> anyhow::Result<()> {
    unsafe {
        // We don't want to be in mock mode accidentally.
        std::env::remove_var("MOCK");
    }
    charms::cli::run().await.map_err(|e| {
        tracing::error!("Error: {}", e);
        e
    })
}