//! Validation configuration and cost constants.
use Cost;
/// Maximum CLVM cost per spend (matches Chia L1).
pub const L1_MAX_COST_PER_SPEND: Cost = 11_000_000_000;
/// Maximum CLVM cost per block (DIG L2: 50x L1 per-spend).
pub const L2_MAX_COST_PER_BLOCK: Cost = 550_000_000_000;
/// L2-specific validation parameters.