miden-ntx-builder 0.15.0

Miden network transaction builder
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;
mod commands;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let command = commands::NtxBuilderCommand::parse();

    let _otel_guard = miden_node_utils::logging::setup_tracing(command.open_telemetry())?;

    command.handle().await
}