use std::path::PathBuf;
use url::Url;
pub mod account;
pub mod balance;
pub mod format;
pub mod import;
pub mod list;
pub mod new;
pub mod sign;
pub mod utils;
pub const DEFAULT_CACHE_ACCOUNTS: usize = 1;
pub mod network {
pub const DEFAULT: &str = MAINNET;
pub const TESTNET: &str = "https://testnet.fuel.network/";
pub const TESTNET_FAUCET: &str = "https://faucet-testnet.fuel.network/";
pub const MAINNET: &str = "https://mainnet.fuel.network/";
}
pub mod explorer {
pub const DEFAULT: &str = MAINNET;
pub const TESTNET: &str = "https://app-testnet.fuel.network";
pub const MAINNET: &str = "https://app.fuel.network";
}
pub struct CliContext {
pub wallet_path: PathBuf,
pub node_url: Url,
}