v0.1.0-pre.019

This commit is contained in:
2026-07-24 20:14:28 +02:00
parent f965fcc58a
commit fa2d9d8ecd
10 changed files with 703 additions and 142 deletions

View File

@@ -571,6 +571,10 @@ pub use self::executor::EX_SPL_ATA_CREATE_OPERATION;
pub use self::executor::EX_SPL_ATA_RECOVER_NESTED_OPERATION;
/// Exposes every supported ATA operation code.
pub use self::executor::EX_SPL_ATA_SUPPORTED_OPERATION_CODES;
/// Exposes the SPL ElGamal registry creation operation code.
pub use self::executor::EX_SPL_ELGAMAL_REGISTRY_CREATE_OPERATION;
/// Exposes the SPL ElGamal registry update operation code.
pub use self::executor::EX_SPL_ELGAMAL_REGISTRY_UPDATE_OPERATION;
/// Exposes the stable SPL Memo add-memo operation code.
pub use self::executor::EX_SPL_MEMO_ADD_MEMO_OPERATION;
/// Exposes the SPL Memo payload bound.
@@ -1023,8 +1027,14 @@ pub use self::executor::ExSplAssociatedTokenAccountExecutor;
pub use self::executor::ExSplAssociatedTokenAccountOperation;
/// Exposes the exact Token Program used by ATA derivation.
pub use self::executor::ExSplAssociatedTokenProgram;
/// Exposes the reserved `ExSplElgamalRegistryExecutor` implementation.
/// Exposes the typed SPL ElGamal registry execution intent.
pub use self::executor::ExSplElgamalRegistryExecutionIntent;
/// Exposes the typed SPL ElGamal registry executor.
pub use self::executor::ExSplElgamalRegistryExecutor;
/// Exposes one exact SPL ElGamal registry operation.
pub use self::executor::ExSplElgamalRegistryOperation;
/// Exposes the SPL ElGamal registry proof-location contract.
pub use self::executor::ExSplElgamalRegistryProofLocation;
/// Exposes the typed SPL Memo execution intent.
pub use self::executor::ExSplMemoExecutionIntent;
/// Exposes the SPL Memo executor.
@@ -1688,6 +1698,8 @@ pub(crate) use self::decoder::decoder_spl_token2022_payload_tag;
pub(crate) use self::executor::EX_SOLANA_CORE_TRACING_TARGET;
/// Canonical SPL Memo tracing target.
pub(crate) use self::executor::EX_SPL_ATA_TRACING_TARGET;
/// Canonical tracing target for the SPL ElGamal registry executor.
pub(crate) use self::executor::EX_SPL_ELGAMAL_REGISTRY_TRACING_TARGET;
/// Canonical SPL Memo tracing target.
pub(crate) use self::executor::EX_SPL_MEMO_TRACING_TARGET;
/// Maximum ordered multisig signer occurrences for SPL Token-2022.
@@ -1736,6 +1748,8 @@ pub(crate) use self::executor::executor_solana_core_vote_build_prepared_plan;
pub(crate) use self::executor::executor_solana_core_zk_elgamal_build_prepared_plan;
/// Internal SPL Memo plan builder.
pub(crate) use self::executor::executor_spl_ata_build_prepared_plan;
/// Internal SPL ElGamal registry plan builder.
pub(crate) use self::executor::executor_spl_elgamal_registry_build_prepared_plan;
/// Internal SPL Memo plan builder.
pub(crate) use self::executor::executor_spl_memo_build_prepared_plan;
/// Internal SPL Token-2022 prepared-plan builder.