near_sandbox/lib.rs
1pub mod config;
2pub mod error_kind;
3pub mod sandbox;
4
5mod runner;
6
7// Re-export important types for better user experience
8pub use config::{GenesisAccount, SandboxConfig};
9pub use runner::install;
10pub use sandbox::patch::FetchData;
11pub use sandbox::Sandbox;
12
13#[cfg(feature = "generate")]
14pub use config::{random_account_id, random_key_pair};
15
16// The current version of the sandbox node we want to point to.
17// Should be updated to the latest release of nearcore.
18// Currently pointing to nearcore@v2.10.4 released on January 13, 2026
19pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "2.10.4";