1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;

/// The default network used in the case that none is specified.
pub mod network {
    pub const DEFAULT: &str = BETA_5;
    pub const BETA_2: &str = "https://node-beta-2.fuel.network";
    pub const BETA_2_FAUCET: &str = "https://faucet-beta-2.fuel.network";
    pub const BETA_3: &str = "https://beta-3.fuel.network/";
    pub const BETA_3_FAUCET: &str = "https://faucet-beta-3.fuel.network/";
    pub const BETA_4: &str = "https://beta-4.fuel.network/";
    pub const BETA_4_FAUCET: &str = "https://faucet-beta-4.fuel.network/";
    pub const BETA_5: &str = "https://beta-5.fuel.network/";
    pub const BETA_5_FAUCET: &str = "https://faucet-beta-5.fuel.network/";
}

/// Contains definitions of URLs to the block explorer for each network.
pub mod explorer {
    pub const DEFAULT: &str = BETA_5;
    pub const BETA_2: &str = "https://fuellabs.github.io/block-explorer-v2/beta-2";
    pub const BETA_3: &str = "https://fuellabs.github.io/block-explorer-v2/beta-3";
    pub const BETA_4: &str = "https://fuellabs.github.io/block-explorer-v2/beta-4";
    pub const BETA_5: &str = "https://fuellabs.github.io/block-explorer-v2/beta-5";
}