v0.1.0-pre.018

This commit is contained in:
2026-07-24 19:34:54 +02:00
parent 3e1d034633
commit f965fcc58a
14 changed files with 8604 additions and 123 deletions

View File

@@ -0,0 +1,13 @@
// file: kb-lib/src/executor/spl/token2022/constants.rs
// version: 5
//! Local constants for the `kb_executor_spl_token_2022` crate. Program identifiers live in `kb_program_ids`.
/// Maximum number of ordered multisig signer occurrences.
pub(crate) const EX_SPL_TOKEN2022_MAX_MULTISIG_SIGNERS: usize = 11;
/// Maximum UI amount string length accepted before transaction assembly.
pub(crate) const EX_SPL_TOKEN2022_MAX_UI_AMOUNT_BYTES: usize = 255;
/// Maximum ordered token accounts accepted by transfer-fee harvest or withdraw builders.
pub(crate) const EX_SPL_TOKEN2022_MAX_TRANSFER_FEE_SOURCE_ACCOUNTS: usize = 255;
/// Canonical tracing target for this crate.
pub(crate) const EX_SPL_TOKEN2022_TRACING_TARGET: &str = "kb-lib.executor.spl.token2022";