v0.1.0-pre.037

This commit is contained in:
2026-07-25 13:11:14 +02:00
parent 1137655a3f
commit 5b4a0ae0c5
6 changed files with 1448 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
## 0.1.0-pre.031
## 0.1.0-pre.036
## 0.1.0-pre.037
- Migration de la préparation stateful des opérations Solana natives dans `kb-pipeline`.

View File

@@ -107,6 +107,6 @@ La tranche `0.1.0-pre.031` ajoute lorchestration HTTP de backfill : signature
La migration de `kb-pipeline` couvre désormais le backfill, l'extraction core, le replay de décodage, la validation Token-2022 et les lectures stateful/préflight Token-2022 et ElGamal Registry.
### Migration `0.1.0-pre.036`
### Migration `0.1.0-pre.037`
`kb-pipeline` inclut désormais les contrôles stateful bornés des opérations Solana natives.

View File

@@ -307,4 +307,4 @@
- [ ] Orchestration des preuves et de l'exécution Token-2022.
- [x] `0.1.0-pre.036` — contrôles stateful Solana natifs migrés dans `kb-pipeline`.
- [x] `0.1.0-pre.037` — contrôles stateful Solana natifs migrés dans `kb-pipeline`.

View File

@@ -1,5 +1,5 @@
# file: kb-pipeline/Cargo.toml
# version: 10
# version: 11
[package]
name = "kb-pipeline"
@@ -14,6 +14,7 @@ bs58.workspace = true
chrono.workspace = true
futures-util.workspace = true
kb-core = { path = "../kb-core" }
kb-config = { path = "../kb-config" }
kb-lib = { path = "../kb-lib" }
kb-onchain-transport = { path = "../kb-onchain-transport" }
kb-program-ids = { path = "../kb-program-ids" }

View File

@@ -1,5 +1,5 @@
// file: kb-pipeline/src/lib.rs
// version: 10
// version: 11
#![forbid(unsafe_code)]
#![deny(unreachable_pub)]
@@ -13,6 +13,7 @@ mod core_extraction;
mod decode_replay;
mod plan;
mod solana_elgamal_registry_stateful;
mod solana_execution;
mod solana_stateful;
mod solana_token2022_correlation;
mod solana_token2022_crypto_preflight;
@@ -105,6 +106,20 @@ pub use self::solana_elgamal_registry_stateful::materialize_elgamal_registry_acc
pub use self::solana_elgamal_registry_stateful::materialize_elgamal_registry_stateful_snapshot;
/// Migrated read_elgamal_registry_stateful_snapshot contract.
pub use self::solana_elgamal_registry_stateful::read_elgamal_registry_stateful_snapshot;
/// Complete request for one bounded System Program transfer on Devnet.
pub use self::solana_execution::DevnetSystemTransferRequest;
/// Summary returned by one bounded System Program transfer execution.
pub use self::solana_execution::DevnetSystemTransferSummary;
/// No-op observer suitable for CLI tools and opt-in integration tests.
pub use self::solana_execution::NoopSolanaExecutionObserver;
/// Observer notified during Solana execution orchestration.
pub use self::solana_execution::SolanaExecutionObserver;
/// Progress event emitted by Solana execution orchestration.
pub use self::solana_execution::SolanaExecutionProgressEvent;
/// Severity of one Solana execution progress event.
pub use self::solana_execution::SolanaExecutionProgressLevel;
/// Executes one bounded System Program transfer on Devnet.
pub use self::solana_execution::execute_devnet_system_transfer;
/// One machine-readable native Solana stateful readiness check.
pub use self::solana_stateful::SolanaCoreStatefulCheck;
/// One contextual fact measured during native Solana stateful readiness.

File diff suppressed because it is too large Load Diff