near-primitives-core 0.37.3

This crate provides the core set of primitives used by other nearcore crates including near-primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Chain IDs of commonly used environment.

/// Main production environment.
pub const MAINNET: &str = "mainnet";

/// Primary testing environment.
pub const TESTNET: &str = "testnet";

/// Pre-release testing environment.
pub const MOCKNET: &str = "mocknet";

/// Used by ft-benchmark.  http://go/crt-benchmark
pub const BENCHMARKNET: &str = "benchmarknet";

/// Used by congestion control tests in nayduck.
pub const CONGESTION_CONTROL_TEST: &str = "congestion_control_test";