pub const EXECUTION_COST_UNIT_LOAN: u32 = 4_000_000;
pub const EXECUTION_COST_UNIT_LIMIT: u32 = 100_000_000;
pub const FINALIZATION_COST_UNIT_LIMIT: u32 = 50_000_000;
pub const PREVIEW_CREDIT_IN_XRD: &str = "1000000";
pub const MAX_EXECUTION_TRACE_DEPTH: usize = 16;
pub const MAX_CALL_DEPTH: usize = 8;
pub const MAX_HEAP_SUBSTATE_TOTAL_BYTES: usize = 64 * 1024 * 1024;
pub const MAX_TRACK_SUBSTATE_TOTAL_BYTES: usize = 64 * 1024 * 1024;
pub const MAX_SUBSTATE_KEY_SIZE: usize = 1024;
#[cfg(not(feature = "coverage"))]
pub const MAX_SUBSTATE_VALUE_SIZE: usize = 2 * 1024 * 1024;
#[cfg(feature = "coverage")]
pub const MAX_SUBSTATE_VALUE_SIZE: usize = 64 * 1024 * 1024;
#[cfg(not(feature = "coverage"))]
pub const MAX_INVOKE_PAYLOAD_SIZE: usize = 1024 * 1024;
#[cfg(feature = "coverage")]
pub const MAX_INVOKE_PAYLOAD_SIZE: usize = 32 * 1024 * 1024;
pub const TIPS_PROPOSER_SHARE_PERCENTAGE: u8 = 100;
pub const TIPS_VALIDATOR_SET_SHARE_PERCENTAGE: u8 = 0;
pub const NETWORK_FEES_PROPOSER_SHARE_PERCENTAGE: u8 = 25;
pub const NETWORK_FEES_VALIDATOR_SET_SHARE_PERCENTAGE: u8 = 25;
pub const MAX_EVENT_SIZE: usize = 32 * 1024;
pub const MAX_LOG_SIZE: usize = 32 * 1024;
pub const MAX_PANIC_MESSAGE_SIZE: usize = 32 * 1024;
pub const MAX_NUMBER_OF_EVENTS: usize = 256;
pub const MAX_NUMBER_OF_LOGS: usize = 256;
pub const MAX_METADATA_KEY_STRING_LEN: usize = 100;
pub const MAX_METADATA_VALUE_SBOR_LEN: usize = 4096;
pub const MAX_URL_LENGTH: usize = 1024;
pub const MAX_ORIGIN_LENGTH: usize = 1024;
pub const MAX_ACCESS_RULE_DEPTH: usize = 8;
pub const MAX_COMPOSITE_REQUIREMENTS: usize = 64;
pub const MAX_ROLES: usize = 50;
pub const MAX_ROLE_NAME_LEN: usize = 100;
pub const MAX_FEATURE_NAME_LEN: usize = 100;
pub const MAX_EVENT_NAME_LEN: usize = 100;
pub const MAX_TYPE_NAME_LEN: usize = 100;
pub const MAX_BLUEPRINT_NAME_LEN: usize = 100;
pub const MAX_FUNCTION_NAME_LEN: usize = 256;
pub const MAX_NUMBER_OF_BLUEPRINT_FIELDS: usize = 0xFF;
pub const EXECUTION_COST_UNIT_PRICE_IN_XRD: &str = "0.00000005";
pub const FINALIZATION_COST_UNIT_PRICE_IN_XRD: &str = "0.00000005";
pub const STATE_STORAGE_PRICE_IN_XRD: &str = "0.00009536743";
pub const ARCHIVE_STORAGE_PRICE_IN_XRD: &str = "0.00009536743";
pub const USD_PRICE_IN_XRD: &str = "16.666666666666666666";
pub const MAX_PER_FUNCTION_ROYALTY_IN_XRD: &str = "166.666666666666666666";