12 lines
533 B
Rust
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";
|