This commit is contained in:
2026-07-23 16:37:12 +02:00
parent 99c345f2f2
commit 0da75c1311
2159 changed files with 230833 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
// 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";