snarkvm_debug/cli/commands/
mod.rs1pub mod build;
16pub use build::*;
17
18pub mod clean;
19pub use clean::*;
20
21pub mod execute;
22pub use execute::*;
23
24pub mod new;
25pub use new::*;
26
27pub mod run;
28pub use run::*;
29
30pub mod update;
31pub use update::*;
32
33use crate::{
34 console::program::{Identifier, Locator, ProgramID, Value},
35 ledger::block::Transaction,
36 package::Package,
37};
38
39use anyhow::Result;
40use clap::Parser;
41use colored::Colorize;
42use core::str::FromStr;
43use std::collections::HashMap;
44
45pub const LOCALE: &num_format::Locale = &num_format::Locale::en;
46
47pub(crate) type CurrentNetwork = crate::prelude::Testnet3;
48pub(crate) type Aleo = crate::circuit::AleoV0;