Files
khadhroony-bot3/migration/khadhroony-bot2-reference/kb_execution_solana/src/constants.rs
2026-07-23 16:37:12 +02:00

12 lines
533 B
Rust

// file: kb_execution_solana/src/constants.rs
// version: 5
//! Local constants for the `kb_execution_solana` crate.
/// Maximum over-the-wire size of a Solana transaction packet.
pub(crate) const MAX_TRANSACTION_WIRE_BYTES: usize = 1_232;
/// Stable operation code for the nonce advance injected by durable transaction assembly.
pub(crate) const DURABLE_NONCE_ADVANCE_OPERATION: &str = "solana_core.system.nonce.advance";
/// Canonical tracing target for this crate.
pub(crate) const TRACING_TARGET: &str = "kb_execution_solana";