1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pub mod account;
pub mod import;
pub mod new;
pub mod sign;
pub mod utils;

/// The default network used in the case that none is specified.
pub mod network {
    pub const DEFAULT: &str = BETA_3;
    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/";
}

/// Contains definitions of URLs to the block explorer for each network.
pub mod explorer {
    pub const DEFAULT: &str = BETA_3;
    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";
}